body {
    margin: 0;
    width: 1440px;
    height: 696px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.gallery {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 360px);
    grid-template-rows: repeat(3, 200px);
    gap: 24px;

    width: calc(360px * 3 + 24px * 2);
    height: calc(200px * 3 + 24px * 2);
}

.gallery-item {
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.gallery-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}