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

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

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

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

.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-cta-desc-text-left {
    text-align: left;
    margin-inline: 0;
}

.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 var(--color-gold-text-shadow);
}

.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;
    }
}

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

.base-definition-list {
    margin: 0;
}

.base-definition-term {
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0.75rem 0 0.25rem;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
}

.base-definition-desc {
    margin: 0 0 1rem;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text-muted);
}

.base-section-blogpost-svg {
    padding: 2rem 0;
}

.base-blogpost-table-of-contents-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 011-ui-html.mdc Regel 021: eine CSS-Klasse pro Element – kombinierte TOC-Listen-Typografie */
.base-blogpost-table-of-contents-list-content-text {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.base-blogpost-table-of-contents-item {
    margin: 0 0 0.5rem 0;
}

.base-blogpost-table-of-contents-link {
    color: var(--color-text);
    text-decoration: none;
}

.base-blogpost-table-of-contents-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.base-blogpost-svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 011-ui-mobile 008.009: Blog-Bilder und SVGs skalieren innerhalb des Content-Bereichs */
.base-blogpost-media {
    display: block;
    max-width: 100%;
    height: auto;
}