/* ============================================================
   THE OLYMPIC HERALD — News Tips page
   (extends donate.css; only tips-specific rules here)
   ============================================================ */

.tips-hero {
    margin-top: 34px;
    padding-bottom: 26px;
    border-bottom: 4px solid var(--oh-red);
    text-align: center;
}

.tips-hero .post-breadcrumbs {
    justify-content: center;
    margin-bottom: 16px;
}

/* ---------- Safety banner ---------- */
.tips-safety {
    margin-top: 30px;
}

.tips-safety-inner {
    border-left: 5px solid var(--oh-red);
    background: rgba(246, 7, 7, 0.05);
    padding: 20px 24px;
}

.tips-safety-label {
    display: block;
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 13px;
    color: var(--oh-red);
    margin-bottom: 8px;
}

.tips-safety-text {
    font-family: var(--font1);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    opacity: 0.9;
}

/* ---------- Two lanes ---------- */
.tips-lanes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-top: 40px;
    align-items: start;
}

.tips-lane {
    border: 1px solid var(--text-color);
    border-top: 4px solid var(--oh-red);
    padding: 28px;
    height: 100%;
}

.tips-lane-head {
    margin-bottom: 22px;
}

.tips-lane-tag {
    display: inline-block;
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    padding: 4px 12px;
    margin-bottom: 12px;
}

.tips-lane-tag-basic {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.07);
}

.tips-lane-tag-secure {
    color: #FFFFFF;
    background: var(--oh-red);
}

.tips-lane-title {
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    font-size: 24px;
    line-height: 1.1;
    margin: 0 0 8px;
}

.tips-lane-sub {
    font-family: var(--font1);
    font-size: 14.5px;
    line-height: 1.5;
    opacity: 0.78;
    margin: 0;
}

/* ---------- Quick tip form ---------- */
.tips-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.tips-form input[type="text"],
.tips-form input[type="email"],
.tips-form-select,
.tips-form textarea {
    width: 100%;
    font-family: var(--font1);
    font-size: 15px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.28);
    background: var(--background-color);
    color: var(--text-color);
}

.tips-form-select {
    margin-bottom: 12px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.tips-form textarea {
    margin-bottom: 14px;
    resize: vertical;
    min-height: 130px;
}

.tips-form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font1);
    font-size: 13.5px;
    line-height: 1.4;
    opacity: 0.85;
    margin-bottom: 18px;
    cursor: pointer;
}

.tips-form-check input {
    margin-top: 2px;
    accent-color: var(--oh-red);
}

.tips-form-btn {
    width: 100%;
}

/* ---------- Secure channels ---------- */
.tips-channels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tips-channel {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    padding-top: 18px;
}

.tips-channel:first-child {
    border-top: none;
    padding-top: 0;
}

.tips-channel-title {
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: 17px;
    margin: 0 0 6px;
}

.tips-channel-text {
    font-family: var(--font1);
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0 0 12px;
}

.tips-channel-value {
    display: inline-block;
    font-family: var(--font3);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 14px;
    word-break: break-word;
}

.tips-channel-address {
    font-family: var(--font1);
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.05);
    padding: 10px 14px;
    display: inline-block;
}

/* ---------- Guidance ---------- */
.tips-guidance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    margin-top: 20px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    position: relative;
    font-family: var(--font1);
    font-size: 15px;
    line-height: 1.5;
    padding-left: 22px;
    margin-bottom: 12px;
    opacity: 0.88;
}

.tips-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background-color: var(--oh-red);
    border-radius: 50%;
}

/* ---------- Responsive ---------- */
@media (max-width: 861px) {
    .tips-lanes,
    .tips-guidance {
        grid-template-columns: 1fr;
    }

    .tips-guidance {
        gap: 10px;
    }
}

@media (max-width: 479px) {
    .tips-form-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- Form UX additions ---------- */
.tips-gotcha {
    display: none !important;
}

.tips-form-error {
    margin: 12px 0 0;
    font-family: var(--font1);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--oh-red-link);
    font-weight: 600;
}

.tips-form-privacy {
    margin: 14px 0 0;
    font-family: var(--font1);
    font-size: 12.5px;
    line-height: 1.5;
    opacity: 0.65;
}

.tips-form-btn[disabled] {
    opacity: 0.65;
    cursor: default;
}

.tips-form-success {
    border-left: 5px solid var(--oh-red);
    background: rgba(246, 7, 7, 0.05);
    padding: 20px 24px;
}

.tips-form-success-heading {
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 19px;
    margin: 0 0 8px;
}

.tips-form-success-text {
    font-family: var(--font1);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
    opacity: 0.85;
}

/* ---------- Copy buttons on channel values ---------- */
.tips-channel-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    flex-wrap: wrap;
}

.tips-copy-btn {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    font-family: var(--font3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
    padding: 0 14px;
    cursor: pointer;
    transition: border-color 0.15s var(--ease-transition), color 0.15s var(--ease-transition);
}

.tips-copy-btn:hover {
    border-color: var(--oh-red);
    color: var(--oh-red);
}
