/* =========================================
   TEXT CONTENT WIDGETS
   ========================================= */

.base-content-text {
    font-size: var(--font-size-base);
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.base-content-text-large {
    font-size: var(--font-size-lg);
    color: var(--color-text);
    margin-bottom: 2rem;
}

.base-content-text-small {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/** Kleiner, dezenter Hinweis direkt unter KI-erstellten Bildern (sehr kleine Schrift, zurückhaltende Farbe). */
.base-image-ai-disclaimer {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.base-info-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.base-cta-desc {
    max-width: 600px;
    margin-inline: auto;
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.base-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.base-intro-text {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    line-height: var(--line-height-normal);
}

.base-content-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.base-content-footer-update {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

/* 011-ui-html.mdc Rule 006 Hover Effect requirement */
.base-highlight-gold {
    display: inline-block;
    position: relative;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-position;
    background-size: 200% auto;
    font-weight: var(--font-weight-bold);
}

.base-highlight-gold:hover {
    background-position: right center;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.base-highlight-gold::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.base-highlight-gold:hover::after {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .base-highlight-gold {
        transition: none;
    }

    .base-highlight-gold:hover {
        background-position: left center;
        text-shadow: none;
    }

    .base-highlight-gold::after {
        display: none;
    }
}

/* KSTA-Stil: Meistgelesen-Liste in Sidebar */
.base-most-read-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.base-most-read-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-family-primary);
}

.base-most-read-item:last-child {
    border-bottom: none;
}

/* Ort des Geschehens / Detail-Box: Label-Wert-Zeilen mit Rahmen und Farben */
.base-detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.base-detail-row:last-child {
    margin-bottom: 0;
}

.base-detail-row-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.base-detail-row-value {
    font-size: var(--font-size-base);
    color: var(--color-text);
}