/* ZankrVita Nutrizione — Main Stylesheet */
/* Colors: Green #61CE70, Dark #181A1E, Cream #E8E5DC */
/* Fonts: Nunito (headings), Inter (body) */

:root {
    --green: #61CE70;
    --green-dark: #4fb85d;
    --green-light: #e8f8ea;
    --dark: #181A1E;
    --dark-soft: #23262B;
    --cream: #E8E5DC;
    --cream-light: #f4f2ec;
    --white: #ffffff;
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    --gray-300: #cccccc;
    --gray-500: #888888;
    --gray-700: #555555;
    --gray-900: #222222;
    --text: #333333;
    --text-light: #666666;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
    --max-width: 1200px;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.6rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--green-dark);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--green); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(97,206,112,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover {
    background: var(--dark-soft);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-white {
    background: var(--white);
    color: var(--green);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
    color: var(--green-dark);
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
}
.logo:hover { color: var(--green); }

.logo-icon {
    color: var(--green);
    font-size: 1.8rem;
}

.logo-text {
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.main-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}
.main-nav a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--white);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(97,206,112,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(97,206,112,0.15);
    color: var(--green);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--green);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 180px;
    height: 180px;
    border: 3px solid var(--green);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ========== SECTIONS ========== */
.section {
    padding: 80px 0;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}
.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-green {
    background: var(--green);
    color: var(--white);
}
.section-green h2 { color: var(--white); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

.section-tag {
    display: inline-block;
    color: var(--green);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

/* ========== ABOUT PREVIEW ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 16px;
    background: var(--green-light);
    border-radius: var(--radius);
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--green);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========== ARTICLE CARDS ========== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
    display: block;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.article-card-image {
    height: 200px;
    overflow: hidden;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-body {
    padding: 24px;
}

.article-card-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.article-card-link {
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
}

/* ========== QUOTE BANNER ========== */
.quote-banner {
    padding: 70px 0;
    text-align: center;
}

.quote-banner blockquote {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
}

.quote-banner cite {
    font-style: normal;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--dark-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.08);
}

.testimonial-stars {
    color: #f0c040;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--green);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* ========== BOOK PREVIEW ========== */
.book-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
}

.book-images {
    display: flex;
    gap: 16px;
}

.book-images img {
    width: 180px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.book-content h2 {
    margin-bottom: 16px;
}

.book-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.book-features {
    list-style: none;
    margin: 20px 0 30px;
}
.book-features li {
    padding: 6px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}
.book-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ========== NEWSLETTER ========== */
.newsletter {
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--green);
}

/* ========== TIPS SECTION ========== */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tip-card {
    background: var(--cream-light);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition);
}
.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.tip-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ========== CONTENT PAGES ========== */
.page-hero {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.page-hero h1 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
}

.page-content .content-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green-light);
}

.page-content h3 {
    margin-top: 30px;
}

.page-content ul, .page-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-content blockquote {
    border-left: 4px solid var(--green);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--green-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text);
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.article-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-200);
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    font-size: 1.3rem;
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green);
}

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

.form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--green);
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-message {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    background: var(--green-light);
    color: var(--green-dark);
    border: 1px solid var(--green);
    display: block;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 36px;
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 24px;
}

.legal-content ul {
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-content th,
.legal-content td {
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    text-align: left;
    font-size: 0.9rem;
}

.legal-content th {
    background: var(--cream);
    font-weight: 600;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul a:hover {
    color: var(--green);
}

.footer-col a {
    color: rgba(255,255,255,0.7);
}
.footer-col a:hover {
    color: var(--green);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--green);
    color: var(--white);
}

.footer-vat {
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.medical-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark);
    border-top: 2px solid var(--green);
    padding: 20px 0;
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    margin-bottom: 0;
    min-width: 280px;
}

.cookie-inner a {
    color: var(--green);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { text-align: center; }
    .hero-image img { margin: 0 auto; max-width: 380px; }
    .hero-image::after { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .book-grid { grid-template-columns: 1fr; }
    .book-images { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .section { padding: 50px 0; }
    .hero { padding: 50px 0 60px; }
    .hero h1 { font-size: 2.2rem; }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 2px solid var(--green);
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { display: flex; }
    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .menu-toggle { display: flex; }

    .services-grid { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr 1fr; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }

    .newsletter-form { flex-direction: column; }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-number { font-size: 1.4rem; }

    .book-images img { width: 140px; }

    .quote-banner blockquote { font-size: 1.3rem; }
    .page-hero h1 { font-size: 1.8rem; }

    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.7rem; }
    .hero h1 { font-size: 1.8rem; }
    .about-stats { grid-template-columns: 1fr 1fr 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .book-images { flex-direction: column; align-items: center; }
}
