#primary section.showcase {
    padding-top: 170px;
    padding-bottom: 60px;
}

.showcase {
    position: relative;
    overflow: hidden;
}

.showcase__corner-img {
    position: absolute;
    top: 0;
    pointer-events: none;
    z-index: 2;
    user-select: none;
}

.showcase__corner-img--left {
    left: 0;
    width: 720px;
    height: 720px;
}

.showcase__corner-img--right {
    right: 0;
    left: unset;
    width: 100%;
    height: 1533px;
}

.showcase__corner-img--middle {
    transform: translateX(-50%);
    left: 50%;
    top: -20%;
    width: unset;
    height: unset;
}

.showcase__category {
    display: flex;
    align-items: center;
    min-height: 27px;
    position: relative;
    gap: 10px;
    z-index: 2;
}

.category-item {
    position: relative;
    display: flex;
    align-items: center;
}

.category-item.has-divider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -5px;
    width: 1px;
    background-color: currentColor;
}

.showcase__title {
    font-weight: var(--fw, 400);
    font-size: var(--fs-desktop, 276px);
    background: var(
        --title-gradient,
        linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 100%)
    );
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-top: 37px;
    margin-bottom: var(--mb-desktop, -82px);
    position: relative;
    z-index: 2;
}

.showcase__image {
    position: relative;
    z-index: 2;
}

.showcase__image img {
    width: 100%;
    max-height: 880px;
    border-radius: 32px;
}

@media screen and (min-width: 1201px) and (max-width: 1450px) {
    .showcase__title {
        font-size: var(--fs-laptop, 210px);
        margin-bottom: var(--mb-laptop, -60px);
    }
}

@media screen and (min-width: 951px) and (max-width: 1200px) {
    .showcase__title {
        font-size: var(--fs-tablet, 140px);
        margin-bottom: var(--mb-tablet, -40px);
    }
}

@media screen and (max-width: 768px) {
    .showcase__image img {
        border-radius: 16px;
    }

    #primary section.showcase {
        padding-top: 116px;
        padding-bottom: 20px;
    }

    .showcase__corner-img--right {
        width: 100% !important;
        height: 100% !important;
    }
}

@media screen and (min-width: 601px) and (max-width: 950px) {
    .showcase__title {
        font-size: var(--fs-mobile-large, 90px);
        margin-bottom: var(--mb-mobile-large, -25px);
    }

    .showcase__corner-img {
        width: 500px;
        height: 500px;
    }
}

@media screen and (max-width: 600px) {
    .showcase__title {
        font-size: var(--fs-mobile, 56px);
        margin-bottom: var(--mb-mobile, -15px);
    }

    .showcase__corner-img {
        width: 300px;
        height: 300px;
    }
}

.showcase__info {
    margin-top: 150px;
}

.showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    z-index: 2;
    position: relative;
}

.showcase__meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase__meta-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 20px;
}

.showcase__label {
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.showcase__value {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
}

.showcase__about {
    display: grid;
    grid-template-columns: 120px 1fr;
}

.showcase__about .showcase__label {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.showcase__about p {
    margin: 0;
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
    .showcase__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .showcase__corner-img--middle {
        width: 100%;
        height: 100%;
    }

    .showcase__meta-item {
        grid-template-columns: 100px 1fr;
    }

    .showcase__info {
        margin-top: 40px;
    }

    .showcase__about p {
        font-size: 14px;
    }

    .showcase__label {
        font-size: 14px;
    }

    .showcase__value {
        font-size: 14px;
    }

    .showcase__about .showcase__label {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .showcase__image img {
        max-height: 238px;
    }
}
