/* ============================================================
   ÉCOLE SAINT JEAN-BAPTISTE — NETHEN
   Design: Organic Natural · Forest Green · Warm & Welcoming
   ============================================================ */

:root {
    --forest-deep: #1e3d2b;
    --forest-mid: #2d5a3d;
    --forest-bright: #4a7c59;
    --forest-light: #7aad8a;
    --forest-pale: #a8d5b5;
    --forest-mist: #d4ead9;
    --forest-whisper: #f0f7f2;

    --earth-dark: #5c3d1e;
    --earth-mid: #8B6914;
    --earth-warm: #c4a35a;
    --earth-light: #e8d5a3;

    --sky-blue: #7ba7bc;
    --cream: #faf8f3;
    --white: #ffffff;
    --text-dark: #2a3520;
    --text-mid: #4a5e40;
    --text-light: #7a8f70;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', Helvetica, sans-serif;

    --shadow-soft: 0 4px 24px rgba(30, 61, 43, 0.12);
    --shadow-card: 0 8px 40px rgba(30, 61, 43, 0.15);
    --shadow-hover: 0 16px 56px rgba(30, 61, 43, 0.22);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.8s; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-bright);
    background: var(--forest-whisper);
    border: 1.5px solid var(--forest-pale);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 124, 89, 0.15);
    transition: box-shadow 0.8s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(30,61,43,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--forest-deep);
    line-height: 1.1;
}

.logo-location {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-bright);
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: all 0.8s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--forest-deep);
    background: var(--forest-whisper);
}

.nav-link-special {
    background: var(--forest-bright) !important;
    color: white !important;
    border-radius: 100px;
    padding: 8px 18px;
}

.nav-link-special:hover {
    background: var(--forest-deep) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(74,124,89,0.4);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    background: white;
    border: 1px solid var(--forest-mist);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 8px;
    min-width: 200px;
    list-style: none;
    z-index: 100;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: all 2.8s;
}

.dropdown-menu li a:hover {
    background: var(--forest-whisper);
    color: var(--forest-deep);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest-deep);
    border-radius: 2px;
    transition: all 0.8s;
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest-mid) 40%, var(--forest-bright) 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(168,213,181,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(122,173,138,0.12) 0%, transparent 50%);
    z-index: 1;
}

.hero-leaves {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text { color: white; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.9);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title em {
    font-style: italic;
    color: var(--earth-light);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--earth-warm);
    color: var(--forest-deep);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.8s;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    background: var(--earth-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,163,90,0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.8s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-illustration { display: flex; align-items: center; justify-content: center; }

/* ---- Section Générique ---- */
section { padding: 5rem 2rem; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0.8rem auto 0; }

/* ---- Cards ---- */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s;
    border: 1px solid var(--forest-mist);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--forest-whisper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.card h3 { margin-bottom: 0.7rem; color: var(--forest-deep); }
.card p { color: var(--text-light); font-size: 0.95rem; }

/* ---- MOT DU DIRECTEUR ---- */
.directeur-section {
    background: var(--forest-whisper);
    position: relative;
    overflow: hidden;
}

.directeur-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(60% 100% at 50% 0%);
}

.directeur-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid var(--forest-mist);
}

.directeur-card::before {
    content: '❝';
    position: absolute;
    top: -24px;
    left: 40px;
    font-size: 5rem;
    line-height: 1;
    color: var(--forest-pale);
    font-family: var(--font-display);
}

.directeur-text {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.directeur-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signature-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-bright), var(--forest-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.signature-info strong {
    display: block;
    color: var(--forest-deep);
    font-weight: 700;
}

.signature-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ---- Valeurs / Features Grid ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* ---- Pédagogie highlight ---- */
.pedagogie-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pedagogie-content .section-tag { margin-bottom: 1rem; }
.pedagogie-content h2 { margin-bottom: 1rem; color: var(--forest-deep); }
.pedagogie-content p { color: var(--text-light); margin-bottom: 1.5rem; }

.pedagogie-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

/* ---- Nature Pillars ---- */
.nature-section {
    background: var(--forest-deep);
    color: white;
    position: relative;
    overflow: hidden;
}

.nature-section::before,
.nature-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 60px;
}

