

h1{
    display: none;
}

.ast-container{
    padding: 0;
    margin: 0;
    max-width: 100%;
    flex-direction: column;
}

.home-banner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh; /* FULL VIEWPORT */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.home-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Imagen */
.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* se ve igual a tu referencia */
    display: block;
}

/* Slide visible */
.home-slide.active {
    opacity: 1;
}


.text-banner{
    position: absolute;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    color: black;
    bottom: 10px;
}

.text-banner h2{
    line-height:0.85;
    padding-bottom: 10px;
}

.forthcoming-section{
    display: flex;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 35px;
    flex-direction: column;
    gap:10px;
}

.forthcoming-section .text{
    display: flex;
    flex-direction: row;
    
    gap: 80px;
    align-items: center;
}

.forthcoming-section .text h2{
    line-height:0.85;
    padding-bottom: 10px;
    font-size: 30px;
}

.forthcoming-section .text p{
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.text-icon{
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.text-icon img{
    width: 10px;
}

.forthcoming-section .fairs{
    display: flex;
    gap: 5%;
    flex-direction: column;
}

.forthcoming-section .fairs a{
    flex:1;
}

.forthcoming-section .fairs h3{
    font-size: 18px;
    padding-top: 15px;
    
}

.artists-section h2{
    margin-bottom: 10px;
    font-size: 30px;
}

.artists-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5%;
}

.artist-card{
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom:20px;
}

.artists-grid .last-artist{
    margin-right: auto;
}

.artist-name{
    text-transform: lowercase;
    font-size: 18px;
}

.artist-img-wrapper{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.artist-img-wrapper img{
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-card:hover img {
    transform: scale(1.03);
}

.artist-card:hover .artist-name{
    text-decoration: underline;
}

@media (min-width: 480px) { 
    .text-banner{
        padding-left: 35px;
        padding-right: 35px;
    }
    .forthcoming-section{
        padding-left: 35px;
        padding-right: 35px;
    }
    .forthcoming-section .fairs{
        display: flex;
        gap: 5%;
        flex-direction: row;
    }

    .artist-card{
        width: calc(50% - 2.5%);;  /* 2 columnas */
        display: flex;
        flex-direction: column;
    }
 }

 @media (min-width: 1024px) {
    .forthcoming-section{
        padding-bottom: 15px;
    }
    .artists-grid{
        gap: 20px;
    }
    .artist-card {
        width: calc(25% - 20px);  /* 4 columnas */
    }
}