/* Press Releases CSS */

.press-hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.press-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff !important;
}

.press-hero p {
    color: #e2e8f0 !important;
    font-size: 1.1rem;
}

.press-section {
    padding: 60px 0;
    background: #f9fcff;
}

.year-group {
    margin-bottom: 50px;
}

.year-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

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

.press-card {
    text-align: center;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.press-card:hover {
    transform: translateY(-8px);
}

.press-cover {
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
    aspect-ratio: 1 / 1.414; /* A4 Ratio */
    object-fit: cover;
    margin-bottom: 15px;
    cursor: pointer;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.press-card:hover .press-cover {
    box-shadow: 0px 15px 35px rgba(0,0,0,0.25);
    transform: scale(1.03);
}

.press-btn {
    display: block;
    width: 100%;
    background-color: #c49a46 !important;
    color: white !important;
    padding: 10px !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.press-btn:hover {
    background-color: var(--accent-hover, #b08838) !important;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 154, 70, 0.4);
}

.press-btn i {
    margin-left: 5px;
}

@media (max-width: 991px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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