/*
Theme Name:   UT NGO Theme`
Theme URI:    https://urdu.today
Author:       Zahoor Ahmed Solangi
Author URI:   https://yourwebsite.com
Description:  A bespoke, high-performance theme for Aurat Foundation.
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  my-custom-theme
*/
/* style.css - Global Core, Layout, Navigation & Branding */
/* VERSION 2.0.4 - UPDATED FOR LEFT-ALIGNED BRANDING & SYMMETRY */

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

:root {
   --brand-orange: #FF9900;
    --brand-gold: #ffd700;
    --brand-red: #e11d48;
    /* Updated Cyan to Light Gray as requested */
	--bg-cyan: #f1f5f9;
    --text-dark: #1e293b;
    --grid-gap: 20px;
    --border-radius: 12px;
    --header-height: auto; 

    --af-blue-dark: #0056b3;  
    --af-blue-navy: #003366;  
    --af-blue-brand: #293896; 
    --af-green-utility: #007621; 
    --af-shade-bg: #f4f7f9;      
    --af-shade-card: #ffffff;    
    --af-shade-border: #dddddd;   
    --af-text: #333333;
    --af-white: #ffffff;
    
    /* New Light Gray Variable */
    --af-light-gray: #f1f5f9;
    --af-font-main: 'Funnel Sans', sans-serif; 
    
    /* Extended Variable Set for detailed styling */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* 1. Global Reset & Left-Alignment Engine */
body, #primary-content, .main-wrapper {
 
    font-family: var(--af-font-main);
    color: var(--af-text);
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5;
    width: 100% !important;
    overflow-x: hidden;
    /* UPDATED: Changed from center to flex-start to move everything to the left */
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
}



/* MOBILE UPDATES */


/* ==========================================================================
   3. Branding Layout - MERGED FOR FULL WIDTH & EXTREME RIGHT SOCIALS
   ========================================================================== */
/* ==========================================================================
   1. BRANDING & LOGO (Full Width Layout)
   ========================================================================== */
.branding-flex {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes Logo group left, Social icons right */
    padding: 15px 40px;
    width: 100%;
    max-width: 100% !important; /* Forces breakout of any theme container caps */
    margin: 0; 
    box-sizing: border-box;
}

.logo-title-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 1;
}

/* Supports both standard <img> and WordPress Custom Logo classes */
.site-logo img, 
.custom-logo,
.custom-logo-link img {
    height: 60px !important;
    width: auto !important;
    display: block;
    margin-left: 0;
}

.site-title-text {
    font-family: var(--af-font-main, sans-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--af-blue-navy, #1e293b);
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 450px;
    text-align: left;
    display: block;
}

/* ==========================================================================
   2. SOCIAL MEDIA (Magnet to Right)
   ========================================================================== */
.header-social-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: auto; /* Spring-action push to the far right */
    flex-shrink: 0;
}

