.press-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(140deg, #0d1e2e 0%, #1a2a3a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 80px 56px 56px;
}

.press-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 60% at 78% 35%, rgba(24,95,165,0.3) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(15,110,86,0.15) 0%, transparent 60%);
}

.press-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.press-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.press-hero-content h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin: 16px 0 14px;
}

.press-hero-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 28px;
}

.press-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.press-hero-btns .btn-primary,
.press-hero-btns .btn-outline {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.press-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg2);
    border-bottom: 0.5px solid var(--border);
}

.press-stat {
    text-align: center;
    padding: 28px 16px;
    border-right: 0.5px solid var(--border);
}

.press-stat:last-child { border-right: none; }

.press-stat-num {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}

.press-stat-label {
    font-size: 13px;
    color: var(--txt2);
    margin-top: 6px;
}

.releases-section { background: var(--bg2); }

.releases-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.release-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: border-color var(--transition), transform var(--transition);
}

.release-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.release-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--bg3);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.release-day {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 26px;
    color: var(--txt);
    line-height: 1;
}

.release-month {
    font-size: 11px;
    color: var(--txt2);
    margin-top: 2px;
}

.release-body { flex: 1; min-width: 0; }

.release-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 4px;
    background: rgba(24, 95, 165, 0.12);
    color: var(--accent);
    margin-bottom: 8px;
}

.release-tag.green  { background: rgba(15, 110, 86, 0.12);  color: #0f6e56; }
.release-tag.purple { background: rgba(124, 61, 138, 0.12); color: #9d4edd; }

.release-body h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--txt);
    line-height: 1.4;
    margin-bottom: 6px;
}

.release-body p {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.6;
}

.release-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg3);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt2);
    text-decoration: none;
    flex-shrink: 0;
    transition: all var(--transition);
}

.release-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.release-link i { font-size: 18px; }

.media-section { background: var(--bg3); }

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.media-card {
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-decoration: none;
    transition: border-color var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.media-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.media-logo i { font-size: 22px; color: var(--accent); }

.media-quote {
    font-size: 15px;
    color: var(--txt);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 16px;
    flex: 1;
}

.media-source {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
}

.kit-section { background: var(--bg2); }

.kit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.kit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: border-color var(--transition);
}

.kit-card:hover { border-color: var(--accent); }

.kit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kit-icon i { font-size: 22px; color: var(--accent); }

.kit-info { flex: 1; min-width: 0; }

.kit-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--txt);
    margin-bottom: 3px;
}

.kit-info span {
    font-size: 12px;
    color: var(--txt2);
}

.kit-download {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg3);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt2);
    text-decoration: none;
    flex-shrink: 0;
    transition: all var(--transition);
}

.kit-download:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.kit-download i { font-size: 18px; }

.press-contact-section {
    position: relative;
    padding: 72px 32px;
    background: linear-gradient(140deg, #0d1e2e 0%, #1a2a3a 100%);
    text-align: center;
    overflow: hidden;
}

.press-contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(24,95,165,0.25) 0%, transparent 70%);
}

.press-contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.press-contact-content {
    position: relative;
    z-index: 2;
}

.press-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 0.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.press-contact-icon i { font-size: 26px; color: #fff; }

.press-contact-content h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
}

.press-contact-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}

.press-contact-info {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.press-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 0.5px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: background var(--transition);
}

.press-contact-item:hover { background: rgba(255,255,255,0.18); }
.press-contact-item i { font-size: 18px; }

@media (max-width: 1024px) {
    .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .press-hero { padding: 80px 24px 40px; }
    .press-hero-content h1 { font-size: 30px; }
    .press-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .press-stat:nth-child(2) { border-right: none; }
    .press-stat { border-bottom: 0.5px solid var(--border); }
    .kit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .release-card { flex-direction: column; align-items: flex-start; }
    .release-link { align-self: flex-end; margin-top: -8px; }
    .press-contact-content h2 { font-size: 24px; }
    .press-contact-info { flex-direction: column; }
    .press-contact-item { justify-content: center; }
}
