/* =========================================
   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-content-list {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
    list-style-position: outside;
}

.base-content-list-item {
    margin-bottom: 0.5rem;
}

.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-info-message {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-highlight);
    border-left: 4px solid var(--color-primary);
    border-radius: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* 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(251, 191, 36, 0.35);
}

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