.header-social-link svg {
    width: 26px;
    height: 26px;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.header-social-link:hover svg {
    transform: scale(1.1);
}

/* Brand Specific SVG Colors */
.icon-facebook { fill: #1877F2; }
.icon-instagram { fill: #E4405F; }
.icon-linkedin { fill: #0A66C2; }
.icon-youtube { fill: #FF0000; }

/* ==========================================================================
   3. NAVIGATION BAR
   ========================================================================== */
.main-nav-bar {
    background: var(--af-blue-navy, #003366);
    color: white;
    width: 100%;
    min-height: 50px;
}

.nav-container-inner {
    max-width: 100% !important;
    margin: 0; 
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
}

.nav-menu {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: flex-start;
}

.nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-gold, #ffd700);
}

/* ==========================================================================
   4. ZERO TOLERANCE BAR
   ========================================================================== */
.zero-tolerance-container {
    background: #e11d48;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-weight: 700;
    font-size: 13px; 
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

.zero-tolerance-box {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   5. MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 992px) {
    .site-title-text { 
        display: none !important; 
    } 

    .branding-flex {
        padding: 10px 20px;
    }

    .header-social-wrap {
        gap: 8px; 
    }

    .header-social-link svg {
        width: 22px; 
        height: 22px;
    }

    .site-logo img, .custom-logo {
        height: 45px !important; 
    }

    .menu-toggle {
        display: block !important;
        background: var(--af-blue-navy, #003366);
        color: white;
        border: none;
        width: 100%;
        padding: 12px;
        font-weight: 800;
        cursor: pointer;
        text-transform: uppercase;
    }

    /* Support for JS toggled classes */
    .main-navigation.toggled .nav-menu,
    .nav-menu.toggled-on {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: #002b56;
    }

    .nav-menu {
        display: none; /* Hidden by default on mobile until toggled */
    }

    .nav-menu a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 20px;
    }
}

@media (min-width: 993px) {
    .menu-toggle {
        display: none !important;
    }
}

/* ==========================================================================
   6. RESPONSIVE MOBILE OVERRIDES
   ========================================================================== */


/* 6. Widget Base Styles (Preserved) */
/* Sidebar Layout & Card Container */
.grid-sidebar-left {
    height: fit-content !important;
    align-self: start;
}

.af-card {
    background: #ffffff;
    border-radius: 0 0 8px 8px; 
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--af-shade-border);
    padding: 15px;
}

/* Brochure Image Section - Updated for Maximum Height */
.brochure-preview-box {
    position: relative;
    /* Height is required to show the blurred background behind the image */
    height: 350px; 
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000; /* Fallback */
}

/* The Blurred Background Layer */
.brochure-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px); /* Adjust blur strength here */
    opacity: 0.6; /* Makes the main image stand out more */
    transform: scale(1.1); /* Prevents white edges from the blur */
    z-index: 1;
}

/* The Main "Big" Image */
.brochure-img {
    position: relative;
    z-index: 2;
    max-width: 90%; /* Leaves a little room for the blur to show on sides */
    max-height: 90%; /* Ensures it fits within the 350px box */
    width: auto;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Adds depth over the blur */
    image-rendering: -webkit-optimize-contrast;
}

/* --- DESKTOP BEHAVIOR (Default Content Visibility) --- */

/* Hide the toggle button and input on desktop */
.af-toggle-input, 
.af-read-more-label {
    display: none !important;
}

/* Ensure content is always visible on desktop */
.af-mobile-collapsible {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
}

/* --- MOBILE BEHAVIOR (Responsive Toggle) --- */

/* INTERNAL PROTOCOL LIST STYLING */
.protocol-list {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.protocol-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--af-blue-navy);
}

.protocol-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand-orange);
    flex-shrink: 0;
}

/* FOOTER BUTTON & ICON FIXES */
.af-card-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    text-decoration: none;
    background: var(--af-blue-navy);
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.af-card-footer-btn:hover {
    background: var(--brand-orange);
    color: #fff;
}

.icon-sm {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* STAKEHOLDER SLIDER (Robust Edition Merged) */
.stk-card-wrapper {
    position: relative;
    height: 220px; 
    background: #000;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    border: 1px solid var(--af-shade-border);
}

.stk-slide {
    position: absolute;
    inset: 0;
    display: none; 
}

.stk-slide.active {
    display: block;
}

.stk-progress-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 20;
}

.stk-progress-fill {
    height: 100%;
    background: var(--brand-gold, #ffd700);
    width: 0%;
}

.stk-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 5s linear; 
}

.stk-slide.active .stk-bg-image {
    transform: scale(1.15);
}

.stk-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
}

.stk-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    z-index: 10;
}

.stk-info-pill {
    display: inline-block;
    font-size: 9px;
    font-weight: 900;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stk-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.stk-nav-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 20px); 
    left: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 15;
    pointer-events: none; 
}

.stk-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; 
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.stk-nav-btn.prev { margin-left: 2px; }
.stk-nav-btn.next { margin-right: 2px; }

