/* ==========================================================================
   ARL Beratung — Blog-Artikelseite (assets/css/pages/blog-artikel.css)
   --------------------------------------------------------------------------
   Ergänzt style.css (.article-prose, .quote-block, .blog-card) und
   blog.css (Karten-Grid). Farben nur über Tokens, Effekte dezent.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Artikel-Hero (dunkel) — Platz für das überlappende Hero-Bild
   -------------------------------------------------------------------------- */
.article-hero {
    padding-bottom: clamp(7rem, 12vw, 10rem);
}
.article-hero__inner {
    max-width: 52rem;
}
.article-hero__cat { margin-bottom: 1rem; }
.article-hero__title {
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    line-height: 1.18;
    margin-bottom: 1.4rem;
}

/* Breadcrumb */
.article-crumbs {
    margin-bottom: 1.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.article-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.article-crumbs a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.25s ease;
}
.article-crumbs a:hover { color: var(--brand-accent); }
.article-crumbs li { color: rgba(255, 255, 255, 0.45); }
.article-crumbs li + li::before {
    content: "/";
    margin-right: 0.35rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Meta-Zeile: Autor + Datum + Lesezeit */
.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}
.article-hero__meta i { color: var(--brand-accent); }
.article-hero__author {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}
.article-hero__author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.article-hero__author > i { font-size: 2rem; }
.article-hero__author span { display: flex; flex-direction: column; line-height: 1.25; }
.article-hero__author strong { color: #fff; }
.article-hero__author small { color: rgba(255, 255, 255, 0.55); font-size: 0.75rem; }
.article-hero__dot {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    flex: 0 0 auto;
}
@media (max-width: 575.98px) {
    .article-hero__dot { display: none; }
}

/* --------------------------------------------------------------------------
   Überlappendes Hero-Bild
   -------------------------------------------------------------------------- */
.article-media {
    margin-top: clamp(-8rem, -10vw, -5.5rem);
    position: relative;
    z-index: 2;
    aspect-ratio: 21 / 9;
}
.article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767.98px) {
    .article-media { aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   Artikel-Body-Umfeld
   -------------------------------------------------------------------------- */
.article-section { padding-top: clamp(2.6rem, 5vw, 4rem); }

/* Fuß: Tags + Teilen */
.article-foot {
    max-width: 46rem;
    margin: clamp(2.2rem, 4vw, 3rem) auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.6rem;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.article-share {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.article-share__label {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-right: 0.25rem;
}
.article-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: #fff;
    color: var(--ink-soft);
    font-size: 1rem;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.article-share__btn:hover {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}
.article-share__btn:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}
.article-share__feedback {
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand-primary);
}
.article-share__feedback[hidden] { display: none; }

/* --------------------------------------------------------------------------
   Autor-Box
   -------------------------------------------------------------------------- */
.author-box {
    max-width: 46rem;
    margin: clamp(2.2rem, 4vw, 3rem) auto 0;
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(1.4rem, 3vw, 2rem);
}
.author-box__img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}
.author-box__img--icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    color: #fff;
    font-size: 2.2rem;
}
.author-box__kicker {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.35rem;
}
.author-box__name {
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
}
.author-box__role {
    color: var(--ink-mute);
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
}
.author-box__bio {
    color: var(--ink-soft);
    font-size: 0.97rem;
    margin-bottom: 0.8rem;
}
@media (max-width: 575.98px) {
    .author-box { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   Verwandte Artikel
   -------------------------------------------------------------------------- */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.3rem, 2.4vw, 1.8rem);
}
@media (max-width: 991.98px) {
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767.98px) {
    .related-grid { grid-template-columns: 1fr; }
}
