/* ==========================================
   1. RESET E VARIABILI GLOBALI
   ========================================== */
:root {
    --bg-light-blue: #e1f3fd;    /* Sfondo chiaro azzurrato */
    --primary-blue: #0052cc;     /* Blu istituzionale */
    --dark-blue: #3b5998;        /* Blu scuro card */
    --orange-accent: #d35400;    /* Arancione accento */
    --text-dark: #222222;        /* Testo principale */
    --text-gray: #555555;        /* Sottotitoli e testi secondari */
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==========================================
   2. NAVBAR E MENU A TENDINA (DROPDOWN FIX)
   ========================================== */
.navbar {
    background-color: var(--bg-light-blue);
    padding: 15px 0;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a.active {
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 4px;
    color: var(--primary-blue);
}

/* --- DROPDOWN CORRECTED --- */

.dropdown-item {
    position: relative;
    display: inline-block;
}

.nav-caret {
    font-size: 0.75rem;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Nasconde SEMPRE la tendina di default */
.nav-menu ul li.dropdown-item .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 210px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    list-style: none;
    border-radius: 8px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mostra la tendina SOLTANTO al passaggio del mouse o quando ha la classe .open */
.nav-menu ul li.dropdown-item:hover .dropdown-menu,
.nav-menu ul li.dropdown-item.open .dropdown-menu {
    display: block;
}

/* Animazione freccetta */
.nav-menu ul li.dropdown-item:hover .nav-caret,
.nav-menu ul li.dropdown-item.open .nav-caret {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    color: var(--text-dark);
    padding: 10px 18px;
    display: block;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
}
/* ==========================================
   3. HERO SECTION & CARD FLUTTUANTE
   ========================================== */
.hero-section {
    background-color: var(--bg-light-blue);
    position: relative;
    padding: 60px 0 140px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.deco-crosses {
    position: absolute;
    top: 40px;
    right: 10%;
    color: #2ecc71;
    font-weight: bold;
    letter-spacing: 5px;
    line-height: 1.2;
    opacity: 0.7;
}

.deco-flower {
    position: absolute;
    bottom: 80px;
    left: 22%;
    font-size: 3rem;
    color: #ff6b81;
}

.hero-text-content {
    text-align: center;
}

.hero-text-content .subtitle {
    color: var(--orange-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.hero-text-content h1 {
    color: var(--primary-blue);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 15px 0;
}

.hero-text-content .sub-welcome {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.img-wrapper {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.rounded-top {
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
}

.arch-shape {
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* Card Contatti Sospesa */
.info-card-floating {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-blue);
    color: var(--white);
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.card-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-row:last-child {
    margin-bottom: 0;
}

.card-icon {
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 2px;
}

.card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 3px;
}

.card-info p {
    font-size: 0.85rem;
    color: #e0e0e0;
}

/* ==========================================
   4. SEZIONE PRESENTAZIONE
   ========================================== */
.presentation-section {
    padding: 160px 0 80px 0;
    background-color: var(--white);
}

.presentation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 0 20px;
}

.presentation-images {
    display: flex;
    gap: 15px;
}

.pres-img {
    width: 50%;
    height: 350px;
    overflow: hidden;
}

.pres-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arch-shape-left {
    border-top-left-radius: 180px;
}

.arch-shape-right {
    border-bottom-right-radius: 180px;
}

.presentation-text .section-tag {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.presentation-text h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0 20px 0;
    line-height: 1.2;
}

.presentation-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.btn-orange {
    display: inline-block;
    background-color: var(--orange-accent);
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ==========================================
   5. SEZIONE PROGETTI E LIBRI
   ========================================== */
.projects-section {
    background-color: var(--bg-light-blue);
    padding: 80px 0;
    text-align: center;
}

.projects-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
}

.projects-section h2 {
    color: var(--primary-blue);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.projects-subtext {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 50px;
}

.projects-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-cover-container {
    width: 100%;
    max-width: 320px;
    height: 400px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.book-mockup .book-title-mock {
    display: block;
    color: #cc2424;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 10px;
    text-align: center;
}

.book-mockup .book-subtitle-mock {
    display: block;
    color: #666666;
    font-size: 0.8rem;
    text-align: center;
}

.project-card-badge {
    position: absolute;
    bottom: 20px;
    width: 90%;
    max-width: 290px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 15px;
    text-align: left;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-img-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-text h3 {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.badge-link {
    display: inline-block;
    color: var(--orange-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

.badge-link:hover {
    text-decoration: underline;
}

/* ==========================================
   6. SEZIONE BACHECA NEWS
   ========================================== */
.news-board-section {
    padding: 100px 0;
    background-color: var(--white);
}

.news-board-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    padding: 0 20px;
    align-items: center;
}

.news-images-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.news-img-wrapper {
    width: 100%;
    max-width: 380px;
    height: 240px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arch-top-left {
    border-top-left-radius: 120px;
}

.arch-bottom-right {
    border-bottom-right-radius: 120px;
}

.news-text-column .news-tag {
    color: var(--orange-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.news-text-column h2 {
    color: var(--primary-blue);
    font-size: 2.6rem;
    font-weight: 800;
    margin: 8px 0 25px 0;
}

.news-paragraphs p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 20px;
    text-align: justify;
}

.news-appointments-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.news-appointments-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 10px;
}

.news-appointments-list strong {
    color: var(--primary-blue);
}

.inline-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

/* ==========================================
   7. SEZIONE LINK UTILI
   ========================================== */
.useful-links-section {
    padding: 60px 0;
    background-color: var(--bg-light-blue);
}

.links-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.links-tag {
    color: var(--orange-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: block;
}

.useful-links-section h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 6px 0 20px 0;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 30px;
}

.blue-links-list {
    list-style: none;
}

.blue-links-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #444444;
}

.blue-links-list a {
    color: #0044cc;
    text-decoration: underline;
    font-weight: 600;
}

.blue-links-list a:hover {
    color: var(--primary-blue);
}

/* ==========================================
   8. VISUALIZZATORE DOCUMENTI PDF
   ========================================== */
.document-viewer-section {
    padding: 60px 0;
    background-color: var(--white);
}

.viewer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.pdf-reader-frame {
    width: 100%;
    height: 650px;
    background-color: #a3a3a3;
    padding: 15px;
    border-radius: 4px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
}

.download-action-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-bottom: 10px;
}

/* ==========================================
   9. FOOTER FINALE
   ========================================== */
.final-site-footer {
    background-color: var(--white);
    padding: 40px 0 20px 0;
}

.footer-top-area {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-text-info p {
    font-size: 0.85rem;
    color: #333333;
    line-height: 1.5;
}

.footer-text-info a {
    color: #333333;
    text-decoration: none;
}

.footer-text-info a:hover {
    text-decoration: underline;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    max-width: 1100px;
    margin: 40px auto 15px auto;
}

.footer-bottom-credits {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999999;
}

/* ==========================================
   10. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 992px) {
    .projects-grid,
    .news-board-container,
    .presentation-container,
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .news-images-column {
        order: 2;
    }
}

@media (max-width: 768px) {
    .footer-bottom-credits {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .pdf-reader-frame {
        height: 450px;
        padding: 5px;
    }

    .download-action-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ==========================================
   STILI TABELLA DOCUMENTI
   ========================================== */
.docs-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 30px;
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}

.docs-table th {
    background-color: var(--bg-light-blue);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid #cbd5e1;
}

.docs-table td {
    padding: 12px 16px;
    font-size: 0.92rem;
    color: var(--text-dark);
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.docs-table tbody tr:hover {
    background-color: #f8fafc;
}

.docs-table tbody tr:last-child td {
    border-bottom: none;
}

.doc-title {
    font-weight: 600;
}

.text-center {
    text-align: center !important;
}

/* Celle Azione e Pulsanti Icona */
.action-cell {
    text-align: center;
    width: 70px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: background-color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
}

.btn-icon:hover {
    background-color: var(--bg-light-blue);
    border-color: #bee3f8;
    transform: scale(1.1);
}

.docs-note {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-top: 20px;
}

/* --- CTA CALL FIX --- */
.cta-call {
    background-color: var(--orange-accent);
    color: var(--white);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;       /* inline-flex garantisce un comportamento solido */
    align-items: center;        /* Centra perfettamente testo e icona in verticale */
    justify-content: center;
    font-size: 0.9rem;
    line-height: 1;             /* Evita che il line-height alteri la spinta verticale */
    white-space: nowrap;        /* Impedisce al testo "Chiamaci" di andare a capo */
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.cta-call:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Gestione icona SVG interna per evitare disallineamenti */
.cta-call svg {
    display: block;
    flex-shrink: 0;
    margin-right: 8px !important; /* Mantiene lo spazio corretto dall'icona al testo */
}

/* Assicura che la lente di ricerca e il pulsante siano perfettamente centrati sulla stessa linea */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--orange-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

/* ==========================================
   CAROSELLO FOTOGRAFICO MULTIPLO
   ========================================== */
.custom-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background-color: var(--white);
}

.carousel-track-container {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 400ms ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legenda immagine */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Pulsanti Avanti/Indietro */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.carousel-button--left { left: 15px; }
.carousel-button--right { right: 15px; }

/* Pallini di Navigazione */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 12px 0;
    background-color: var(--white);
    gap: 8px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.carousel-indicator.current-slide {
    background-color: var(--orange-accent);
    transform: scale(1.2);
}

/* Modifiche per dispositivi mobili */
@media (max-width: 768px) {
    .carousel-track-container {
        height: 280px;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* ==========================================
   STILI FORMULARIO ADESIONE
   ========================================== */
.atpir-form {
    background-color: var(--white);
    padding: 10px 0;
}

.form-section-title {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 30px 0 15px 0;
    border-bottom: 2px solid var(--bg-light-blue);
    padding-bottom: 6px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.span-2 {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #f8fafc;
    transition: border-color 0.2s, background-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--white);
}

.form-sublabel {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Checkbox personalizzati */
.checkbox-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
}

/* Radio Button per opzioni */
.radio-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.option-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.radio-inline {
    display: flex;
    gap: 20px;
}

.radio-inline label {
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.radio-inline input {
    accent-color: var(--orange-accent);
}

/* Card Coordinate Bancarie */
.bank-details-card {
    background-color: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.bank-row strong {
    color: var(--primary-blue);
    font-size: 1rem;
}

.bank-row code {
    background-color: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    color: #0f172a;
    font-size: 0.95rem;
}

/* Media Query Form */
@media (max-width: 600px) {
    .form-grid,
    .grid-3,
    .checkbox-group-grid {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .radio-option-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}