section.feature {
    position: relative;
    width: 100%;
    padding: clamp(50px, 6.3vw, 90px) 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #005a9ac2;
    z-index: 1;
}

.feature-detail::after {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(50%);
    z-index: 1;
    content: "";
    height: 100%;
    aspect-ratio: 1;
    opacity: .8;
    background: url(/wp-content/themes/webline/assets/logo-white.svg) center/contain no-repeat;
}

.feature__container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-l);
}

.feature__container * {
    color: var(--second-color);
    text-align: center;
}

.feature__pre-title {
    font-size: 16px;
    font-family: var(--font-bold);
    text-transform: uppercase;
}