/* =============================================================================
   WIREFRAME STYLES - LA TATTOO POPUPS 2026
   =============================================================================
   Based on experience/index.html design with modifications:
   - Montserrat font family
   - rem-based sizing
   - 0.25rem border radius
   - Grayscale content (no green for buttons/boxes)
   - Homepage-style notes (left border + background + italic)
   - Slim bottom page header
   - Full-width layout for 16" MBP screens
   ============================================================================= */

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2e2e2e;
    background: #fafafa;
    padding-bottom: 2.5rem;
    /* Space for bottom header */
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.main-nav {
    background: #2e2e2e;
    border-bottom: 1px solid #3a3a3a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.375rem;
}

@media (min-width: 1920px) {
    .nav-container {
        max-width: 1920px;
    }
}

.nav-logo {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03rem;
}

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

.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 2rem;
    background: transparent;
    display: none;
}

.nav-item:hover::after {
    display: block;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.has-dropdown::after {
    content: '▼';
    font-size: 0.5625rem;
    opacity: 0.7;
}

.nav-dropdown {
    position: fixed;
    top: 4.375rem;
    left: 0;
    right: 0;
    background: #2e2e2e;
    border-top: 1px solid #3a3a3a;
    border-bottom: 1px solid #3a3a3a;
    padding: 2rem 2.5rem;
    display: none;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover {
    display: block;
}

.dropdown-section {
    margin-bottom: 0.5rem;
}

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

.dropdown-section-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 0.5rem 0.75rem 0.375rem;
    margin-bottom: 0.25rem;
}

.dropdown-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.625rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown-link-icon {
    font-size: 1rem;
    width: 1.25rem;
    text-align: center;
    opacity: 0.7;
}

.dropdown-link-content {
    flex: 1;
}

.dropdown-link-title {
    display: block;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.dropdown-link-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-btn-secondary {
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.nav-btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn-primary {
    color: #2e2e2e;
    background: white;
    border: 1.5px solid white;
}

.nav-btn-primary:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Mega Menu Styles */
.nav-dropdown-mega {
    width: 100%;
}

.mega-menu-columns {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}

@media (min-width: 1920px) {
    .mega-menu-columns {
        max-width: 1920px;
    }
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-section-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 0.5rem 0.75rem 0.375rem;
    margin-bottom: 0.5rem;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mega-menu-list.mega-menu-list-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 0.75rem;
}

@media (max-width: 1200px) {
    .mega-menu-list.mega-menu-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .mega-menu-list.mega-menu-list-grid {
        grid-template-columns: 1fr;
    }
}

.mega-menu-item {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.75rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.mega-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mega-menu-icon {
    font-size: 1.125rem;
    width: 1.25rem;
    text-align: center;
    opacity: 0.7;
    flex-shrink: 0;
}

.mega-menu-content {
    flex: 1;
}

.mega-menu-title {
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.mega-menu-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* Mega Menu Blog Section */
.mega-menu-blog {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

.mega-menu-blog-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mega-menu-blog-item {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.mega-menu-blog-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-menu-blog-image {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
}

.mega-menu-blog-content {
    flex: 1;
}

.mega-menu-blog-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.mega-menu-blog-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.mega-menu-blog-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    text-decoration: underline;
}

.mega-menu-blog-button {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mega-menu-blog-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ===================================================================
   PAGE HEADER (Bottom Sticky)
   =================================================================== */
.page-header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #333;
    padding: 0.5rem 2.5rem;
    font-size: 0.75rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-header-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-header-info strong {
    color: white;
    font-weight: 600;
}

.page-header-separator {
    color: #666;
}

.page-header-actions {
    display: flex;
    gap: 0.5rem;
}

.page-header-btn {
    padding: 0.25rem 0.75rem;
    background: #2e2e2e;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid #3a3a3a;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.page-header-btn:hover {
    background: #3a3a3a;
    color: white;
}

/* ===================================================================
   SECTIONS
   =================================================================== */
.section {
    padding: 3rem 2.5rem;
    border-bottom: 2px dashed #ddd;
}

.section-label {
    background: #5a7c6f;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    margin-bottom: 2rem;
    display: inline-block;
    border-radius: 0.25rem;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1920px;
    }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
    background: #ffffff;
    color: #1f1f1f;
    border-bottom: none;
    padding-top: 4rem;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #000000;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}

.site-footer__newsletter {
    flex: 2 1 24rem;
    max-width: 32rem;
}

.site-footer__logo {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.site-footer__copy {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #2e2e2e;
}

.site-footer__form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.site-footer__form input {
    flex: 1 1 18rem;
    padding: 0.875rem 1rem;
    border: 1px solid #cfcfcf;
    border-radius: 0.25rem;
    font-size: 0.9375rem;
    background: #fdfdfd;
}

.site-footer__form input:focus {
    outline: none;
    border-color: #2e2e2e;
    box-shadow: 0 0 0 2px rgba(46, 46, 46, 0.1);
}

.site-footer__form button {
    padding: 0.875rem 1.75rem;
    border-radius: 0.25rem;
    border: 1px solid #2e2e2e;
    background: #2e2e2e;
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.site-footer__form button:hover {
    background: #000000;
    border-color: #000000;
}

.site-footer__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer__disclaimer {
    font-size: 0.75rem;
    color: #4a4a4a;
    max-width: 30rem;
    line-height: 1.4;
}

.site-footer__disclaimer a {
    text-decoration: underline;
}

.site-footer__columns {
    flex: 3 1 32rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.site-footer__column {
    min-width: 11rem;
}

.site-footer__column h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
}

.site-footer__column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.site-footer__wordmark {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 4rem 0 2.5rem;
    line-height: 1;
    color: #0f0f0f;
}

.site-footer__divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin-bottom: 2rem;
}

.site-footer__meta {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: #555555;
}

.site-footer__meta-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.site-footer__meta a {
    color: inherit;
    text-decoration: none;
}

.site-footer__meta a:hover {
    text-decoration: underline;
}

/* ===================================================================
   SECTION NOTES (Bottom of sections, homepage style)
   =================================================================== */
.layout-note {
    background: #e9e9e9;
    border-left: 0.25rem solid #d4a574;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
    font-size: 0.875rem;
    font-style: italic;
    color: #666;
    border-radius: 0.25rem;
}

.layout-note strong {
    font-weight: 600;
    font-style: normal;
    color: #333;
}

/* ===================================================================
   PAGE NOTES (End of page)
   =================================================================== */
.wireframe-notes {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    padding: 2rem;
    margin: 3rem 2.5rem;
    margin-bottom: 4rem;
    /* Extra space for bottom header */
}

.wireframe-notes h2 {
    color: #5a7c6f;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.wireframe-notes h3 {
    color: #2e2e2e;
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.wireframe-notes ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.wireframe-notes li {
    margin-bottom: 0.5rem;
}

.wireframe-notes p {
    margin-bottom: 1rem;
}

/* ===================================================================
   CONTENT COMPONENTS (Grayscale)
   =================================================================== */

/* Placeholder Images/Videos */
.placeholder-image,
.placeholder-video {
    background: #e5e5e5;
    border: 2px solid #999;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    padding: 1rem;
    border-radius: 0.25rem;
}

.cta-panel {
    background: #2e2e2e;
    color: white;
    border-radius: 0.25rem;
    padding: 3rem 2.5rem;
    text-align: center;
}

.cta-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: white;
    transition: all 0.2s ease;
}

.cta-panel a.cta-primary {
    background: white;
    color: #2e2e2e;
    border-color: white;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border: 2px solid #ddd;
    border-radius: 0.25rem;
    padding: 1.5rem;
}

.checklist {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #555;
}

.checklist span {
    font-weight: 600;
    color: #2e2e2e;
}

/* Cards */
.diff-grid,
.req-grid,
.safety-grid {
    display: grid;
    gap: 2rem;
}

.diff-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.req-grid {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.safety-grid {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.diff-card,
.req-card,
.safety-card {
    background: white;
    border: 2px solid #ddd;
    padding: 2rem;
    border-radius: 0.25rem;
}

.diff-card {
    text-align: center;
}

.safety-card {
    border-left: 0.25rem solid #666;
    border-top: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

.diff-icon {
    width: 5rem;
    height: 5rem;
    background: #666;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.req-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: #666;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.25rem;
}

.req-badge.preferred {
    background: #999;
}

/* Timeline */
.timeline-steps {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
}

.timeline-step {
    min-width: 15.625rem;
    background: white;
    border: 2px solid #ddd;
    padding: 2rem;
    position: relative;
    border-radius: 0.25rem;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: #ddd;
    border-top: 2px dashed #999;
}

.timeline-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 1rem;
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.checkmark {
    width: 1.5rem;
    height: 1.5rem;
    background: #666;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Tabs */
.tabs-container {
    display: grid;
    grid-template-columns: 12.5rem 1fr;
    gap: 2rem;
    min-height: 31.25rem;
}

.tab-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tab-link {
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #ddd;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.tab-link.active {
    background: #2e2e2e;
    color: white;
    border-color: #2e2e2e;
}

.tab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #ddd;
    border-radius: 0.25rem;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #ddd;
}

/* Buttons (Grayscale) */
.btn {
    padding: 1rem 2rem;
    border: 2px solid #2e2e2e;
    background: transparent;
    color: #2e2e2e;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #2e2e2e;
    color: white;
}

.btn-primary {
    background: #2e2e2e;
    color: white;
}

.btn-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Final CTA Section */
.final-cta {
    background: #2e2e2e;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .page-header {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .wireframe-notes {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

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

    .tab-content {
        grid-template-columns: 1fr;
    }

    .diff-grid,
    .req-grid,
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        flex-direction: column;
        gap: 2.5rem;
    }

    .site-footer__form {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer__form button {
        width: 100%;
    }

    .site-footer__columns {
        gap: 2rem;
    }

    .site-footer__wordmark {
        margin: 3rem 0 2rem;
    }

    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================================================
   UTILITIES (shared grid/text helpers for wireframes)
   =================================================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.content-block {
    margin-bottom: 2rem;
}

.eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
