/* ==========================================================================
   Homepage
   ========================================================================== */

/* --- Hero Section --- */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 600px;
    overflow: hidden;
    background: var(--color-bg-dark);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: var(--space-10);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 60%);
}

.hero__content {
    max-width: 700px;
}

.hero__category {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--color-bg);
    color: var(--color-text);
    border-radius: var(--radius-sm);
}

.hero__title {
    font-size: var(--text-5xl);
    color: var(--color-text-inverse);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.hero__title a {
    color: inherit;
}

.hero__title a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.hero__excerpt {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    max-width: 600px;
}

.hero__meta {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* --- Category Showcase Section --- */
.category-showcase {
    padding: var(--space-16) 0;
}

.category-showcase__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 2px solid var(--color-accent);
}

.category-showcase__title {
    font-size: var(--text-2xl);
    margin-bottom: 0;
}

/* --- About / Intro Section --- */
.about-intro {
    padding: var(--space-20) 0;
    text-align: center;
    background: var(--color-bg-alt);
}

.about-intro__title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.about-intro__text {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}
