/* ─── Press Release Styles ─── */

.press-release {
    max-width: 720px;
    margin: 0 auto;
    padding: 160px 24px 80px;
}

.press-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.press-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(26, 26, 26, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.press-header time {
    font-size: 0.85rem;
    color: var(--text-light);
}

.press-release h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
    color: var(--text);
}

.press-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.press-body .lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 28px;
}

.press-body p {
    margin-bottom: 24px;
}

.press-body h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin-top: 48px;
    margin-bottom: 20px;
}

.press-body strong {
    color: var(--text);
    font-weight: 600;
}

.press-body em {
    font-style: italic;
}

.press-body a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.press-body a:hover {
    opacity: 0.7;
}

.press-contact {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.press-contact p {
    margin-bottom: 4px;
}

.back-link {
    display: inline-block;
    margin-top: 48px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text);
}

/* ─── Mobile ─── */
@media (max-width: 600px) {
    .press-release {
        padding: 120px 20px 60px;
    }

    .press-release h1 {
        font-size: 1.8rem;
    }

    .press-body {
        font-size: 1rem;
    }
}
