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

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

.base-content-text-teaser {
    font-size: var(--font-size-base);
    color: var(--color-primary-hover);
    line-height: 1.45;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.base-live-stats-value {
    font-size: clamp(2.2rem, 3.4vw, 3.5rem);
    line-height: 1.1;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: -0.02em;
    color: var(--color-secondary);
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.base-live-stats-label {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    line-height: var(--line-height-tight);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.02em;
    color: var(--color-primary-hover);
    margin-top: 0;
    margin-bottom: 0;
}

.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-info-text-with-top-gap {
    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-top: 10px;
    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;
}

.base-image-full-width {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.base-shop-logo-image {
    display: block;
    width: 120px;
    height: 48px;
    max-width: 120px;
    max-height: 48px;
    object-fit: contain;
    object-position: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
    transform: scale(1);
    filter: none;
}

.base-shop-logo-image:hover {
    transform: scale(1.02);
    filter: none;
}

@media (max-width: 575px) {
    .base-shop-logo-image {
        width: 104px;
        height: 42px;
        max-width: 104px;
        max-height: 42px;
    }
}

/* 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;
    }
}