.section-instructions .container {
    display: flex;
    flex-direction: column;
    gap: 80px 0;
}
.instruction {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    grid-column-end: span 6;
}
.instructions-list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 64px 32px;
}
.instruction-img {
    position: relative;
    border-radius: 8px;
    line-height: 0;
}

.instruction-img img {
    border-radius: 8px;
}

.instruction-img::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    background: url(/images/play.svg) center left 26px/18px no-repeat #fff;
    border-radius: 64px;
    transition: all .3s ease;
}

.instruction:hover .instruction-img::after {
    opacity: 0.7;
}
.instruction-info {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    max-width: 640px;
    width: 100%;
}

.instruction:first-child {
    grid-column-end: span 12;
}
.instruction:hover .instruction-img::after {
    opacity: 0.7;
}
.instruction-img::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 64px;
    height: 64px;
    background: url(/images/play.svg) center left 26px/18px no-repeat #fff;
    border-radius: 64px;
    transition: all .3s ease;
}

.instruction:hover .instruction-img::after {
    opacity: 0.7;
}
@media (max-width: 480px) {
    .instructions-list {
        gap: 32px 0;
    }
    .instruction-img::after {
        width: 32px;
        height: 32px;
        background: url(/images/play.svg) center left 13px / 9px no-repeat #fff;
    }
    .instruction {
        gap: 16px 0;
        grid-column-end: span 12;
    }
    .section-instructions .container {
        gap: 48px 0;
    }
    .instruction-img::after {
        width: 32px;
        height: 32px;
        background: url(/images/play.svg) center left 13px / 9px no-repeat #fff;
    }
}
