/* --- Press Room Styles --- */

.press-intro {
    padding-top: calc(var(--spacing-unit) * 2);
    padding-bottom: calc(var(--spacing-unit) * 1);
    text-align: left;
}

.press-intro h1 {
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.press-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    text-align: left;
}

.press-intro .contact-info {
    background-color: #f8f9fa;
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.press-downloads {
    padding-bottom: calc(var(--spacing-unit) * 3);
}

.press-downloads h2 {
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-size: 2rem;
}

.press-release-section,
.press-kit-section {
    margin-bottom: calc(var(--spacing-unit) * 1);
    padding-bottom: calc(var(--spacing-unit) * 0);
    border-bottom: 1px solid #e9ecef;
}

.press-kit-section:last-child {
    border-bottom: none;
}

.download-title {
    font-size: 1.2rem;
    margin-bottom: calc(var(--spacing-unit) * 1);
    font-weight: 700;
}

.download-link-container {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.download-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #6E6A19 !important;
    text-decoration: underline;
}

.download-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.press-kit-contents {
    background-color: #f8f9fa;
    padding: calc(var(--spacing-unit) * 1.5);
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
    margin-top: calc(var(--spacing-unit) * 1);
}

.press-kit-contents p {
    margin-bottom: calc(var(--spacing-unit) * 0.75);
    font-weight: 600;
}

.press-kit-contents ul {
    list-style: none;
    padding-left: 0;
}

.press-kit-contents ul li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.press-kit-contents ul li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .press-intro {
        padding-top: var(--spacing-unit);
        text-align: center;
    }
    
    .press-release-section,
    .press-kit-section {
        padding-bottom: var(--spacing-unit);
    }
    
    .download-title {
        font-size: 1.25rem;
    }
    
    .download-link {
        font-size: 0.9rem;
    }
}

body.dark-theme .logo,
body.dark-theme .logo-desktop,
body.dark-theme .logo-mobile,
body.dark-theme .social-logo {
    filter: invert(1) brightness(2);
}