/* Main CSS - Core layout and component styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-gradient);
}

/* CSS Custom Properties - Theme variables (defaults match blush-rose theme) */
:root {
    --bg-gradient: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%);
    --primary-accent: #e11d48;
    --primary-accent-light: #fb7185;
    --secondary-accent: #831843;
    --text-primary: #4a044e;
    --text-secondary: #6b2158;
    --text-light: #fff;
    --text-muted: #9d4e7c;
    --section-bg: #fffbfc;
    --section-bg-alt: #fdf2f8;
    --card-bg: #ffffff;
    --border-accent: rgba(225, 29, 72, 0.3);
    --shadow-color: rgba(131, 24, 67, 0.1);
    --envelope-bg: linear-gradient(135deg, #831843 0%, #9d174d 50%, #be185d 100%);
    --envelope-body: linear-gradient(145deg, #fff5f7 0%, #ffe4e9 100%);
    --envelope-flap: linear-gradient(165deg, #ffffff 0%, #fff0f3 40%, #ffe4e9 100%);
    --letter-bg: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
    --rose-gold: #b76e79;
    --rose-gold-light: #e8c4c4;
}

/* Global Controls Container */
.global-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Language Switcher */
/* Hidden by default - shown via JS when config allows */
.language-switcher {
    display: none;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    padding: 5px;
}

.lang-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang-btn.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Theme Switcher (Development Mode) */
/* Hidden by default - shown via JS when config allows */
.theme-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 10px var(--shadow-color);
    display: none;
    align-items: center;
    gap: 8px;
}

.theme-switcher label {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}

.theme-switcher select {
    padding: 5px 10px;
    border: 1px solid var(--primary-accent);
    border-radius: 15px;
    background: white;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.theme-switcher select:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Audio Controls */
.audio-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.audio-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 5px;
}

.audio-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.audio-btn.muted {
    opacity: 0.4;
}

/* Volume Slider */
.volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80px;
    height: 6px;
    background: linear-gradient(to right, var(--primary-accent) 0%, var(--primary-accent) 30%, #ddd 30%, #ddd 100%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-accent);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.volume-slider.muted {
    opacity: 0.4;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-gradient);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--primary-accent);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .ampersand {
    font-size: clamp(3rem, 10vw, 6rem);
    color: var(--primary-accent);
    margin: 0 20px;
    font-style: italic;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-top: 20px;
    font-weight: 300;
}

.hero .ornament {
    color: var(--primary-accent);
    font-size: 2rem;
    margin: 20px 0;
}

/* Countdown */
.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-accent);
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: var(--primary-accent);
    display: block;
}

.countdown-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--text-light);
    margin-top: 5px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Greek text specific sizing */
[lang="el"] .countdown-label {
    font-size: clamp(0.64rem, 1.6vw, 0.8rem);
}

/* Section Styles */
.section {
    padding: 80px 20px;
    background: var(--section-bg);
    position: relative;
}

/* Alternating backgrounds - applied dynamically via JS for visible sections */
.section.bg-alt {
    background: var(--section-bg-alt);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--secondary-accent);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--primary-accent);
    margin: 20px auto 0;
}

/* Schedule */
.schedule {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.schedule-time {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.5rem;
    color: var(--primary-accent);
    font-weight: bold;
}

.schedule-details h3 {
    color: var(--secondary-accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.schedule-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Calendar Buttons */
.calendar-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: auto;
    align-self: center;
}

.calendar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--primary-accent);
    background: transparent;
    color: var(--primary-accent);
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.calendar-btn:hover {
    background: var(--primary-accent);
    color: var(--card-bg);
}

.calendar-btn .cal-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}

.calendar-btn .cal-text {
    font-weight: 500;
}

/* Maps */
.maps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.map-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.map-card h3 {
    padding: 20px;
    background: var(--secondary-accent);
    color: var(--primary-accent);
    font-size: 1.3rem;
    text-align: center;
}

.map-card iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* Clickable map link wrapper */
.map-link {
    position: relative;
    display: block;
    cursor: pointer;
}

/* Invisible overlay to capture clicks on iframe */
.map-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.map-link:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

