/* ==========================================================================
   Fekete Dáma — hero.css
   Split 60/40 hero — content left, image right. Mobile: image top, content below.
   Inset gold corner frame (1px top + 1px left, top-left corner).
   NOT full-bleed cinematic (that was Piros Ász).
   ========================================================================== */

.fd-hero {
    position: relative;
    background: var(--c-bg);
    overflow: hidden;
}

.fd-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 70vh;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
}
@media (min-width: 900px) {
    .fd-hero__grid {
        grid-template-columns: 60% 40%;
        min-height: 88vh;
    }
}

.fd-hero--small .fd-hero__grid {
    min-height: 44vh;
}
@media (max-width: 899px) {
    .fd-hero--small .fd-hero__grid { min-height: 36vh; }
}

/* Content column — inset gold corner frame */
.fd-hero__content {
    padding: var(--s-48) var(--s-24);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    order: 2;
}
@media (min-width: 900px) {
    .fd-hero__content {
        padding: var(--s-64) var(--s-64) var(--s-64) var(--s-48);
        order: 1;
    }
    /* Inset gold corner — 1px top + 1px left forming frame */
    .fd-hero__content::before {
        content: '';
        position: absolute;
        top: var(--s-24);
        left: var(--s-24);
        width: 80px;
        height: 80px;
        border-top: 1px solid var(--c-accent);
        border-left: 1px solid var(--c-accent);
        pointer-events: none;
    }
}

.fd-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--c-accent);
    margin-bottom: var(--s-16);
}
.fd-hero__title {
    margin-bottom: var(--s-24);
    max-width: 680px;
}
.fd-hero__lead {
    color: var(--c-text-dim);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: var(--s-32);
}

.fd-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-12);
    margin-bottom: var(--s-24);
}

/* Badges under content */
.fd-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-8);
    margin-top: var(--s-24);
}

/* Image column — soft bottom fade, not L→R gradient */
.fd-hero__media {
    position: relative;
    order: 1;
    min-height: 300px;
    overflow: hidden;
}
@media (min-width: 900px) {
    .fd-hero__media { order: 2; min-height: 0; }
}
.fd-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    display: block;
}
@media (min-width: 900px) {
    .fd-hero__media img { min-height: 88vh; }
    .fd-hero--small .fd-hero__media img { min-height: 44vh; }
}
.fd-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 16, 19, 0.4) 100%);
    pointer-events: none;
}

/* Use selector `.fd-hero a:not(.fd-btn)` for dark-bg link contrast */
.fd-hero a:not(.fd-btn) {
    color: var(--c-accent);
    border-bottom: 1px solid currentColor;
}
.fd-hero a:not(.fd-btn):hover { color: var(--c-accent-hover); }
