/* Press Page Styles */

.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--deep-gold);
}

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

.press-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.press-date {
    font-size: 14px;
    color: var(--deep-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.press-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--forest-green);
}

.read-more i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.media-kit {
    background-color: var(--forest-green);
    color: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.media-kit h2 {
    color: var(--deep-gold);
    margin-bottom: 20px;
}

.media-kit p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.press-contact {
    text-align: center;
    margin-top: 60px;
}

.press-contact a {
    font-size: 20px;
    color: var(--deep-gold);
    font-weight: 600;
}
