.ia-gallery {
    margin-bottom: 30px;
}

.ia-gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.ia-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.ia-gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    border-radius: 4px;
    transition: 0.2s;
}

.ia-gallery-thumbs img:hover {
    opacity: 1;
}