html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Kanit', sans-serif;
    box-sizing: border-box;
    background-color:#fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

.hu-novedades-hero {
    width: 100%;
    height: 100vh;
    display: flex;
}

.hu-novedades-column-left {
    width: 50%;
    height: 100vh;
    padding: 0 5%;
    background: linear-gradient(#222222, #0C0C0C);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.hu-novedades-column-right {
    width: 50%;
    height: 100vh;
    background-image: url('../img/novedades-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hu-novedades-hero h1 {
    font-size: 4rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 10px 0;
}

.hu-novedades-hero h2 {
    font-size: 1.2rem;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 1px;
}

.hu-novedades-container {
    width: 100%;
    padding: 100px 5%;
    background: linear-gradient(#B1A29D, #947D75);  
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hu-novedades-post {
    width: 30%;
}

.hu-novedades-post .img {
    display: block;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: #FFF 2px solid;
}

.hu-novedades-post h2 {
    width: 100%;
    padding: 0 10px;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hu-novedades-post .text {
    width: 100%;
    padding: 0 10px;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 1px;
}

.hu-novedades-post .link {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.color-light {
    color: rgba(255,255,255,0.7);
}

.color-dark {
    color: rgba(17,17,17,0.8);
}

.hidden-content {
    display: none;
}

@media (max-width: 768px) {

    .hu-hero-stamp,
    .hu-about-stamp {
        display: none;
    }

    .hu-novedades-hero {
        flex-direction: column;
        height: auto;
    }

    .hu-novedades-column-left,
    .hu-novedades-column-right {
        width: 100%;
        height: 70vh;
    }

    .hu-novedades-column-left h1 {
        font-size: 3rem;
    }

    .hu-novedades-column-left h2 {
        font-size: 1.2rem;
    }

    .hu-novedades-container {
        flex-direction: column;
    }

    .hu-novedades-post {
        width: 100%;
    }
}