/**
 * Telefundraising - Custom Styles
 * Apple-inspired design with glassmorphism and smooth animations
 */

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    --tf-white: #FFFFFF;
    --tf-offwhite: #F5F5F7;
    --tf-black: #1D1D1F;
    --tf-gray-light: #86868B;
    --tf-gray-medium: #6E6E73;
    --tf-accent: #0071E3;

    --tf-radius-sm: 8px;
    --tf-radius-md: 12px;
    --tf-radius-lg: 20px;
    --tf-radius-xl: 28px;

    --tf-shadow-subtle: 0 1px 3px rgba(0,0,0,0.08);
    --tf-shadow-medium: 0 4px 12px rgba(0,0,0,0.1);
    --tf-shadow-large: 0 8px 30px rgba(0,0,0,0.12);
    --tf-shadow-glass: 0 8px 32px rgba(0,0,0,0.08);

    --tf-transition-fast: 0.15s ease;
    --tf-transition-normal: 0.3s ease;
    --tf-transition-slow: 0.5s ease;
}

/* ========================================
   Base Styles
   ======================================== */
html {
    scroll-behavior: smooth;
}

body,
.editor-styles-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    color: var(--tf-black);
    background-color: var(--tf-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
    line-height: 1.6;
}

/* Override TT5 Manrope font */
h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.wp-block-site-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600;
    letter-spacing: -0.02em;
}

p, li, a, span, div {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========================================
   Site Title in Header
   ======================================== */
.tf-site-title a {
    text-decoration: none;
    color: var(--tf-black);
    font-weight: 600;
}

.tf-site-title a:hover {
    opacity: 0.7;
}

/* ========================================
   Full-Width Sections
   ======================================== */
.tf-main {
    overflow-x: hidden;
    max-width: 100%;
}

/* Full-width background sections */
.tf-section.has-background,
.wp-block-group.tf-section.has-background,
.tf-hero.has-background,
.tf-footer.has-background {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: max(24px, calc((100vw - 1100px) / 2));
    padding-right: max(24px, calc((100vw - 1100px) / 2));
    box-sizing: border-box;
}

/* Sections without explicit background class */
.tf-section:not(.has-background) {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Hero section */
.tf-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Footer */
.tf-footer {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* ========================================
   Glassmorphism Header
   ======================================== */
.tf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--tf-transition-normal);
}

.tf-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--tf-shadow-subtle);
}

.tf-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tf-logo {
    display: flex;
    align-items: center;
    transition: opacity var(--tf-transition-fast);
}

.tf-logo figure {
    margin: 0;
    line-height: 0;
}

.tf-logo img {
    width: 140px;
    height: auto;
}

.tf-logo:hover {
    opacity: 0.7;
}

/* Op mobiel: kleiner maar volledig logo */
@media (max-width: 768px) {
    .tf-logo img {
        width: 100px;
    }

    .tf-header-inner {
        min-height: 60px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .tf-logo img {
        width: 80px;
    }
}

/* ========================================
   Navigation
   ======================================== */
.tf-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tf-nav a,
.tf-nav .wp-block-navigation-item__content {
    font-size: 14px;
    font-weight: 500;
    color: var(--tf-black);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--tf-radius-xl);
    transition: all var(--tf-transition-fast);
    position: relative;
}

.tf-nav a:hover,
.tf-nav .wp-block-navigation-item__content:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--tf-black);
}

.tf-nav a.active,
.tf-nav .current-menu-item .wp-block-navigation-item__content {
    background: rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

/* Onderstreep animatie bij hover */
.tf-nav a::after,
.tf-nav .wp-block-navigation-item__content::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--tf-accent);
    transform: scaleX(0);
    transition: transform var(--tf-transition-fast);
    border-radius: 1px;
}

.tf-nav a:hover::after,
.tf-nav .wp-block-navigation-item__content:hover::after {
    transform: scaleX(1);
}

/* Mobile Navigation Toggle */
.tf-nav-toggle {
    display: none;
    width: 20px;
    height: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.tf-nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--tf-black);
    transition: all var(--tf-transition-fast);
}

@media (max-width: 768px) {
    .tf-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .tf-nav.open {
        display: flex;
    }

    .tf-nav-toggle {
        display: flex;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.tf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--tf-white) 0%, var(--tf-offwhite) 100%);
}

.tf-hero-content {
    max-width: 800px;
    text-align: center;
}

.tf-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--tf-black);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.tf-hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--tf-gray-medium);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.tf-hero-date {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--tf-accent);
    background: rgba(0, 113, 227, 0.1);
    padding: 8px 16px;
    border-radius: var(--tf-radius-xl);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

/* ========================================
   Content Sections
   ======================================== */
.tf-section {
    padding: 100px 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.tf-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.tf-section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.tf-section--offwhite {
    background-color: var(--tf-offwhite);
}

.tf-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--tf-black);
    margin-bottom: 32px;
}

