/* Änderungsprotokoll: 2026-06-06 | cursor-agent | @skill-css-rules, @skill-change-provenance | Blogpost-Widget-Styles entfernt (Blog-Feature nicht benötigt) */

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

.base-content-text {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: var(--line-height-relaxed);
}

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

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

/* Änderungsprotokoll: 2026-06-18 | parent-agent | @skill-css-rules, @skill-change-provenance | CTA-Beschreibung volle Breite der CTA-Box */
.base-cta-desc-full-width {
    max-width: 100%;
    width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
}

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

/* Änderungsprotokoll: 2026-08-15 | parent-agent | @skill-css-rules, @skill-change-provenance | Hochwertige Info-Box fuer Screen-Leads */
.base-info-box {
    margin: 0 0 1.5rem;
    padding: 1.05rem 1.2rem 1.1rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--color-primary-wash-border);
    border-left: 4px solid var(--color-primary);
    background: linear-gradient(
        180deg,
        var(--color-primary-wash) 0%,
        var(--color-surface) 88%
    );
}

/* Änderungsprotokoll: 2026-08-15 | parent-agent | @skill-css-rules, @skill-change-provenance | Info-Box Fliesstext klar lesbar */
.base-info-box-text {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    letter-spacing: 0.005em;
    color: var(--color-text);
    text-wrap: pretty;
}

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

/* Änderungsprotokoll: 2026-07-17 | parent-agent | @skill-css-rules, @skill-change-provenance | Einfache Text-Hervorhebung statt Gold-Gradient */
.base-highlight-gold {
    display: inline;
    position: relative;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: inherit;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    text-decoration: underline;
}

.base-highlight-gold:hover {
    color: var(--color-primary-hover);
}

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

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

@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);
}

/* Änderungsprotokoll: 2026-06-27 | parent-agent | @skill-css-rules, @skill-change-provenance | Definition-List Grid fuer hochwertige Label-Wert-Darstellung */
.base-definition-list {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0.875rem;
}

@media (min-width: 600px) {
    .base-definition-list {
        grid-template-columns: minmax(8.5rem, 11rem) 1fr;
        column-gap: 1.5rem;
        row-gap: 0.875rem;
        align-items: baseline;
    }
}

/* Änderungsprotokoll: 2026-08-15 | parent-agent | @skill-css-rules, @skill-change-provenance | Definition-List Inline: drei Filter-Paare in einer Zeile volle Breite */
.base-definition-list-inline {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 600px) {
    .base-definition-list-inline {
        grid-template-columns: max-content minmax(0, 1fr) max-content minmax(0, 1fr) max-content minmax(0, 1fr);
        column-gap: 1.25rem;
        row-gap: 0.5rem;
        align-items: baseline;
    }
}

.base-definition-term {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.base-definition-desc {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    color: var(--color-text);
}