.nature-section::before {
    top: -1px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 0%);
}

.nature-section::after {
    bottom: -1px;
    background: var(--forest-whisper);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.nature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.nature-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.8s;
}

.nature-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.nature-emoji { font-size: 3rem; margin-bottom: 1rem; }
.nature-card h3 { color: var(--earth-light); margin-bottom: 0.7rem; font-size: 1.3rem; }
.nature-card p { color: rgba(255,255,255,0.75); font-size: 0.93rem; }

/* ---- Actualités ---- */
.actu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.actu-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--forest-mist);
    transition: all 0.35s;
}

.actu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.actu-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--forest-whisper);
    color: var(--forest-bright);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 0.8rem;
}

.actu-img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--forest-mist), var(--earth-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.actu-body { padding: 1.5rem; }
.actu-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--forest-deep); }
.actu-body p { font-size: 0.9rem; color: var(--text-light); }
.actu-date { font-size: 0.8rem; color: var(--text-light); margin-top: 0.8rem; }

/* ---- Infos Pratiques ---- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--forest-mist);
    box-shadow: var(--shadow-soft);
}

.info-card h3 {
    color: var(--forest-deep);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--forest-mist);
    font-size: 0.9rem;
}

.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-light); }
.info-value { font-weight: 600; color: var(--text-dark); }

/* ---- Schooltool ---- */
.schooltool-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    padding: 10rem 2rem 5rem;
    text-align: center;
    color: white;
}

.schooltool-logo-area {
    max-width: 600px;
    margin: 0 auto;
}

.schooltool-logo-area h1 { color: white; margin-bottom: 1rem; }
.schooltool-logo-area p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.1rem; }

.schooltool-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

/* ---- Page Hero (pages internes) ---- */
.page-hero {
    padding: 9rem 2rem 4rem;
    background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest-mid) 70%, var(--forest-bright) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero h1 { color: white; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 1rem auto 0; }

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--forest-deep);
    color: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.contact-info-card h2 { color: white; margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong { display: block; color: var(--earth-light); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.contact-detail a { color: var(--forest-pale); }

.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--forest-mist);
}

.contact-form-card h2 { margin-bottom: 2rem; color: var(--forest-deep); }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-mid);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--forest-mist);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.8s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest-bright);
    background: white;
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
    width: 100%;
    background: var(--forest-bright);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.8s;
    letter-spacing: 0.03em;
}

.btn-submit:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74,124,89,0.35);
}

/* ---- Association parents ---- */
.parents-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ---- Map embed ---- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-top: 3rem;
    height: 350px;
    background: var(--forest-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ---- Backgrounds ---- */
.bg-cream { background: var(--cream); }
.bg-white { background: white; }
.bg-green-whisper { background: var(--forest-whisper); }

/* ---- Footer ---- */
.footer {
    background: var(--forest-mid);
    color: white;
    position: relative;
}

.footer-bg {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.footer-bg svg { display: block; }

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--forest-pale);
    margin-bottom: 0.8rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.footer h4 {
    color: var(--earth-light);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color 0.8s; }
.footer-links a:hover { color: var(--forest-pale); }

.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.7rem; }
.footer-contact a { color: var(--forest-pale); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-illustration { display: none; }
    .hero-cta { justify-content: center; }
    .pedagogie-split { grid-template-columns: 1fr; }
    .nature-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.3rem;
        box-shadow: var(--shadow-card);
        border-top: 1px solid var(--forest-mist);
    }

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

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--forest-whisper);
        display: none;
    }

    .dropdown.open .dropdown-menu { display: block; }

    section { padding: 3.5rem 1.2rem; }

    .directeur-card { padding: 2.5rem 1.8rem; }
}

/* ---- Flash messages ---- */
.flash {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeUp 0.4s ease;
}
.flash-success {
    background: #d4f0dd;
    color: #1e5c36;
    border: 1px solid #a8d5b5;
}
.flash-error {
    background: #fde8e8;
    color: #8b2020;
    border: 1px solid #f5c0c0;
}
.flash-info {
    background: #e0eef8;
    color: #1a4a6e;
    border: 1px solid #b0d0e8;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.green-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--forest-bright);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
