.lookback {
    padding: 5rem 4.75rem;
    padding-top: 2rem;
    position: relative;
    background: #1e149d;
}
.lookback_title > p {
    color: #4edceb;
    margin-bottom: 1.5rem;
}
.lookback_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 1.5rem;
    column-gap: 2rem;
    width: 100%;
    margin-top: 3rem;
}
.lookback_list_item {
    width: 100%;
    height: 15.625rem;
    position: relative;
    cursor: pointer;
    cursor: pointer;
}
.lookback_list_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lookback_list_item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.125rem;
    height: 3.125rem;
    fill: white;
}
@media (max-width: 639px) {
    .lookback {
        padding: 6.25rem 1.118rem 3.75rem;
    }
    .lookback_title > p {
        font-size: 1.375rem;
    }
    .lookback_list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