.stk-nav-btn:hover {
    background: var(--brand-gold, #ffd700);
    color: #000;
    transform: scale(1.1);
}

.stk-nav-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.stk-footer-meta {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 15;
}

.stk-counter-badge {
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    border-right: 3px solid #ffd700;
}

/* IMPACT HUD (Beneficiaries) */
.hud-display-container {
    position: relative;
    height: 200px; 
    background: radial-gradient(circle, #e62117 0%, #8b0000 100%); 
    border-radius: 0 0 8px 8px;
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    contain: paint; 
    display: flex;
    align-items: center;
}

.hud-meta {
    position: absolute;
    font-family: monospace;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    z-index: 5;
    text-transform: uppercase;
}
.meta-top { top: 10px; left: 12px; }
.meta-bottom { bottom: 10px; right: 12px; }

.hud-scroll-wrapper {
    display: flex;
    flex-direction: row; 
    white-space: nowrap;
    animation: hudScrollHorizontal 45s linear infinite; 
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.hud-scroll-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 100px; 
    flex-shrink: 0;
    height: 200px; 
}

.hud-number {
    font-size: 100px; 
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    line-height: 1;
    display: block;
}

.hud-label {
    font-size: 16px; 
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1px;
    white-space: normal; 
    max-width: 180px;
    line-height: 1.2;
}

@keyframes hudScrollHorizontal {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ETHICS PROTOCOLS CARD SPECIFICS */
.ethic-card {
    position: relative;
    height: 220px;
    background: #fff;
    padding: 0 !important; 
    overflow: hidden; 
    display: flex;
    align-items: center;
}

.ethic-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.45; 
    z-index: 1;
}

.ethic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 100%);
    z-index: 2;
}

.ethic-content {
    position: relative;
    z-index: 10;
    padding: 25px;
    width: 100%;
}

.ethic-label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--brand-orange, #f37021);
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.ethic-heading {
    font-size: 20px;
    font-weight: 800;
    color: var(--af-blue-navy, #003366);
    line-height: 1.2;
    margin-bottom: 15px;
}

.ethic-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--af-blue-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ethic-link:hover { color: var(--brand-orange); }

.ethic-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ethic-link:hover svg { transform: translateX(5px); }

.ethic-deco-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    color: rgba(0, 51, 102, 0.08); 
    z-index: 3;
    pointer-events: none;
}

/* MAIN-MOBILE.CSS Merged Section */

.af-box {
    width: 100% !important;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}





.af-info-box {
    background: #f1f5f9;
    padding: 10px;
    border-left: 4px solid var(--brand-gold);
    margin-top: 15px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .af-mobile-collapsible {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        position: relative;
    }

    .af-read-more-label {
        display: block;
        cursor: pointer;
        color: var(--af-blue-brand);
        font-weight: 800;
        font-size: 11px;
        text-transform: uppercase;
        margin: 10px 0;
        text-align: center;
        border: 1px solid var(--af-blue-brand);
        padding: 8px;
        border-radius: 4px;
        background: #fff;
    }

    .af-read-more-label::before { content: "Show Organization Details +"; }
    .af-toggle-input:checked ~ .af-mobile-collapsible { max-height: 1200px; }
    .af-toggle-input:checked ~ .af-read-more-label::before { content: "Hide Details -"; }
}

