.home-hero {
    --hero-indicator-progress: 0;
    position: relative;
    height: clamp(620px, 86svh, 920px);
    min-height: 620px;
    overflow: hidden;
    background: #0f1318;
    isolation: isolate;
}

.home-hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero-carousel__slides {
    position: absolute;
    inset: 0;
}

.home-hero-carousel__slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.85s ease, transform 6.8s ease;
}

.home-hero-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.95) contrast(1.04);
}

.home-hero-carousel__slide--a img {
    object-position: 55% 6%;
}

.home-hero-carousel__slide--b img {
    object-position: 55% 46%;
}

.home-hero-carousel__slide--c img {
    object-position: 54% 42%;
}

.home-hero-carousel__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.home-hero-carousel__veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(12, 15, 19, 0.8) 0%, rgba(12, 15, 19, 0.42) 34%, rgba(12, 15, 19, 0.14) 58%, rgba(12, 15, 19, 0.52) 100%),
        linear-gradient(180deg, rgba(12, 15, 19, 0.12) 0%, rgba(12, 15, 19, 0.2) 58%, rgba(12, 15, 19, 0.76) 100%);
}

.home-hero-carousel__content-wrap {
    position: relative;
    z-index: 3;
    width: min(1380px, calc(100% - 64px));
    height: 100%;
    margin: 0 auto;
    padding-top: clamp(170px, 27vh, 300px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.home-hero-carousel__content {
    max-width: 660px;
    color: #fff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.home-hero-carousel__title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(44px, 4.5vw, 72px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.home-hero-carousel__subtitle {
    margin: 16px 0 0;
    max-width: 620px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.2vw, 22px);
    font-weight: 500;
    line-height: 1.32;
    color: rgba(255, 255, 255, 0.96);
}

.home-hero-carousel__cta {
    margin-top: 40px;
    width: 210px;
    min-height: 56px;
    border-radius: 8px;
    border: 1px solid #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.home-hero-carousel__cta:hover {
    transform: translateY(-1px);
    background: #fff;
    color: #282828;
}

.home-hero-carousel__controls {
    position: absolute;
    z-index: 4;
    right: clamp(16px, 5vw, 96px);
    bottom: clamp(18px, 4.5vh, 56px);
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-hero-carousel__control {
    position: relative;
    width: 62px;
    height: 62px;
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.96);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.home-hero-carousel__control::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(22, 25, 29, 0.42);
    opacity: 0.5;
    transform: scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.home-hero-carousel__control:hover::before,
.home-hero-carousel__control:focus-visible::before {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.5);
}

.home-hero-carousel__control:hover {
    transform: translateY(-2px);
}

.home-hero-carousel__control:active {
    transform: translateY(0);
}

.home-hero-carousel__arrow {
    display: inline-block;
    width: 30px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: transform 0.25s ease;
    z-index: 1;
}

.home-hero-carousel__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 11px;
    height: 11px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.home-hero-carousel__arrow--left::after {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
}

.home-hero-carousel__arrow--right::after {
    right: 0;
}

.home-hero-carousel__control--prev:hover .home-hero-carousel__arrow,
.home-hero-carousel__control--prev:focus-visible .home-hero-carousel__arrow {
    transform: translateX(-3px);
}

.home-hero-carousel__control--next:hover .home-hero-carousel__arrow,
.home-hero-carousel__control--next:focus-visible .home-hero-carousel__arrow {
    transform: translateX(3px);
}

.home-hero-carousel__progress {
    position: relative;
    width: 180px;
    height: 10px;
}

.home-hero-carousel__progress-track,
.home-hero-carousel__progress-fill {
    position: absolute;
    top: 4px;
    height: 2px;
    border-radius: 999px;
}

.home-hero-carousel__progress-track {
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.28);
}

.home-hero-carousel__progress-fill {
    width: 58px;
    left: calc((100% - 58px) * var(--hero-indicator-progress));
    background: #fff;
    transition: left 0.45s ease;
}

