.drak-static-gallery {
    margin: 0 auto;
    max-width: 920px;
    padding: 10px 12px 18px;
    text-align: center;
}

.drak-static-gallery *,
.drak-static-gallery *::before,
.drak-static-gallery *::after {
    box-sizing: border-box;
}

.drak-static-gallery__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drak-static-gallery__item {
    aspect-ratio: 4 / 3;
    background: #eef3f7;
    margin: 0;
    overflow: hidden;
}

.drak-static-gallery__item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.drak-static-gallery--icons {
    max-width: 760px;
    padding-bottom: 10px;
}

.drak-static-gallery--icons .drak-static-gallery__grid {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.drak-static-gallery--icons .drak-static-gallery__item {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid #e6edf2;
    display: flex;
    height: 104px;
    justify-content: center;
    padding: 5px;
    width: 104px;
}

.drak-static-gallery--icons .drak-static-gallery__item img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.drak-static-gallery--icons .drak-static-gallery__more {
    font-size: 12px;
    margin-top: 10px;
    padding: 9px 12px;
}

.drak-static-gallery__more {
    background: #0f3f69;
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    margin-top: 12px;
    padding: 12px 16px;
    text-decoration: none;
}

.drak-static-gallery__more:hover,
.drak-static-gallery__more:focus {
    color: #fff;
    filter: brightness(0.94);
}

@media (max-width: 560px) {
    .drak-static-gallery__grid {
        gap: 8px;
    }

    .drak-static-gallery__more {
        font-size: 12px;
        padding: 10px 13px;
    }

    .drak-static-gallery--icons .drak-static-gallery__grid {
        gap: 6px;
    }

    .drak-static-gallery--icons .drak-static-gallery__item {
        height: 84px;
        padding: 4px;
        width: 84px;
    }
}