.tf-section p {
    font-size: 1.125rem;
    color: var(--tf-gray-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.tf-section p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Cards
   ======================================== */
.tf-card {
    background: var(--tf-white);
    border-radius: var(--tf-radius-lg);
    padding: 40px;
    box-shadow: var(--tf-shadow-medium);
    transition: all var(--tf-transition-normal);
}

.tf-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tf-shadow-large);
}

.tf-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ========================================
   Timeline (for Achtergrond page)
   ======================================== */
.tf-timeline {
    position: relative;
    padding-left: 40px;
}

.tf-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--tf-accent) 0%, rgba(0,113,227,0.2) 100%);
}

.tf-timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.tf-timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--tf-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0,113,227,0.2);
}

.tf-timeline-year {
    font-size: 14px;
    font-weight: 600;
    color: var(--tf-accent);
    margin-bottom: 8px;
}

.tf-timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tf-black);
    margin-bottom: 12px;
}

.tf-timeline-content p {
    font-size: 1rem;
    color: var(--tf-gray-medium);
    line-height: 1.7;
}

/* ========================================
   Team Section
   ======================================== */
.tf-team {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.tf-team-member {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: var(--tf-white);
    border-radius: var(--tf-radius-xl);
    font-size: 15px;
    font-weight: 500;
    color: var(--tf-black);
    box-shadow: var(--tf-shadow-subtle);
    transition: all var(--tf-transition-fast);
}

.tf-team-member:hover {
    box-shadow: var(--tf-shadow-medium);
    transform: translateY(-2px);
}

/* ========================================
   Footer
   ======================================== */
.tf-footer {
    background: var(--tf-offwhite);
    padding: 60px 24px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tf-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tf-footer-logo {
    height: 24px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.tf-footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tf-footer-nav a {
    font-size: 14px;
    color: var(--tf-gray-medium);
    text-decoration: none;
    transition: color var(--tf-transition-fast);
}

.tf-footer-nav a:hover {
    color: var(--tf-black);
}

.tf-footer-copyright {
    font-size: 13px;
    color: var(--tf-gray-light);
}

/* ========================================
   Buttons
   ======================================== */
.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--tf-radius-xl);
    transition: all var(--tf-transition-fast);
    cursor: pointer;
    border: none;
}

.tf-btn-primary {
    background: var(--tf-black);
    color: var(--tf-white);
}

.tf-btn-primary:hover {
    background: var(--tf-gray-medium);
}

.tf-btn-secondary {
    background: transparent;
    color: var(--tf-accent);
    padding: 14px 0;
}

.tf-btn-secondary:hover {
    text-decoration: underline;
}

.tf-btn-secondary::after {
    content: ' →';
    transition: transform var(--tf-transition-fast);
}

.tf-btn-secondary:hover::after {
    transform: translateX(4px);
}

/* ========================================
   Highlight Text
   ======================================== */
.tf-highlight {
    color: var(--tf-black);
    font-weight: 600;
}

.tf-accent-text {
    color: var(--tf-accent);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.tf-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tf-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.tf-animate-delay-1 {
    transition-delay: 0.1s;
}

.tf-animate-delay-2 {
    transition-delay: 0.2s;
}

.tf-animate-delay-3 {
    transition-delay: 0.3s;
}

/* ========================================
   Utility Classes
   ======================================== */
.tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.tf-text-center {
    text-align: center;
}

.tf-mt-header {
    margin-top: 60px;
    padding-top: 0;
}

/* Verwijder extra padding van TT5 */
.tf-main .wp-block-group {
    padding-top: 0;
}

/* ========================================
   WordPress Block Overrides
   ======================================== */
.wp-block-group {
    margin-bottom: 0;
}

.wp-block-separator {
    border-color: rgba(0, 0, 0, 0.08);
    margin: 60px 0;
}

.wp-block-quote {
    border-left: 3px solid var(--tf-accent);
    padding-left: 24px;
    margin: 32px 0;
}

.wp-block-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--tf-gray-medium);
}

/* ========================================
   Responsive Improvements
   ======================================== */
