/* ── Use Case Shared ── */
.uc-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.2rem;
}

.uc-result {
    background: var(--hero-badge-bg);
    border: 1px solid var(--card-border-green);
    color: var(--green-text);
    padding: 0.3rem 0.9rem;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-mono);
    font-weight: 500;
}

/* ── CTA Hero ── */
.cta-hero {
    position: relative;
    overflow: hidden;
    background: var(--hero-bg);
    text-align: center;
    padding: 6rem 5%;
}
.cta-hero .hero-grid {
    mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 0%, transparent 100%);
}
.cta-hero .section-title { margin-bottom: 1rem; }
.cta-hero .section-sub { margin: 0 auto 2.5rem; }
.cta-hero .hero-actions { justify-content: center; }

/* ── Story-Layout ── */
.uc-story-section {
    padding: 5rem 5%;
    scroll-margin-top: 0rem;
}

.uc-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.uc-story.uc-reverse { direction: rtl; }
.uc-story.uc-reverse > * { direction: ltr; }

.uc-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 32px var(--shadow);
    position: relative;
}

.uc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.uc-img-wrap:hover img { transform: scale(1.04); }

.uc-story-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.uc-story-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-top: -0.4rem;
}

.uc-story-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.uc-story-text em {
    color: var(--text);
    font-style: normal;
    font-weight: 500;
}

.uc-story-body .hero-actions {
    align-self: flex-start;
}

@media (max-width: 900px) {
    .uc-story { grid-template-columns: 1fr; gap: 2.5rem; }
    .uc-story.uc-reverse { direction: ltr; }
    .uc-story-section { padding: 4rem 5%; }
}

@media (max-width: 600px) {
    .uc-story-body .hero-actions {
        align-self: stretch;
    }
}