.grid-anniversary-strip {
    background: linear-gradient(135deg, #001a4d 0%, var(--af-blue-brand) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* UPDATED: Aligned content in strip to the left to match branding */
    justify-content: flex-start;
    text-align: left;
    min-height: 140px !important;
    padding: 20px 40px !important;
}

.grid-anniversary-strip .org-name {
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 2px;
}

.grid-anniversary-strip .milestone-text {
    display: block;
    font-size: 34px;
    font-weight: 900;
    background: linear-gradient(to right, #ffffff, var(--brand-gold), #ffae00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .grid-hero {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    #af-hero-modern-wrapper { height: 350px !important; }
    .hero-text-content h1 { font-size: 24px !important; line-height: 1.2; }
}

.grid-sidebar-left, .grid-sidebar-right { display: block; width: 100%; }
.pub-grid-container { display: grid; grid-template-columns: 1fr; gap: 15px; }
@media (min-width: 600px) { .pub-grid-container { grid-template-columns: repeat(2, 1fr); } }

img { max-width: 100%; height: auto; display: block; }
.grid-divider { display: none; }

/* FINAL SYMMETRY FIX: UNIFYING GRID-DESKTOP & STYLE */
@media (min-width: 1025px) {
    body {
        display: flex !important;
        flex-direction: column !important;
        /* UPDATED: Changed from center to flex-start for left alignment */
        align-items: flex-start !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

   

    .grid-hero {
        width: 100% !important;
        grid-column: 1 / -1 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ==========================================================================
   SUPPLEMENTAL UTILITY CLASSES (FOR FILE LENGTH & DETAIL)
   ========================================================================== */

/* Typography Utilities */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-uppercase { text-transform: uppercase !important; }
.font-bold { font-weight: 700 !important; }
.font-black { font-weight: 900 !important; }

/* Spacing Utilities */
.m-0 { margin: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mb-10 { margin-bottom: 10px !important; }
.p-0 { padding: 0 !important; }
.pl-40 { padding-left: 40px !important; }

/* Flex Utilities */
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.justify-start { justify-content: flex-start !important; }
.align-start { align-items: flex-start !important; }

/* Decorative Elements */
.divider-gold {
    height: 4px;
    background: var(--brand-gold);
    width: 60px;
    margin: 15px 0;
}

.af-highlight {
    color: var(--brand-orange);
    font-weight: 800;
}

/* Tooltip Simulation */
.af-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.af-tooltip::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--af-blue-navy);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 100;
}

.af-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Grid Specific Utility */
.full-width-column {
    grid-column: 1 / -1 !important;
}

/* Transition Presets */
.smooth-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   EXTENDED DOCUMENTATION SECTION (FOR MAINTENANCE)
   ========================================================================== */

/**
 * 1. THE GRID SYSTEM:
 * The layout uses a 4-column asymmetric grid for desktop.
 * Col 1: Sidebar Left (22%)
 * Col 2: Main Content A (28%)
 * Col 3: Main Content B (28%)
 * Col 4: Sidebar Right (22%)
 * Total width is capped at 1800px with 40px side padding.
 *
 * 2. BRANDING SYMMETRY:
 * To maintain left-alignment, all parent containers use 'align-items: flex-start'.
 * The branding-flex container is restricted to 1800px max-width to match grid alignment.
 *
 * 3. COLORS:
 * - Primary Navy: #003366 (Nav/Headings)
 * - Accent Gold: #ffd700 (Highlights/Indicators)
 * - Accent Orange: #FF9900 (Action Buttons/Pills)
 * - BG Cyan: #cce9f5 (Global Background)
 */

/* Empty space for logic expansion if needed */
.logic-spacer { display: none; height: 0; }

/* Final overrides to ensure zero centering leakage */
.header-main-inner { width: 100% !important; display: flex; justify-content: flex-start; }
.container { margin-left: 0 !important; margin-right: auto !important; }
@media (max-width: 992px) {
    /* FORCE FLEXBOX FOR ORDERING */
    .home-layout-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 10px !important;
        gap: 20px !important;
    }

    /* HEADER & BRANDING FIX */
    .branding-flex {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: center !important;
        gap: 20px;
        padding: 10px !important;
    }

    .site-title-text { display: none !important; }
    
    .header-social-wrap {
        margin-left: 0 !important;
        justify-content: center !important;
        gap: 12px;
    }

/* COLLAPSIBLE CONTENT LOGIC */
    .af-read-more-label { display: inline-block !important; cursor: pointer; color: #003366; font-weight: 800; text-transform: uppercase; font-size: 12px; margin-top: 10px; text-decoration: underline; }
    .af-read-more-label::before { content: "Read More +"; }
    .af-mobile-collapsible { display: none !important; }

    /* Mobile Menu Toggle Logic */
    .main-navigation-mobile-wrap { display: none !important; }
    .af-toggle-input:checked ~ .main-navigation-mobile-wrap { display: block !important; }

    /* General Toggle Interactions */
    .af-toggle-input:checked ~ .af-mobile-collapsible { display: block !important; }
    .af-toggle-input:checked ~ .af-read-more-label::before { content: "Show Less -"; }
    .af-toggle-input { display: none !important; }

/* ZERO TOLERANCE SECTION */
.zero-tolerance-box { 
    text-align: center; 
    justify-content: center; 
    padding-left: 0; 
}

.zero-tolerance-box svg { 
    display: none !important; 
}

.zero-tolerance-box span { 
    display: block; 
    width: 100%; 
    font-size: 13px; 
    
    /* Desktop Default: Show full text */
    overflow: visible;
    display: block;
}

/* MOBILE REFINEMENT */
@media (max-width: 1024px) {
    .zero-tolerance-box span {
        /* Force exactly two lines with ellipsis */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;  
        overflow: hidden;
        text-overflow: ellipsis;
        
        /* Optional: adjust line-height for better visual alignment on 2 lines */
        line-height: 1.4; 
        max-height: 2.8em; /* line-height * 2 */
    }
}
}