.slideshow{
    border-radius: 15px; 
}

.slide{
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 15px; 
    border:1px solid #232a36; 
    background: rgba(142,202,230, .12);
}

.slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.port-grid{
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap:15px;
}

.tile{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #232a36;
    background: #161b24;
    min-height: 200px;
}

.tile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:transform .4s ease;
    display: block;
}

.tile:hover img{
    transform: scale(1.03);
}

.tile .img-info{
    position: absolute;
    inset: auto 0 0 0;
    padding: .8rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.5) 85%);
    color: white;
}

 .p-span-7{
    grid-column: span 7;
    aspect-ratio: 7/4;
}
.p-span-5{
    grid-column: span 5;
    aspect-ratio: 5/4;
}
.p-span-4{
    grid-column: span 4;
    aspect-ratio: 4/5;
}
.p-span-8{
    grid-column: span 8;
    aspect-ratio: 8/5;
}

.gallery-container{
    max-width: 1500px;
}

.gallery-row{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;

}

.gallery-column{
    aspect-ratio: 4/3;
}

.expand-img{
    opacity: 0.8;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expand-img:hover{
    opacity: 1;
}


.expand-container{
    position: relative;
    display: none;
}

#img-description{
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
}

.close-btn{
    position: absolute;
    top: 2px;
    right:10px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

.span-5{
    grid-column:span 5;
    aspect-ratio:5/4
}

.span-6{grid-column:span 6;
    aspect-ratio:3/2
}

.span-7{
    grid-column:span 7;
    aspect-ratio:7/4
}