@media (max-width: 1280px) {
    .home-hero {
        height: clamp(560px, 80svh, 840px);
        min-height: 560px;
    }

    .home-hero-carousel__content-wrap {
        width: min(1320px, calc(100% - 44px));
        padding-top: clamp(146px, 24vh, 240px);
    }

    .home-hero-carousel__title {
        font-size: clamp(40px, 4.1vw, 62px);
    }

    .home-hero-carousel__subtitle {
        max-width: 560px;
    }

    .home-hero-carousel__cta {
        width: 196px;
        min-height: 54px;
        font-size: 18px;
    }

    .home-hero-carousel__controls {
        right: clamp(14px, 3vw, 44px);
        bottom: 24px;
    }
}

@media (max-width: 1024px) {
    .home-hero {
        height: clamp(500px, 74svh, 700px);
        min-height: 500px;
    }

    .home-hero-carousel__content-wrap {
        width: calc(100% - 30px);
        padding-top: clamp(124px, 20vh, 180px);
    }

    .home-hero-carousel__content {
        max-width: 560px;
    }

    .home-hero-carousel__title {
        font-size: clamp(36px, 5.8vw, 52px);
    }

    .home-hero-carousel__subtitle {
        margin-top: 13px;
        font-size: clamp(15px, 2vw, 19px);
        max-width: 520px;
    }

    .home-hero-carousel__cta {
        margin-top: 28px;
        width: 176px;
        min-height: 50px;
        font-size: 17px;
    }

    .home-hero-carousel__controls {
        right: 12px;
        bottom: 16px;
        gap: 16px;
    }

    .home-hero-carousel__control {
        width: 56px;
        height: 56px;
    }

    .home-hero-carousel__arrow {
        width: 26px;
    }

    .home-hero-carousel__progress {
        width: 138px;
        height: 10px;
    }

    .home-hero-carousel__progress-fill {
        width: 46px;
        left: calc((100% - 46px) * var(--hero-indicator-progress));
    }
}

@media (max-width: 768px) {
    .home-hero {
        height: clamp(440px, 68svh, 560px);
        min-height: 440px;
    }

    .home-hero-carousel__content-wrap {
        width: calc(100% - 24px);
        padding-top: 108px;
    }

    .home-hero-carousel__content {
        max-width: 480px;
    }

    .home-hero-carousel__title {
        font-size: clamp(31px, 7vw, 43px);
    }

    .home-hero-carousel__subtitle {
        margin-top: 11px;
        font-size: clamp(14px, 2.7vw, 17px);
        line-height: 1.3;
        max-width: 440px;
    }

    .home-hero-carousel__cta {
        margin-top: 22px;
        width: 168px;
        min-height: 48px;
        font-size: 16px;
    }

    .home-hero-carousel__controls {
        right: 12px;
        bottom: 12px;
        gap: 12px;
    }

    .home-hero-carousel__control {
        width: 50px;
        height: 50px;
    }

    .home-hero-carousel__progress {
        width: 112px;
        height: 10px;
    }

    .home-hero-carousel__progress-fill {
        width: 36px;
        left: calc((100% - 36px) * var(--hero-indicator-progress));
    }
}

@media (max-width: 640px) {
    .home-hero {
        height: clamp(390px, 66svh, 480px);
        min-height: 390px;
    }

    .home-hero-carousel__content-wrap {
        width: calc(100% - 16px);
        padding-top: 88px;
    }

    .home-hero-carousel__title {
        font-size: clamp(28px, 9vw, 38px);
    }

    .home-hero-carousel__subtitle {
        margin-top: 8px;
        font-size: clamp(13px, 3.5vw, 15px);
        line-height: 1.28;
        max-width: 360px;
    }

    .home-hero-carousel__cta {
        margin-top: 16px;
        width: 148px;
        min-height: 42px;
        font-size: 15px;
    }

    .home-hero-carousel__controls {
        right: 8px;
        bottom: 10px;
        gap: 10px;
    }

    .home-hero-carousel__control {
        width: 44px;
        height: 44px;
    }

    .home-hero-carousel__arrow {
        width: 21px;
    }

    .home-hero-carousel__progress {
        width: 90px;
        height: 10px;
    }

    .home-hero-carousel__progress-fill {
        width: 30px;
        left: calc((100% - 30px) * var(--hero-indicator-progress));
    }
}