/* Address info below map */
.map-address {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: var(--section-bg-alt, #f8f8f8);
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-address .address-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.map-address span:last-child {
    user-select: all;
    cursor: text;
}

.map-card .map-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-style: italic;
    gap: 10px;
}

/* Song Disclaimer */
.song-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-accent);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.btn {
    background: var(--primary-accent);
    color: var(--text-light);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Families & Sponsors (inside hero) */
.hero-families {
    margin-top: 80px;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.families-wrapper {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.family-group,
.sponsors-group {
    text-align: center;
}

.family-title,
.sponsors-title {
    font-family: var(--heading-font);
    font-size: 1rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.family-names p,
.sponsor-names p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 8px 0;
    line-height: 1.6;
    white-space: nowrap;
}

.rsvp-notice {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rsvp-notice p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.rsvp-date {
    display: inline-block;
    background: var(--primary-accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-style: normal;
    font-weight: 600;
    margin-left: 5px;
}

/* Photo Upload / NFC Section */
.upload-area {
    max-width: 600px;
    margin: 40px auto;
    padding: 60px 40px;
    border: 3px dashed var(--primary-accent);
    border-radius: 10px;
    text-align: center;
    background: rgba(212, 175, 55, 0.05);
    cursor: pointer;
    transition: all 0.3s;
}

.upload-area:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-accent);
    filter: brightness(0.95);
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.upload-area h3 {
    color: var(--secondary-accent);
    margin-bottom: 15px;
}

.upload-area p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.qr-code {
    margin-bottom: 25px;
}

.qr-code img {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.album-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-decoration: none;
    padding: 12px 30px;
}

.qr-instructions {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Gift / IBAN Section */
.gift-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-color);
    text-align: center;
    border: 2px solid var(--border-accent);
}

.gift-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.gift-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.iban-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.iban-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iban-number {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-accent);
    letter-spacing: 2px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    user-select: all;
    cursor: text;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-feedback {
    display: none;
    margin-top: 10px;
    color: #28a745;
    font-weight: 600;
    font-size: 0.95rem;
}

.copy-feedback.show {
    display: block;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

.gift-beneficiary {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 15px;
}

.gift-beneficiary span {
    font-weight: 600;
    color: var(--secondary-accent);
}

/* Cat Decorations */
.cat-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.cat-decoration img {
    max-width: 150px;
    height: auto;
}

.cat-decoration.left {
    left: 20px;
}

.cat-decoration.right {
    right: 20px;
}

.cat-decoration.parallax {
    will-change: transform;
}

/* Footer */
footer {
    background: var(--secondary-accent);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px;
}

footer p {
    margin: 10px 0;
}

footer .ornament {
    color: var(--primary-accent);
}

/* Main Content visibility */
#main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in;
}

#main-content.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive - Tablets and small desktops */
@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        gap: 15px;
    }

    .schedule-time {
        width: 100%;
    }

    .calendar-buttons {
        flex-direction: row;
        margin-left: 0;
        margin-top: 10px;
    }

    .global-controls {
        top: 10px;
        right: 10px;
        gap: 8px;
    }

    .language-switcher {
        padding: 6px 10px;
    }

    .lang-btn {
        font-size: 1.2rem;
    }

    .audio-controls {
        padding: 6px 10px;
    }

    .theme-switcher {
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .maps-container {
        grid-template-columns: 1fr;
    }

    .families-wrapper {
        gap: 40px;
    }

    .hero-families {
        margin-top: 50px;
        padding: 30px 20px;
        max-width: 90%;
    }
}

/* Responsive - Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    /* Hero section */
    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 span {
        display: block;
    }

    .hero .ampersand {
        font-size: clamp(2rem, 12vw, 3rem);
        margin: 5px 0;
    }

    .hero .subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    /* Countdown - keep all 4 in one row */
    .countdown {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin: 40px 0;
    }

    .countdown-item {
        padding: 22px 8px;
        min-width: 0;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    [lang="el"] .countdown-label {
        font-size: 0.7rem;
    }

    /* Families section in hero */
    .hero-families {
        margin-top: 40px;
        padding: 25px 15px;
        max-width: 95%;
        border-radius: 12px;
    }

    .families-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .family-title,
    .sponsors-title {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .family-names p,
    .sponsor-names p {
        font-size: 0.9rem;
        white-space: normal;
    }

    .rsvp-notice {
        margin-top: 20px;
        padding-top: 20px;
    }

    .rsvp-notice p {
        font-size: 0.85rem;
    }

    .rsvp-date {
        display: block;
        margin-left: 0;
        margin-top: 8px;
    }

    /* Global controls */
    .global-controls {
        top: 8px;
        right: 8px;
        gap: 6px;
    }

    .language-switcher {
        padding: 5px 8px;
        border-radius: 20px;
    }

    .lang-btn {
        font-size: 1.1rem;
        padding: 3px;
    }

    .audio-controls {
        padding: 5px 8px;
        border-radius: 20px;
    }

    .audio-btn {
        font-size: 1.1rem;
        padding: 3px;
    }

    .volume-slider {
        width: 50px;
    }

    /* Section styles */
    .section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

    .section-title::after {
        width: 60px;
        margin: 15px auto 0;
    }

    /* Schedule */
    .schedule-item {
        padding: 20px 15px;
        gap: 12px;
    }

    .schedule-time {
        font-size: 1.2rem;
    }

    .schedule-details h3 {
        font-size: 1.2rem;
    }

    .schedule-details p {
        font-size: 0.9rem;
    }

    .calendar-buttons {
        flex-wrap: wrap;
        gap: 6px;
    }

    .calendar-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    /* Maps */
    .map-card h3 {
        padding: 15px;
        font-size: 1.1rem;
    }

    .map-card iframe,
    .map-card .map-placeholder {
        height: 200px;
    }

    .map-address {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    /* Photo upload */
    .upload-area {
        padding: 40px 20px;
        margin: 30px auto;
    }

    .upload-area h3 {
        font-size: 1.1rem;
    }

    .upload-area p {
        font-size: 0.9rem;
    }

    .qr-code img {
        width: 150px;
        height: 150px;
    }

    .album-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Gift / IBAN */
    .gift-card {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .gift-icon {
        font-size: 3rem;
    }

    .gift-message {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .iban-container {
        padding: 20px 12px;
    }

    .iban-label {
        font-size: 0.8rem;
    }

    .iban-number {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        padding: 12px 8px;
        word-break: break-all;
        line-height: 1.4;
    }

    .copy-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .gift-beneficiary {
        font-size: 0.9rem;
    }

    /* Song request form */
    .song-disclaimer {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
    }

    /* Footer */
    footer {
        padding: 30px 15px;
    }

    footer p {
        font-size: 1rem !important;
    }

    /* Cat decorations - hide on mobile */
    .cat-decoration {
        display: none;
    }
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }

    .countdown {
        gap: 6px;
    }

    .countdown-item {
        padding: 18px 5px;
    }

    .countdown-number {
        font-size: 1.9rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .iban-number {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    .families-wrapper {
        gap: 20px;
    }

    .family-names p,
    .sponsor-names p {
        font-size: 0.85rem;
    }
}
