.press-page {
    position: relative;
}

.press-background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.press-main {
    position: relative;
    z-index: 1;
}

.press-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 160px 60px 80px;
    position: relative;
}

.press-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.press-headline {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.press-section {
    padding: 80px 60px;
    position: relative;
}

.press-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.press-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.press-media-kit {
    background: transparent;
}

.press-logo-download {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.press-logo-download:hover {
    transform: scale(1.02);
}

.press-logo-download img {
    max-width: 280px;
    height: auto;
}

.press-logo-download-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.press-logo-download:hover .press-logo-download-icon {
    background: var(--about-green);
}

.press-logo-download-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.press-about-deon {
    background: var(--about-bg-secondary);
}

.press-about-text {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--about-text-secondary);
    line-height: 1.8;
    max-width: 900px;
}

.press-facts {
    background: transparent;
}

.press-facts-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

.press-facts-table tr {
    border-bottom: 1px solid var(--about-border);
}

.press-facts-table tr:last-child {
    border-bottom: none;
}

.press-facts-table td {
    padding: 16px 0;
    vertical-align: middle;
}

.press-facts-table td:first-child {
    font-size: 15px;
    font-weight: 500;
    color: var(--about-text-muted);
    width: 160px;
}

.press-facts-table td:last-child {
    font-size: 16px;
    font-weight: 500;
    color: var(--about-text-primary);
}

.press-coverage {
    background: var(--about-bg-secondary);
}

.press-coverage-text {
    font-size: 18px;
    color: var(--about-text-muted);
    line-height: 1.7;
}

.press-contact {
    background: transparent;
    text-align: center;
    padding: 100px 60px;
}

.press-contact-text {
    font-size: 18px;
    color: var(--about-text-muted);
    margin-bottom: 24px;
}

.press-email {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--about-green);
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.press-email:hover {
    opacity: 0.8;
}

.press-response-time {
    font-size: 15px;
    color: var(--about-text-muted);
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .press-facts-table td:first-child {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .press-hero {
        padding: 140px 24px 60px;
        align-items: flex-start;
    }
    
    .press-section {
        padding: 60px 24px;
    }
    
    .press-logo-download img {
        max-width: 200px;
    }
    
    .press-facts-table td:first-child {
        width: 120px;
        font-size: 14px;
    }
    
    .press-facts-table td:last-child {
        font-size: 15px;
    }
    
    .press-contact {
        padding: 60px 24px;
    }
}

body.light-mode .press-headline {
    background: linear-gradient(135deg, #1A1A1E 0%, #3A3A42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-mode .press-section-title {
    color: #1A1A1E;
}

body.light-mode .press-about-deon {
    background: #DCE0E6;
}

body.light-mode .press-about-text {
    color: #3D4550;
}

body.light-mode .press-facts-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .press-facts-table td:first-child {
    color: #7E8795;
}

body.light-mode .press-facts-table td:last-child {
    color: #1A1A1E;
}

body.light-mode .press-coverage {
    background: #DCE0E6;
}

body.light-mode .press-coverage-text {
    color: #59616E;
}

body.light-mode .press-contact-text {
    color: #59616E;
}

body.light-mode .press-response-time {
    color: #7E8795;
}