@media (max-width: 460px) {
    .home-hero {
        height: clamp(360px, 62svh, 440px);
        min-height: 360px;
    }

    .home-hero-carousel__content-wrap {
        width: calc(100% - 14px);
        padding-top: 76px;
    }

    .home-hero-carousel__title {
        font-size: clamp(24px, 8.7vw, 32px);
    }

    .home-hero-carousel__subtitle {
        font-size: 13px;
        max-width: 300px;
    }

    .home-hero-carousel__cta {
        width: 132px;
        min-height: 38px;
        font-size: 14px;
    }

    .home-hero-carousel__controls {
        bottom: 8px;
        right: 6px;
        gap: 8px;
    }

    .home-hero-carousel__control {
        width: 40px;
        height: 40px;
    }

    .home-hero-carousel__arrow {
        width: 18px;
    }

    .home-hero-carousel__progress {
        width: 76px;
    }

    .home-hero-carousel__progress-fill {
        width: 24px;
        left: calc((100% - 24px) * var(--hero-indicator-progress));
    }
}

@media (hover: none) {
    .home-hero-carousel__control::before {
        opacity: 0.78;
        transform: scale(1);
    }
}

.signature-work {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(34px, 5vw, 74px) 0 clamp(54px, 7vw, 100px);
    background: var(--site-bg);
}

.signature-work::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.signature-work::after {
    display: none;
}

.signature-work__inner {
    width: min(1760px, calc(100% - 44px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.signature-work__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: clamp(28px, 3vw, 42px);
}

.signature-work__copy {
    max-width: 760px;
}

.signature-work__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--signature-eyebrow-border);
    background: var(--signature-eyebrow-bg);
    color: var(--signature-eyebrow-text);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.signature-work__head h2 {
    margin: 14px 0 0;
    max-width: 12ch;
    color: var(--signature-heading);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(30px, 3.6vw, 56px);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.signature-work--portfolio .signature-work__head h2 {
    max-width: 22ch;
    letter-spacing: 0.03em;
}

.signature-work__head p {
    margin: 12px 0 0;
    max-width: 560px;
    color: var(--signature-body);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.5;
    font-weight: 500;
}

.signature-work__browse {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    border: 1px solid var(--signature-browse-border);
    background: var(--site-surface);
    box-shadow: 0 12px 24px var(--signature-browse-shadow);
    color: var(--signature-browse-text);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.signature-work__browse:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px var(--signature-browse-shadow);
    border-color: var(--signature-browse-border);
}

.signature-work__layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.signature-work__panel {
    position: relative;
    min-height: 100%;
    padding: 30px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--site-surface);
    border: 1px solid var(--signature-panel-border);
    box-shadow: 0 18px 38px var(--signature-panel-shadow);
    color: var(--signature-heading);
}

.signature-work__panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, #000000 0 33.333%, #f6d100 33.333% 66.666%, #ef2b2d 66.666% 100%);
    pointer-events: none;
}

.signature-work__panel > * {
    position: relative;
    z-index: 1;
}