@media (max-width: 1024px) {
    .tf-section {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .tf-hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .tf-section {
        padding: 60px 16px;
    }

    .tf-mt-header {
        margin-top: 60px;
        padding-top: 0;
    }

    .tf-header-inner {
        padding: 10px 16px;
        min-height: 60px;
    }

    .tf-logo {
        width: 140px;
    }

    /* Stack columns on mobile */
    .wp-block-columns {
        flex-direction: column;
    }

    .wp-block-column {
        margin-bottom: 16px;
    }

    .wp-block-column:last-child {
        margin-bottom: 0;
    }

    /* Adjust card padding on mobile */
    .tf-card {
        padding: 24px 20px;
    }

    /* Footer adjustments */
    .tf-footer {
        padding: 40px 16px 32px;
    }
}

@media (max-width: 480px) {
    .tf-hero h1 {
        font-size: 2rem;
    }

    .tf-section h2 {
        font-size: 1.5rem;
    }

    .wp-block-button__link {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========================================
   Accessibility Improvements
   ======================================== */
/* Focus states */
a:focus,
button:focus,
.wp-block-button__link:focus {
    outline: 2px solid var(--tf-accent);
    outline-offset: 2px;
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--tf-black);
    color: var(--tf-white);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Ensure sufficient color contrast */
.tf-card p,
.tf-section p {
    color: #515154; /* Slightly darker for better contrast */
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tf-card {
        border: 2px solid var(--tf-black);
    }

    .tf-header {
        border-bottom: 2px solid var(--tf-black);
    }
}

/* ========================================
   SVG Icon Styles
   ======================================== */
.tf-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: block;
    color: var(--tf-accent);
    transition: all 0.3s ease;
}

.tf-icon-sm {
    width: 32px;
    height: 32px;
}

.tf-icon-lg {
    width: 72px;
    height: 72px;
}

.tf-icon-xl {
    width: 96px;
    height: 96px;
}

/* Icon kleuren */
.tf-icon-black {
    color: var(--tf-black);
}

.tf-icon-accent {
    color: var(--tf-accent);
}

.tf-icon-gray {
    color: var(--tf-gray-medium);
}

/* Icon hover effecten */
.tf-card:hover .tf-icon,
.tf-feature:hover .tf-icon {
    transform: scale(1.08);
    color: var(--tf-accent);
}

/* Feature blokken met iconen */
.tf-feature {
    text-align: center;
    padding: 40px 24px;
    background: var(--tf-white);
    border-radius: var(--tf-radius-lg);
    transition: all 0.3s ease;
}

.tf-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--tf-shadow-large);
}

.tf-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--tf-black);
}

.tf-feature p {
    font-size: 0.95rem;
    color: var(--tf-gray-medium);
    line-height: 1.6;
}

/* Stats/cijfers sectie */
.tf-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 24px;
}

.tf-stat {
    text-align: center;
}

.tf-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--tf-black);
    line-height: 1;
    letter-spacing: -0.03em;
}

.tf-stat-label {
    font-size: 0.95rem;
    color: var(--tf-gray-medium);
    margin-top: 8px;
}

/* Icon grid layout */
.tf-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    padding: 40px 0;
}

/* Inline icon naast tekst */
.tf-inline-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--tf-accent);
}

/* Check lijst met iconen */
.tf-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tf-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tf-checklist li:last-child {
    border-bottom: none;
}

.tf-checklist-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--tf-accent);
}

/* Highlight box */
.tf-highlight-box {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(0, 113, 227, 0.03) 100%);
    border-left: 4px solid var(--tf-accent);
    padding: 24px 32px;
    border-radius: 0 var(--tf-radius-md) var(--tf-radius-md) 0;
    margin: 32px 0;
}

.tf-highlight-box p {
    margin: 0;
    color: var(--tf-black);
}

/* Quote styling */
.tf-quote {
    position: relative;
    padding: 40px 48px;
    background: var(--tf-offwhite);
    border-radius: var(--tf-radius-lg);
    margin: 40px 0;
}

.tf-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 4rem;
    color: var(--tf-accent);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
}

.tf-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--tf-gray-medium);
    margin-bottom: 16px;
}

.tf-quote-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tf-black);
}

.tf-quote-role {
    font-size: 0.85rem;
    color: var(--tf-gray-light);
}

/* ========================================
   Button Improvements - Sterkere CTA
   ======================================== */
.wp-block-button__link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 16px 32px !important;
    border-radius: var(--tf-radius-xl) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Primary button (filled) */
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
    background: var(--tf-black) !important;
    color: var(--tf-white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    background: var(--tf-accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.35);
}

/* Outline button */
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: var(--tf-black) !important;
    border: 2px solid var(--tf-black) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--tf-black) !important;
    color: var(--tf-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Accent button variant */
.wp-block-button.has-accent-background .wp-block-button__link,
.wp-block-button .wp-block-button__link.has-accent-1-background-color {
    background: var(--tf-accent) !important;
    color: var(--tf-white) !important;
}

.wp-block-button.has-accent-background .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link.has-accent-1-background-color:hover {
    background: #005bb5 !important;
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.4);
}

/* Button active state */
.wp-block-button__link:active {
    transform: translateY(0) scale(0.98);
}

/* ========================================
   Card Hover Effects
   ======================================== */
.tf-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .tf-header,
    .tf-footer {
        display: none;
    }

    .tf-section {
        padding: 40px 0;
    }

    .tf-card {
        break-inside: avoid;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}
