.hero {
    background: url("") center/cover no-repeat;
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
    color: #fff;         
}

.page-title {
    margin: 2rem 0 1.25rem;
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
    color: var(--clr-primary);
    text-align: center;
}

.news-promos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 900px;          
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
    text-align: center;
    color: var(--clr-primary);
}

.news-promos .card {
    padding: 0;               
    background: none;          
    border-radius: 8px;         
    overflow: visible;          
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}


.news-promos .card img {
    width: 100%;
    height: auto;               
    object-fit: contain;        
    display: block;
    border-radius: 8px;        
}


@media (max-width: 600px) {
    .news-promos {
        grid-template-columns: 1fr;  
    }
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");

.section-title {
    font-family: "Playfair Display", serif; 
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--clr-primary);
    text-align: center;
    position: relative;
    margin: 0 0 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--clr-accent);
    border-radius: 2px;
}

html, body { height: 100%; }             

body {
    display: flex;
    flex-direction: column;               
} 
.news-promos {
    max-width: 1100px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.news-promos .card {
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

.news-promos .card img {
    width: 100%;
    height: auto;              
    display: block;
    border-radius: 10px;
}
