.page-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-red);
}
.page-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #666;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.news-card-large {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}
.news-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-bottom-color: var(--primary-gold);
}
.news-card-large a {
    text-decoration: none;
    color: inherit;
}
.news-card-large img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-info-large {
    padding: 25px;
}
.news-info-large .news-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
}
.news-info-large h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--primary-red);
}
.news-info-large .news-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}
