.work_examples {
    overflow: hidden;
}

.work_examples_grid {
    position: relative;
    width: 100%;
    aspect-ratio: 1840 / 780;
}

@media (max-width: 1365px) {
    .work_examples_grid {
        aspect-ratio: 814 / 590;
    }
}

@media (max-width: 759px) {
    .work_examples_grid {
        display: grid;
        grid-template-columns: repeat(20, minmax(0, 1fr));
        gap: min(16px, calc(100% / 19));
        aspect-ratio: auto;
    }
}

.work_examples_item {
    position: absolute;
    overflow: hidden;
    border-radius: 9px;
    background-color: var(--color-gray-500);
}

.work_examples_image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.work_examples_main {
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.work_examples_small_1 {
    top: 0;
    left: 46.85%;
    width: 18.15%;
    height: 46.77%;
}

.work_examples_small_2 {
    top: 0;
    left: 79.35%;
    width: 20.65%;
    height: 46.77%;
}

.work_examples_medium_1 {
    top: 14.49%;
    left: 67.39%;
    width: 16.58%;
    height: 39.17%;
}

.work_examples_medium_2 {
    top: 56.39%;
    left: 87.61%;
    width: 12.39%;
    height: 41.61%;
}

.work_examples_large {
    top: 60.83%;
    left: 46.85%;
    width: 27.34%;
    height: 39.17%;
}

@media (max-width: 1365px) {
    .work_examples_main {
        width: 50%;
        height: 65.42%;
    }

    .work_examples_small_1 {
        left: 52.5%;
        width: 22.6%;
        height: 30.34%;
    }

    .work_examples_small_2 {
        top: 67.92%;
        left: 27.5%;
        width: 22.5%;
        height: 31.19%;
    }

    .work_examples_medium_1 {
        top: 67.92%;
        left: 77.5%;
        width: 22.5%;
        height: 31.19%;
    }

    .work_examples_medium_2 {
        top: 67.92%;
        left: 52.5%;
        width: 22.5%;
        height: 31.19%;
    }

    .work_examples_large {
        top: 32.84%;
        left: 52.5%;
        width: 47.5%;
        height: 31.69%;
    }
}

@media (max-width: 759px) {
    .work_examples_item {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
    }

    .work_examples_main {
        grid-row: 1;
        grid-column: 1 / -1;
        aspect-ratio: 1 / 1;
    }

    .work_examples_small_1 {
        grid-row: 2;
        grid-column: 10 / -1;
        aspect-ratio: 1 / 1;
    }

    .work_examples_small_2 {
        grid-row: 3;
        grid-column: 1 / 12;
        aspect-ratio: 1 / 1;
    }

    .work_examples_medium_1 {
        grid-row: 4;
        grid-column: 1 / 12;
        aspect-ratio: 1 / 1;
    }

    .work_examples_medium_2 {
        grid-row: 3 / 5;
        grid-column: 12 / -1;
        aspect-ratio: 1 / 2;
    }

    .work_examples_large {
        grid-row: 5;
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }
}
