/* =============================================================================
   About page — reading layout, press shorthand, off-platform list
   ============================================================================= */

.about-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
}

/* ---- Page title ---- */

.about-h1 {
    font-size: 3rem;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

/* ---- Intro block (two paragraphs before the sections) ---- */

.about-intro {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--light-orange);
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 1.25em;
    color: var(--text-dark);
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* ---- Sections ---- */

.about-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--light-orange);
}

section.about-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-section h2 {
    font-size: 1.85rem;
    color: var(--dark-orange);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.25em;
    color: var(--text-dark);
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.15s;
}

.about-section a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

/* ---- Flock list ---- */

.about-flock-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.about-flock-list li {
    font-size: 1.05rem;
    line-height: 1.65;
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-orange);
}

.about-flock-list li:last-child {
    border-bottom: none;
}

.about-flock-list li::before {
    content: '🐔';
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    top: 0.5rem;
    line-height: 1;
}

/* ---- Press shorthand box ---- */

.press-shorthand {
    background: var(--bg-color);
    border: 2px solid var(--light-orange);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1.75rem;
    align-items: baseline;
}

.press-shorthand dt {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    white-space: nowrap;
}

.press-shorthand dd {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

.press-shorthand dd a {
    color: var(--primary-orange);
    text-decoration: none;
}

.press-shorthand dd a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

/* ---- Off-platform list ---- */

.about-offplatform {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-offplatform li {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.platform-label {
    font-weight: 700;
    display: inline-block;
    min-width: 130px;
    color: var(--text-dark);
}

.platform-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.about-offplatform a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.15s;
}

.about-offplatform a:hover {
    color: var(--dark-orange);
    text-decoration: underline;
}

/* ---- Closing CTAs ---- */

.about-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2.5rem;
    border-top: 2px solid var(--light-orange);
    margin-top: 3rem;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
    .about-wrap {
        padding: 2rem 0 3rem;
    }

    .about-h1 {
        font-size: 2.25rem;
    }

    .about-section h2 {
        font-size: 1.6rem;
    }

    .press-shorthand {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1.25rem 1.5rem;
    }

    .press-shorthand dt {
        margin-top: 0.85rem;
    }

    .press-shorthand dt:first-child {
        margin-top: 0;
    }

    .platform-label {
        min-width: 0;
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-muted);
        margin-bottom: 0.1rem;
    }
}
