/* Klenoty z oceli: příběhový banner na titulní stránku. */
.kzo-story,
.kzo-story * {
    box-sizing: border-box;
}

.kzo-story {
    --kzo-story-wine: #83102f;
    --kzo-story-wine-dark: #640b23;
    --kzo-story-ink: #251c1f;
    display: grid;
    width: calc(100% - 40px);
    max-width: 1358px;
    min-height: 390px;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
    margin: 54px auto;
    overflow: hidden;
    border-radius: 22px;
    background: #f6f1ef;
    color: var(--kzo-story-ink);
    font-family: Roboto, Arial, sans-serif;
}

.kzo-story__content {
    align-self: center;
    max-width: 720px;
    padding: clamp(42px, 5vw, 72px);
}

.kzo-story__eyebrow {
    margin: 0 0 10px;
    color: var(--kzo-story-wine);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.kzo-story h2 {
    margin: 0 0 22px;
    color: var(--kzo-story-wine-dark);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.kzo-story__content > p:not(.kzo-story__eyebrow) {
    max-width: 620px;
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 1.58;
}

.kzo-story__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    color: var(--kzo-story-wine) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
}

.kzo-story__link span {
    transition: transform 180ms ease;
}

.kzo-story__link:hover span,
.kzo-story__link:focus-visible span {
    transform: translateX(4px);
}

.kzo-story__signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.kzo-story__signature img {
    width: 62px;
    height: 62px;
    border: 3px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 18px rgba(75, 33, 47, .12);
}

.kzo-story__signature p {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.35;
}

.kzo-story__signature strong {
    font-size: 15px;
}

.kzo-story__signature span {
    color: #75696d;
    font-size: 13px;
}

.kzo-story__visual {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.kzo-story__visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 26%;
    background: linear-gradient(90deg, #f6f1ef 0%, rgba(246, 241, 239, 0) 100%);
}

.kzo-story__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.kzo-story__spark {
    position: absolute;
    z-index: 3;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(71, 28, 42, .24);
}

.kzo-story__spark--one {
    top: 16%;
    right: 13%;
    font-size: 30px;
}

.kzo-story__spark--two {
    right: 34%;
    bottom: 17%;
    font-size: 18px;
}

@media (max-width: 900px) {
    .kzo-story {
        grid-template-columns: 1fr;
    }

    .kzo-story__visual {
        min-height: 310px;
        grid-row: 1;
    }

    .kzo-story__visual::before {
        inset: auto 0 0;
        width: 100%;
        height: 28%;
        background: linear-gradient(0deg, #f6f1ef 0%, rgba(246, 241, 239, 0) 100%);
    }
}

@media (max-width: 600px) {
    .kzo-story {
        width: calc(100% - 24px);
        margin: 32px auto;
        border-radius: 16px;
    }

    .kzo-story__content {
        padding: 30px 24px 34px;
    }

    .kzo-story__visual {
        min-height: 235px;
    }

    .kzo-story__content > p:not(.kzo-story__eyebrow) {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .kzo-story__link span {
        transition: none;
    }
}
