/* =================================================================
   LDN COMPONENT: Hero Section
   ================================================================= */

.ldn-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--text-primary);
}

.ldn-hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ldn-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.ldn-hero:hover .ldn-hero-image img {
    transform: scale(1.03);
}

/* Gradient overlay — bottom-heavy for text readability */
.ldn-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.40) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.ldn-hero-content {
    position: relative;
    z-index: 3;
    padding: var(--space-8) var(--gutter) var(--space-7);
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.ldn-hero-content .ldn-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-inverse);
    margin-bottom: var(--space-4);
}

.ldn-hero-content h1 {
    color: var(--text-inverse);
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
    max-width: 680px;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ldn-hero-excerpt {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-lg);
    line-height: var(--leading-normal);
    max-width: 560px;
    margin-bottom: var(--space-5);
}

.ldn-hero-meta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--text-sm);
}

.ldn-hero-meta .ldn-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .ldn-hero {
        min-height: 50vh;
    }

    .ldn-hero-content {
        padding: var(--space-6) var(--gutter) var(--space-5);
    }
}
