.showcase {
    padding: 16px 0 40px;
}

.showcase .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase .title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
    margin-bottom: 24px;
}

.showcase .title:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 14px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='16' viewBox='0 0 14 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.17778C7.98347 8.17778 7.05785 3.31852 7.05785 0C7.05785 6.51852 2.89256 8.17778 0 8.17778C6.5719 8.17778 7.05785 12.9185 7.05785 16C7.05785 9.45778 11.1074 8.62001 14 8.17778Z' fill='black'/%3E%3C/svg%3E%0A");
}

.showcase .grid .grid-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.showcase .grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showcase .grid .grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase .grid {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.showcase .grid.template-first .grid-item:nth-child(1),
.showcase .grid.template-fourth .grid-item:nth-child(1) {
    grid-column: 1 / span 6;
}

.showcase .grid.template-first .grid-item:nth-child(2),
.showcase .grid.template-fourth .grid-item:nth-child(2) {
    grid-column: 7 / span 6;
}

.showcase .grid.template-first .grid-item:nth-child(3),
.showcase .grid.template-fourth .grid-item:nth-child(3),
.showcase .grid.template-fourth .grid-item:nth-child(4) {
    grid-column: 1 / span 12;
}

.showcase .grid.template-second .grid-item {
    grid-column: 1 / span 12;
}

.showcase .grid.template-third .grid-item:nth-child(1) {
    grid-column: 1 / span 7;
}

.showcase .grid.template-third .grid-item:nth-child(2) {
    grid-column: 8 / span 5;
}

.showcase .grid.template-third .grid-item:nth-child(3) {
    grid-column: 1 / span 5;
}

.showcase .grid.template-third .grid-item:nth-child(4) {
    grid-column: 6 / span 7;
}

@media (max-width: 968px) {
    .showcase .grid {
        grid-template-columns: 1fr;
    }

    .showcase .grid .grid-item {
        grid-column: auto !important;
    }
}