.signature-work__panel-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--signature-panel-kicker-border);
    background: var(--site-bg);
    color: var(--signature-panel-kicker-text);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.signature-work__panel h3 {
    margin: 22px 0 0;
    max-width: 14ch;
    color: var(--signature-heading);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(24px, 2.3vw, 36px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.signature-work__panel p {
    margin: 18px 0 0;
    color: var(--signature-body);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.signature-work__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.signature-work__metric {
    min-height: 116px;
    padding: 18px;
    border-radius: 12px;
    background: var(--site-bg);
    border: 1px solid var(--signature-metric-border);
}

.signature-work__metric strong {
    display: block;
    color: var(--signature-metric-strong);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 2.5vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.signature-work__metric span {
    display: block;
    margin-top: 14px;
    color: var(--signature-metric-caption);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.signature-work__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(86px, 98px);
    grid-auto-flow: dense;
    gap: 16px;
    align-content: start;
}

.signature-work__coming {
    position: relative;
    grid-column: 1 / -1;
    min-height: 492px;
    border-radius: 12px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(103, 232, 249, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(248, 181, 23, 0.2), transparent 30%),
        linear-gradient(145deg, #202734 0%, #273243 48%, #131a24 100%);
    box-shadow: 0 16px 34px rgba(52, 57, 68, 0.16);
}

.signature-work__coming-glow,
.signature-work__coming-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.signature-work__coming-glow {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 36%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.05), transparent 42%);
}

.signature-work__coming-frame {
    inset: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.signature-work__coming-frame::before,
.signature-work__coming-frame::after {
    content: '';
    position: absolute;
    top: 14px;
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.signature-work__coming-frame::before {
    left: 14px;
}

.signature-work__coming-frame::after {
    right: 14px;
}

.signature-work__coming-content {
    position: relative;
    z-index: 1;
    min-height: 492px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 34px;
}

.signature-work__coming-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 250, 243, 0.92);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.signature-work__coming-content h3 {
    margin: 22px 0 0;
    max-width: 11ch;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.signature-work__coming-content p {
    margin: 18px 0 0;
    max-width: 560px;
    color: rgba(241, 245, 249, 0.84);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.65;
    font-weight: 500;
}

.signature-work__coming-link {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: #f4f4f4;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
    color: #1e304a;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.signature-work__coming-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(17, 24, 39, 0.24);
}

.signature-work__card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #d9d1c8;
    box-shadow: 0 10px 26px rgba(40, 45, 55, 0.09), 0 2px 8px rgba(40, 45, 55, 0.04);
}

.signature-work__card--bento-hero {
    grid-column: span 5;
    grid-row: span 4;
}

.signature-work__card--bento-rehau {
    grid-column: span 4;
    grid-row: span 3;
}

.signature-work__card--bento-schuco,
.signature-work__card--bento-veka {
    grid-column: span 4;
    grid-row: span 2;
}

.signature-work__card--bento-aluplast {
    grid-column: span 3;
    grid-row: span 4;
}

@media (min-width: 1321px) {
    .signature-work--portfolio .signature-work__grid {
        grid-auto-flow: row;
        grid-template-rows: repeat(7, minmax(78px, 1fr));
        min-height: 600px;
    }

    .signature-work--portfolio .signature-work__card--bento-hero {
        grid-column: 1 / 6;
        grid-row: 1 / 8;
    }

    .signature-work--portfolio .signature-work__card--bento-rehau {
        grid-column: 6 / 9;
        grid-row: 1 / 4;
    }

    .signature-work--portfolio .signature-work__card--bento-schuco {
        grid-column: 6 / 9;
        grid-row: 4 / 6;
    }

    .signature-work--portfolio .signature-work__card--bento-veka {
        grid-column: 6 / 9;
        grid-row: 6 / 8;
    }

    .signature-work--portfolio .signature-work__card--bento-aluplast {
        grid-column: 9 / 13;
        grid-row: 1 / 8;
    }
}

.signature-work__card--media-top img {
    object-position: center 20%;
}

.signature-work__card--media-mid img {
    object-position: center 48%;
}

.signature-work__card--media-center img {
    object-position: center 55%;
}

.signature-work__card-link {
    position: relative;
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: inherit;
    transition: transform 0.26s ease;
}

.signature-work__card-link:hover {
    transform: translateY(-2px);
}

.signature-work__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.signature-work__card-link:hover img {
    transform: scale(1.02);
    filter: saturate(1.02);
}

.signature-work__card-shade,
.signature-work__card-frame,
.signature-work__card-content {
    position: absolute;
    inset: 0;
}

.signature-work__card-shade {
    background:
        linear-gradient(180deg, rgba(28, 32, 40, 0) 0%, rgba(28, 32, 40, 0.06) 42%, rgba(20, 22, 28, 0.78) 100%);
}

.signature-work__card-frame {
    inset: 11px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.signature-work__card-frame::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.signature-work__card-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    padding: 22px;
    z-index: 1;
}

.signature-work__card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.signature-work__card-meta {
    min-width: 0;
    max-width: min(360px, 100%);
}

.signature-work__card-meta span,
.signature-work__card-meta em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.signature-work__card-meta span {
    color: rgba(255, 255, 255, 0.76);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signature-work__card-meta strong {
    display: -webkit-box;
    margin-top: 6px;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1.15vw, 21px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.signature-work__card-meta em {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.04em;
}

@media (max-width: 1320px) {
    .signature-work {
        padding: 28px 0 72px;
    }

    .signature-work__inner {
        width: min(1320px, calc(100% - 28px));
    }

    .signature-work__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .signature-work__panel {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
        gap: 24px;
        align-items: end;
    }

    .signature-work__panel p {
        max-width: 560px;
    }

    .signature-work__metrics {
        margin-top: 0;
    }

    .signature-work__grid {
        gap: 14px;
    }
}

@media (max-width: 980px) {
    .signature-work__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .signature-work__browse {
        min-width: 0;
    }

    .signature-work__panel {
        grid-template-columns: minmax(0, 1fr);
    }

    .signature-work__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: minmax(92px, 112px);
    }

    .signature-work__coming,
    .signature-work__coming-content {
        min-height: 420px;
    }

    .signature-work__card--bento-hero,
    .signature-work__card--bento-rehau {
        grid-column: span 3;
        grid-row: span 2;
    }

    .signature-work__card--bento-schuco,
    .signature-work__card--bento-veka,
    .signature-work__card--bento-aluplast {
        grid-column: span 3;
        grid-row: span 2;
    }
}

@media (max-width: 760px) {
    .signature-work {
        padding: 22px 0 56px;
    }

    .signature-work__inner {
        width: calc(100% - 16px);
    }

    .signature-work__head {
        gap: 18px;
        margin-bottom: 24px;
    }

    .signature-work__head h2 {
        margin-top: 12px;
        font-size: clamp(28px, 11vw, 46px);
    }

    .signature-work__head p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.5;
    }

    .signature-work__browse {
        width: 100%;
        min-height: 54px;
        padding: 0 20px;
        border-radius: 10px;
        font-size: 13px;
    }

    .signature-work__panel {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .signature-work__panel h3 {
        margin-top: 18px;
        font-size: clamp(24px, 7vw, 34px);
    }

    .signature-work__panel p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 1.6;
    }

    .signature-work__metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
    }

    .signature-work__metric {
        min-height: 108px;
        padding: 16px;
        border-radius: 10px;
    }

    .signature-work__metric span {
        margin-top: 12px;
        font-size: 11px;
    }

    .signature-work__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(132px, 38vw);
        gap: 12px;
    }

    .signature-work__coming,
    .signature-work__coming-content {
        min-height: 320px;
    }

    .signature-work__coming-content {
        padding: 24px;
    }

    .signature-work__coming-content h3 {
        font-size: clamp(28px, 10vw, 44px);
    }

    .signature-work__coming-content p {
        font-size: 14px;
    }

    .signature-work__coming-link {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding: 0 18px;
        font-size: 11px;
    }

    .signature-work__card,
    .signature-work__card--bento-hero,
    .signature-work__card--bento-rehau,
    .signature-work__card--bento-schuco,
    .signature-work__card--bento-veka,
    .signature-work__card--bento-aluplast {
        grid-column: span 1;
        grid-row: span 1;
        border-radius: 12px;
    }

    .signature-work__card--bento-hero,
    .signature-work__card--bento-rehau {
        grid-column: span 2;
    }

    .signature-work__card-frame {
        inset: 10px;
        border-radius: 8px;
    }

    .signature-work__card-frame::before {
        top: 12px;
        left: 12px;
        width: 52px;
    }

    .signature-work__card-content {
        gap: 12px;
        padding: 18px;
    }

    .signature-work__card-index {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .signature-work__card-meta strong {
        font-size: 16px;
    }

    .signature-work__card-meta em {
        font-size: 11px;
    }
}

@media (max-width: 520px) {
    .signature-work__grid {
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: auto;
    }

    .signature-work__coming,
    .signature-work__coming-content {
        min-height: 280px;
    }

    .signature-work__card,
    .signature-work__card--bento-hero,
    .signature-work__card--bento-rehau,
    .signature-work__card--bento-schuco,
    .signature-work__card--bento-veka,
    .signature-work__card--bento-aluplast {
        grid-column: auto;
        min-height: 240px;
    }

    .signature-work__card-link {
        min-height: 240px;
    }

    .signature-work__metrics {
        grid-template-columns: minmax(0, 1fr);
    }
}

.home-newsletter {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    background: transparent;
    padding: 0;
}

.home-newsletter__inner {
    width: 100%;
    margin: 0 auto;
    height: 600px;
    min-height: 600px;
    border-radius: 0;
    border: 0;
    background: url('../imgs/homepage/subscribe.png') center/cover no-repeat;
    box-shadow: none;
    padding: 24px 18px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-newsletter__icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8b517;
    color: #11141c;
    font-size: 13px;
    line-height: 1;
}

.home-newsletter h2 {
    margin: 0;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(18px, 1.7vw, 30px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.home-newsletter h2 span {
    display: block;
}

.home-newsletter p {
    margin: 0;
    color: rgba(238, 240, 247, 0.84);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.home-newsletter__form {
    margin: 4px auto 0;
    width: min(760px, calc(100% - 28px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.home-newsletter__form input {
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 250, 244, 0.86);
    padding: 0 12px;
    color: #20242b;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    outline: none;
}

.home-newsletter__form input::placeholder {
    color: rgba(88, 94, 105, 0.76);
}

.home-newsletter__form input:focus {
    border-color: rgba(248, 181, 23, 0.78);
}

.home-newsletter__form button {
    min-height: 42px;
    min-width: 128px;
    border-radius: 8px;
    border: 0;
    background: #f8b517;
    color: #14171d;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.home-newsletter__form button:hover {
    background: #f1ab10;
}

.home-newsletter__feedback,
.home-newsletter__helper {
    width: min(760px, calc(100% - 28px));
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.home-newsletter__feedback {
    padding: 10px 14px;
    border-radius: 8px;
}

.home-newsletter__feedback--success {
    background: rgba(241, 250, 243, 0.88);
    color: #1f5a31;
    border: 1px solid rgba(126, 183, 142, 0.34);
}

.home-newsletter__feedback--error {
    background: rgba(255, 244, 242, 0.9);
    color: #7f2626;
    border: 1px solid rgba(220, 152, 152, 0.34);
}

.home-newsletter__helper {
    color: rgba(238, 240, 247, 0.78);
}

@media (max-width: 760px) {
    .home-newsletter {
        margin-top: 0;
        padding: 0;
    }

    .home-newsletter__inner {
        width: 100%;
        height: 600px;
        min-height: 600px;
        border-radius: 0;
        padding: 16px 10px 18px;
        gap: 8px;
    }

    .home-newsletter__icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
        border-radius: 4px;
    }

    .home-newsletter h2 {
        font-size: clamp(15px, 6.1vw, 22px);
    }

    .home-newsletter p {
        font-size: clamp(14px, 3.4vw, 15px);
    }

    .home-newsletter__form {
        margin-top: 2px;
        gap: 6px;
        width: min(520px, calc(100% - 8px));
    }

    .home-newsletter__form input,
    .home-newsletter__form button {
        min-height: 34px;
        font-size: 12px;
    }

    .home-newsletter__form button {
        min-width: 100px;
    }

    .home-newsletter__feedback,
    .home-newsletter__helper {
        width: min(520px, calc(100% - 8px));
        font-size: 11px;
    }
}

.home-hero {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: var(--site-bg);
    padding: 0;
    isolation: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.qc-showcase {
    width: 100vw;
    max-width: none;
    margin: 0;
    min-height: 0;
    background: var(--site-bg);
    border: 0;
    box-shadow: none;
}

.qc-showcase__topbar {
    display: none;
    min-height: 90px;
    background: var(--site-surface);
    border-bottom: 1px solid #e4e4e4;
    padding: 0 clamp(20px, 3.7vw, 82px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 18px;
}

.qc-showcase__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    text-decoration: none;
}

.qc-showcase__brand-mark {
    color: #b99154;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(30px, 2.2vw, 44px);
    line-height: 1;
    letter-spacing: 0.04em;
}

.qc-showcase__brand-name {
    color: #b9a486;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 0.9vw, 16px);
    letter-spacing: 0.34em;
    text-transform: uppercase;
    font-weight: 500;
}

.qc-showcase__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.3vw, 48px);
}

.qc-showcase__nav a {
    text-decoration: none;
    color: #474747;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 0.95vw, 22px);
    font-weight: 500;
    line-height: 1;
    transition: color 0.2s ease;
}

.qc-showcase__nav a:hover {
    color: #9b7640;
}

.qc-showcase__quote-btn {
    min-height: 42px;
    padding: 0 26px;
    border: 1px solid #b99154;
    background: #b99154;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(12px, 0.84vw, 14px);
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.qc-showcase__quote-btn:hover {
    background: #a8864f;
}

.qc-showcase__hero {
    position: relative;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    border-bottom: 0;
}

.qc-showcase__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    display: block;
    filter: brightness(0.9) contrast(1.04) saturate(0.9);
    transform: none;
}

.qc-showcase__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(42, 37, 31, 0.6) 0%, rgba(42, 37, 31, 0.36) 32%, rgba(42, 37, 31, 0.06) 62%, rgba(42, 37, 31, 0.03) 100%);
    pointer-events: none;
}

.qc-showcase__hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(24px, 7.8vw, 106px);
    transform: translateY(-50%);
    width: min(360px, calc(100% - 28px));
    color: #f7f7f7;
}

.qc-showcase__hero-content h1 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(24px, 2.9vw, 38px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.qc-showcase__hero-content p {
    margin: 10px 0 0;
    border-top: 1px solid rgba(185, 145, 84, 0.36);
    padding-top: 8px;
    color: #b99154;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(12px, 0.8vw, 14px);
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.qc-showcase__hero-content a {
    margin-top: 12px;
    min-width: 122px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    color: #14171d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(12px, 0.78vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qc-showcase__hero-content a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.qc-showcase__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: var(--site-bg);
    padding: 26px 24px 24px;
}

.qc-showcase__card {
    min-width: 0;
}

.uiverse-card {
    position: relative;
    display: block;
    height: clamp(230px, 21vw, 300px);
    border-radius: 14px;
    overflow: hidden;
    background: #3f514f;
    box-shadow: 0 14px 28px rgba(13, 17, 24, 0.2);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.uiverse-card__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.uiverse-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(24, 26, 30, 0.14) 0%, rgba(24, 26, 30, 0.46) 100%),
        linear-gradient(90deg, rgba(63, 81, 79, 0.52) 0%, rgba(63, 81, 79, 0.14) 50%, rgba(63, 81, 79, 0.56) 100%);
    z-index: 1;
}

.uiverse-card__border {
    position: absolute;
    inset: 0;
    border: 2px solid #bd9f67;
    opacity: 0;
    transform: rotate(6deg);
    transition: all 0.5s ease;
    z-index: 2;
}

.uiverse-card__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: grid;
    align-content: end;
    justify-items: start;
    gap: 8px;
    padding: 18px 16px;
}

.uiverse-card__content h2 {
    margin: 0;
    color: #f2f3f5;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 1.75vw, 30px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.uiverse-card__content p {
    margin: 0;
    color: rgba(236, 237, 240, 0.86);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(12px, 0.88vw, 14px);
    line-height: 1.3;
    font-weight: 500;
}

.uiverse-card__cta {
    margin-top: 6px;
    width: 148px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(189, 159, 103, 0.85);
    background: rgba(14, 18, 26, 0.72);
    color: #f8f2e8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.uiverse-card__bottom {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #bd9f67;
    opacity: 0;
    z-index: 4;
    transition: opacity 0.35s ease, letter-spacing 0.35s ease;
}

.uiverse-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 22px 36px rgba(10, 12, 18, 0.28);
}

.uiverse-card:hover .uiverse-card__border {
    inset: 10px;
    opacity: 1;
    transform: rotate(0);
}

.uiverse-card:hover .uiverse-card__bottom {
    opacity: 1;
    letter-spacing: 0.2em;
}

.uiverse-card:hover .uiverse-card__cta {
    background: rgba(189, 159, 103, 0.22);
    transform: translateY(-1px);
}

.qc-showcase__contact {
    border-top: 0;
    background: var(--site-bg);
    text-align: center;
    padding: 22px 22px 30px;
}

.qc-showcase__contact h2 {
    margin: 0;
    color: #23262d;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(44px, 2.7vw, 56px);
    line-height: 1.03;
    font-weight: 500;
}

.qc-showcase__contact p {
    margin: 8px 0 14px;
    color: #4d4f56;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.2;
    font-weight: 500;
}

.qc-showcase__contact a {
    min-width: 236px;
    min-height: 58px;
    padding: 0 20px;
    background: #bb8a4d;
    border: 1px solid #bb8a4d;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 700;
}

.qc-showcase__contact a:hover {
    background: #a97a43;
    border-color: #a97a43;
}

@media (max-width: 1180px) {
    .qc-showcase__topbar {
        padding-inline: 18px;
        grid-template-columns: auto 1fr;
        row-gap: 14px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .qc-showcase__quote-btn {
        justify-self: end;
    }

    .qc-showcase__nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .qc-showcase__hero-content h1 {
        font-size: clamp(40px, 5.3vw, 58px);
    }

    .qc-showcase__cards {
        gap: 14px;
        padding: 16px 12px 14px;
    }

    .uiverse-card__content h2 {
        font-size: clamp(20px, 2.7vw, 26px);
    }

    .qc-showcase__contact h2 {
        font-size: clamp(36px, 3.4vw, 50px);
    }
}

@media (max-width: 860px) {
    .home-hero {
        padding: 0;
    }

    .qc-showcase {
        width: 100%;
    }

    .qc-showcase__topbar {
        padding-inline: 14px;
    }

    .qc-showcase__brand-mark {
        font-size: 34px;
    }

    .qc-showcase__hero {
        height: 100svh;
        min-height: 100svh;
    }

    .qc-showcase__hero img {
        object-position: 60% center;
    }

    .qc-showcase__hero-overlay {
        background: linear-gradient(180deg, rgba(30, 27, 23, 0.18) 0%, rgba(30, 27, 23, 0.28) 18%, rgba(30, 27, 23, 0.52) 58%, rgba(30, 27, 23, 0.3) 100%);
    }

    .qc-showcase__hero-content {
        left: 14px;
        right: 14px;
        width: auto;
        transform: translateY(-50%);
        max-width: 420px;
    }

    .qc-showcase__hero-content h1 {
        font-size: clamp(20px, 6vw, 30px);
        line-height: 1.04;
    }

    .qc-showcase__hero-content p {
        font-size: clamp(13px, 3.2vw, 15px);
        line-height: 1.35;
    }

    .qc-showcase__hero-content a {
        min-height: 34px;
        min-width: 110px;
        font-size: clamp(13px, 2.8vw, 14px);
    }

    .qc-showcase__cards {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 10px 12px;
    }

    .qc-showcase__card {
        border: 0;
    }

    .uiverse-card {
        height: 220px;
    }

    .uiverse-card__content {
        padding: 14px 12px;
        gap: 6px;
    }

    .uiverse-card__content h2 {
        font-size: 20px;
    }

    .uiverse-card__content p {
        font-size: 12px;
    }

    .uiverse-card__cta {
        width: 136px;
        height: 32px;
        padding: 0 8px;
        font-size: 11px;
    }

    .qc-showcase__contact {
        padding: 20px 12px 24px;
    }

    .qc-showcase__contact a {
        min-height: 50px;
        min-width: 190px;
    }
}

@media (max-width: 560px) {
    .qc-showcase__hero {
        height: 100svh;
        min-height: 100svh;
    }

    .qc-showcase__hero img {
        object-position: 64% center;
    }

    .qc-showcase__hero-overlay {
        background: linear-gradient(180deg, rgba(28, 25, 21, 0.14) 0%, rgba(28, 25, 21, 0.24) 18%, rgba(28, 25, 21, 0.48) 58%, rgba(28, 25, 21, 0.24) 100%);
    }

    .qc-showcase__hero-content {
        left: 50%;
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: min(340px, calc(100% - 20px));
        max-width: none;
        margin: 0;
        text-align: center;
    }

    .qc-showcase__hero-content h1 {
        font-size: clamp(22px, 7.6vw, 32px);
        line-height: 1.05;
    }

    .qc-showcase__hero-content p {
        margin-top: 12px;
        padding-top: 10px;
        font-size: 11px;
        letter-spacing: 0.06em;
        text-align: center;
    }

    .qc-showcase__hero-content a {
        margin-top: 16px;
        min-width: 142px;
        min-height: 44px;
        padding: 0 18px;
        font-size: 12px;
        letter-spacing: 0.08em;
        margin-left: auto;
        margin-right: auto;
    }

    .qc-showcase__cards {
        padding: 12px 10px 14px;
    }

    .uiverse-card {
        height: 236px;
        border-radius: 12px;
    }

    .uiverse-card__content {
        padding: 16px 14px;
    }
}
