/* ================================================
   SECTION: TEXT WITH IMAGES
   ================================================ */
.section-text-with-images {
    padding: 60px 0;
}

.section-text-with-images__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 93px;
    align-items: start;
}

.section-text-with-images__left,
.section-text-with-images__right {
    font-family: var(--aniro-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--aniro-color-dark);
}

.section-text-with-images__left {
    text-align: right;
}

.section-text-with-images__center-image {
    width: 200px;
    height: 200px;
    position: relative;
}

.section-text-with-images__center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-text-with-images__horizontal-bar {
    background: var(--aniro-color-primary);
    position: relative;
}

.first__horizontal-bar{
    width: 80px;
    height: 20px;
    top: 20px;
    position: absolute;
    left: -40px;
}

.second__horizontal-bar{
    width: 33px;
    height: 20px;
    bottom: 20px;
    position: absolute;
    right: -33px;
}

.section-text-with-images__bottom {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.section-text-with-images__bottom-image {
    width: 353px;
    height: 353px;
    flex-shrink: 0;
    overflow: hidden;
}

.section-text-with-images__bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-text-with-images__bottom-content {
    flex: 1;
}

.section-text-with-images__bottom-title {
    font-family: var(--aniro-font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--aniro-color-black);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-text-with-images__bottom-text {
    font-family: var(--aniro-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: var(--aniro-color-dark);
}

.section-text-with-images__thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.section-text-with-images__thumb {
    width: 115px;
    height: 115px;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.section-text-with-images__thumb:hover {
    opacity: 1;
}

.section-text-with-images__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .section-text-with-images__grid {
        gap: 50px;
    }
    .section-text-with-images__bottom-image {
        width: 250px;
        height: 250px;
    }
    .section-text-with-images__bottom-title {
        font-size: 30px;
    }
    .section-text-with-images__thumb {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .section-text-with-images__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-text-with-images__left {
        text-align: left;
    }
    .section-text-with-images__center-image {
        margin: 0 auto;
    }
    .section-text-with-images__bottom {
        flex-direction: column;
    }
    .section-text-with-images__bottom-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 300px;
    }
    .section-text-with-images__bottom-title {
        font-size: 26px;
    }
    .section-text-with-images__thumbnails {
        flex-wrap: wrap;
    }
    .section-text-with-images__thumb {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .section-text-with-images {
        padding: 30px 0;
    }
    .section-text-with-images__bottom-title {
        font-size: 22px;
    }
}


