/* EPUP_SECONDARY_GALLERY_V1_START */

.epup-secondary-gallery {

    margin-top: 24px;

    padding-top: 22px;

    border-top: 1px solid #dce8ef;

    font-family: "Nunito", Arial, sans-serif;

}

.epup-secondary-gallery__heading {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

}

.epup-secondary-gallery__heading > span {

    display: grid;

    width: 34px;

    height: 34px;

    flex: 0 0 34px;

    place-items: center;

    color: #fff;

    background: linear-gradient(135deg, #0878ae, #18a7e0);

    border-radius: 11px;

    box-shadow: 0 6px 16px rgba(8, 120, 174, .22);

}

.epup-secondary-gallery__heading h3 {

    margin: 0;

    color: #17324d;

    font-size: 1.3rem;

    line-height: 1.15;

    font-weight: 1000;

    letter-spacing: -.025em;

}

.epup-secondary-gallery__grid {

    display: grid;

    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 10px;

}

.epup-secondary-gallery__item {

    display: block;

    min-width: 0;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    background: #edf7fc;

    border: 1px solid #d5e7f0;

    border-radius: 15px;

    box-shadow: 0 7px 18px rgba(23, 50, 77, .07);

    text-decoration: none;

    transition:

        transform .18s ease,

        box-shadow .18s ease;

}

.epup-secondary-gallery__item:hover {

    transform: translateY(-2px);

    box-shadow: 0 12px 26px rgba(23, 50, 77, .13);

}

.epup-secondary-gallery__item:focus-visible {

    outline: 3px solid rgba(8, 120, 174, .25);

    outline-offset: 3px;

}

.epup-secondary-gallery__item img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .25s ease;

}

.epup-secondary-gallery__item:hover img {

    transform: scale(1.035);

}

.epup-advert-meta-footer {

    display: inline-flex;

    align-items: stretch;

    justify-content: center;

    gap: 15px;

    margin: 30px auto 8px;

    padding: 13px 17px;

    background: #f5f9fb;

    border: 1px solid #dce8ef;

    border-radius: 15px;

    box-shadow: 0 5px 15px rgba(23, 50, 77, .04);

    font-family: "Nunito", Arial, sans-serif;

}

.epup-advert-meta-footer__item small,

.epup-advert-meta-footer__item strong {

    display: block;

}

.epup-advert-meta-footer__item small {

    margin-bottom: 3px;

    color: #8294a4;

    font-size: 10px;

    line-height: 1;

    font-weight: 1000;

    letter-spacing: .08em;

    text-transform: uppercase;

}

.epup-advert-meta-footer__item strong {

    color: #17324d;

    font-size: 12px;

    line-height: 1.25;

    font-weight: 1000;

}

.epup-advert-meta-footer__divider {

    width: 1px;

    background: #d8e5ec;

}

@media (max-width: 700px) {

    .epup-secondary-gallery {

        margin-top: 20px;

        padding-top: 18px;

    }

    .epup-secondary-gallery__grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 9px;

    }

    .epup-secondary-gallery__item {

        border-radius: 14px;

    }

    .epup-secondary-gallery__item:only-child {

        grid-column: 1 / -1;

        aspect-ratio: 16 / 10;

    }

    .epup-advert-meta-footer {

        display: flex;

        width: fit-content;

        max-width: calc(100% - 24px);

        gap: 12px;

        margin-top: 24px;

        padding: 12px 14px;

    }

    .epup-advert-meta-footer__item strong {

        font-size: 11px;

    }

}

/* EPUP_SECONDARY_GALLERY_V1_END */

