/* LoH Info-Seiten (Horadric Cube, War Plans) — shared layout */
.loh-page {
    max-width: 1024px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 3rem;
    color: var(--text-primary, #e0ddd5);
}

.loh-page__breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-dimmed, #7a7870);
    margin-bottom: 1.5rem;
}
.loh-page__breadcrumbs a { color: inherit; text-decoration: none; }
.loh-page__breadcrumbs a:hover { color: #c4a24e; }
.loh-page__breadcrumb-sep { color: #3a3830; margin: 0 0.35rem; }

.loh-page__hero {
    text-align: center;
    padding: 1.5rem 0 1rem;
    position: relative;
}
.loh-page__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #d40b06, #7a0704);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 16px rgba(212, 11, 6, 0.3);
}
.loh-page__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 0.5rem;
    color: #c4a24e;
}
.loh-page__subtitle {
    font-size: 1.05rem;
    color: var(--text-dimmed, #9a9890);
    max-width: 640px;
    margin: 0 auto;
}

.loh-page__hero-img {
    margin: 2rem 0 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
/* CLS: hero images are 16:9 (1920x1080). aspect-ratio reserves the box height
   before decode (belt-and-suspenders to the width/height attributes on the imgs). */
.loh-page__hero-img img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }

.loh-page__section { margin-bottom: 2.5rem; }
.loh-page__section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #c4a24e;
    margin: 0 0 0.75rem;
}
.loh-page__section p {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.loh-page__section--with-image {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: center;
}
.loh-page__inline-img {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.loh-page__inline-img img { width: 100%; display: block; }

.loh-page__features { margin: 2.5rem 0 3rem; }
.loh-page__features h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #c4a24e;
    text-align: center;
    margin-bottom: 1.5rem;
}
.loh-page__features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.loh-page__feature {
    background: var(--bg-panel, rgba(0,0,0,0.25));
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}
.loh-page__feature:hover {
    transform: translateY(-3px);
    border-color: #c4a24e;
}
.loh-page__feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.loh-page__feature h3 {
    font-size: 1.05rem;
    color: #c4a24e;
    margin: 0 0 0.5rem;
}
.loh-page__feature p {
    font-size: 0.9rem;
    color: var(--text-dimmed, #b0aea6);
    line-height: 1.5;
    margin: 0;
}

.loh-page__cta {
    background: linear-gradient(160deg, rgba(196,162,78,0.08), rgba(196,162,78,0.02));
    border: 1px solid rgba(196,162,78,0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0 1.5rem;
}
.loh-page__cta h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #c4a24e;
    margin: 0 0 0.5rem;
}
.loh-page__cta p {
    color: var(--text-dimmed, #b0aea6);
    margin-bottom: 1.25rem;
}
.loh-page__cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.loh-page__coming-soon {
    background: rgba(212, 11, 6, 0.05);
    border-left: 3px solid #d40b06;
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    margin-top: 2rem;
}
.loh-page__coming-soon strong { color: #ff6b6b; display: block; margin-bottom: 0.25rem; }
.loh-page__coming-soon p { margin: 0; color: var(--text-dimmed, #b0aea6); font-size: 0.9rem; }

@media (max-width: 720px) {
    .loh-page__features-grid { grid-template-columns: 1fr; }
    .loh-page__section--with-image { grid-template-columns: 1fr; }
}
