/* Blog-Autor-Snippet unter der Lesedauer (Hero, dunkler Hintergrund) */
.ds-author {
    margin-top: 1.25rem;
}
.ds-author__link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: #fff;
}
.ds-author__img,
.ds-author img.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 52px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    background: #2B435D;
    transition: transform var(--ds-dur, 280ms) var(--ds-ease, ease), border-color var(--ds-dur, 280ms) ease;
}
.ds-author__text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.ds-author__eyebrow {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.ds-author__name {
    font-family: var(--ds-serif, Georgia, serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    transition: text-decoration-color var(--ds-dur, 280ms) ease;
}
.ds-author__role {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}
.ds-author__link:hover .ds-author__name,
.ds-author__link:focus-visible .ds-author__name {
    text-decoration-color: var(--ds-gold, #B69256);
}
.ds-author__link:hover .ds-author__img,
.ds-author__link:focus-visible .ds-author__img {
    border-color: var(--ds-gold, #B69256);
    transform: scale(1.04);
}
.ds-author__link:focus-visible {
    outline: 2px solid var(--ds-gold, #B69256);
    outline-offset: 4px;
}
