/* Пресс-кит — в концепции about/careers */

.press-container {
    padding-bottom: var(--space-2xl, 3rem);
}

.press-hero .about-subtitle {
    max-width: 720px;
}

.press-section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl, 2rem);
    color: var(--text-secondary, #64748b);
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* Медиаматериалы */
.press-media {
    padding: var(--space-6xl, 4rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: var(--space-2xl, 2rem) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light, #e2e8f0);
}

.press-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.press-media-card {
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.press-media-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.press-media-preview {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.press-media-preview img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.press-media-preview-dark {
    background: #1e293b;
}

.press-media-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary, #0f172a);
    margin: 0 0 0.5rem 0;
}

.press-media-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary, #475569);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.press-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Ключевые факты */
.press-facts {
    padding: var(--space-2xl, 2rem) 0;
}

.press-facts-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 640px;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.press-facts-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9375rem;
    color: var(--text-primary, #0f172a);
    line-height: 1.5;
}

.press-facts-list li:last-child {
    border-bottom: none;
}

.press-facts-list strong {
    display: inline-block;
    min-width: 180px;
    color: var(--text-secondary, #64748b);
    font-weight: 600;
}

/* Контакт */
.press-contact {
    padding: var(--space-6xl, 4rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: var(--space-2xl, 2rem) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light, #e2e8f0);
}

.press-contact-box {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.press-contact-box p {
    margin: 0.75rem 0;
    font-size: 1.0625rem;
}

.press-contact-box p:first-child {
    margin-top: 0;
}

.press-contact-box i {
    margin-right: 0.5rem;
    color: var(--primary, #2563eb);
    width: 1.25rem;
    text-align: center;
}

.press-contact-box a {
    color: var(--primary, #2563eb);
    text-decoration: none;
    font-weight: 600;
}

.press-contact-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .press-facts-list strong {
        min-width: auto;
        display: block;
        margin-bottom: 0.25rem;
    }
    .press-media-grid {
        grid-template-columns: 1fr;
    }
}
