.press-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 150px 20px 100px;
    text-align: center;
}

.press-content {
    padding: 80px 20px;
    background: var(--wfs-darker);
}

/* News Section */
.news-section {
    margin-bottom: 100px;
}

.news-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    transition: all 0.3s;
}

.news-card.featured {
    grid-column: span 2;
    background: rgba(229, 199, 56, 0.03);
    border-color: rgba(229, 199, 56, 0.2);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
}

.news-date {
    color: var(--wfs-yellow);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-card h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: var(--wfs-light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--wfs-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--wfs-white);
}

/* Media Kit */
.media-kit-section {
    margin-bottom: 100px;
    text-align: center;
}

.media-kit-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--wfs-light-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.media-kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.media-kit-card {
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.media-kit-card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
}

.media-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.media-kit-card h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
}

.media-kit-card p {
    color: var(--wfs-light-gray);
    margin-bottom: 25px;
}

/* Facts Section */
.facts-section {
    margin-bottom: 100px;
}

.facts-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.fact-card {
    padding: 25px;
    background: rgba(229, 199, 56, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    text-align: center;
}

.fact-card h4 {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.fact-card span {
    color: var(--wfs-yellow);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Awards */
.awards-section {
    margin-bottom: 100px;
}

.awards-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.award-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
}

.award-year {
    color: var(--wfs-yellow);
    font-size: 1.5rem;
    font-weight: 700;
    flex: 0 0 80px;
}

.award-content h3 {
    color: var(--wfs-white);
    margin-bottom: 10px;
}

.award-content p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

/* Press Contact */
.press-contact-section {
    background: rgba(229, 199, 56, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
    padding: 60px 40px;
}

.press-contact-section h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.press-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 15px;
}

.contact-card h3 {
    color: var(--wfs-white);
    margin-bottom: 5px;
}

.contact-card .title {
    color: var(--wfs-yellow);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--wfs-light-gray);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.press-guidelines {
    text-align: center;
}

.press-guidelines h3 {
    color: var(--wfs-white);
    margin-bottom: 25px;
}

.press-guidelines ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.press-guidelines ul li {
    color: var(--wfs-light-gray);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.press-guidelines ul li::before {
    content: '✓';
    color: var(--wfs-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .news-card.featured {
        grid-column: span 1;
    }
