        :root {
            /* Industrial Color Palette */
            --primary: #0f2b46;       /* Deep Engineering Navy */
            --primary-light: #1a4168; /* Lighter Navy for hovers */
            --accent: #ff6b00;        /* Safety Orange / Heavy Machinery */
            --accent-glow: rgba(255, 107, 0, 0.15);
            
            --text: #1c1c1c;          /* Hard black for text */
            --text-light: #5c5c5c;    /* Industrial grey */
            --bg: #f4f5f7;            /* Light steel background */
            --bg-alt: #ffffff;        /* Clean white for cards */
            --bg-dark: #0a1929;       /* Deep dark blue/black */
            --border: #d1d5db;        /* Structural borders */
            
            /* Industrial Design Tokens */
            --radius-sm: 2px;        /* Sharp, machined edges */
            --radius: 4px;
            --shadow: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-lg: 0 10px 20px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
            --max-width: 1200px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

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

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

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Utility */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 6rem 0;
        }

        .section-alt {
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .section-dark {
            background: var(--bg-dark);
            color: #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        /* Subtle Blueprint Grid for Dark Sections */
        .section-dark::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
        }

        .section-header {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }
        
        /* Industrial Underline */
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent);
        }

        .section-header p {
            color: var(--text-light);
            font-size: 1.125rem;
            margin-top: 1.5rem;
        }

        .section-dark .section-header p {
            color: #94a3b8;
        }

        /* Buttons - Machined/Industrial Look */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 2;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 4px 0 #c54f00; /* 3D Mechanical effect */
            transform: translateY(0);
        }

        .btn-primary:hover {
            background: #e65f00;
            transform: translateY(-2px);
            box-shadow: 0 6px 0 #c54f00;
        }
        
        .btn-primary:active {
            transform: translateY(2px);
            box-shadow: 0 2px 0 #c54f00;
        }

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

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

        /* Navigation - Steel Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            border-bottom: 2px solid var(--primary); /* Heavy structural line */
            transition: var(--transition);
        }

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

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--primary);
			width: 65px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .nav-links a {
            color: var(--text);
            padding: 0.25rem 0;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 3px;
            background: var(--primary);
            margin: 5px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        /* Hero - Heavy Industry */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--bg-dark);
            color: white;
            position: relative;
            overflow: hidden;
            padding-top: 72px;
        }

        /* Neural Network / Mesh Background */
        #hero-mesh-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.4;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 640px;
        }

        .hero-kicker {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(255, 107, 0, 0.15);
            color: var(--accent);
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            border: 1px solid var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }

        .hero h1 span {
            color: var(--accent);
            position: relative;
        }

        .hero p {
            font-size: 1.25rem;
            color: #94a3b8;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .hero-visual {
            display: none;
        }

        /* Stats Bar - Caution Stripe Accents */
        .stats-bar {
            background: var(--primary);
            border-bottom: 4px solid var(--accent);
            padding: 2rem 0;
            color: white;
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            line-height: 1;
        }

        .stat-item p {
            font-size: 0.85rem;
            color: #94a3b8;
            margin-top: 0.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Services - Steel Plates */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .service-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--primary);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 40px 40px 0;
            border-color: transparent var(--border) transparent transparent;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-left-color: var(--accent);
        }

        .service-card:hover::before {
            border-color: transparent var(--accent) transparent transparent;
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: var(--bg);
            border-radius: var(--radius);
            display: grid;
            place-items: center;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            border: 1px solid var(--border);
        }

        .service-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            margin-bottom: 1.25rem;
            line-height: 1.2;
            text-transform: uppercase;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            border-left: 3px solid var(--border);
            padding-left: 1rem;
        }
        .about-content-software p{
            display: inline-flex;
            gap: 7px;
        }
        .about-content-software p img{
            width: 70px;
            height: 70px
        }
        .about-content p:nth-child(3) {
            border-left-color: var(--accent);
        }

        .about-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--primary);
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            color: #64748b;
            font-weight: 600;
            border: 2px solid var(--primary-light);
        }
        .about-image svg {
            opacity: 0.6;
        }
        .about-image span {
            color: white; 
            text-transform: uppercase; 
            font-weight: 700; 
            letter-spacing: 0.1em;
        }

        /* Projects - Heavy Duty Cards */
        .project-grid-combined {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .case-card {
            background: white;
            padding: 2.5rem;
            border-left: 6px solid var(--primary);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            border-radius: var(--radius);
            border-top: 1px solid var(--border);
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .case-card:hover {
            transform: translateY(-5px);
            border-left-color: var(--accent);
        }
        
        .case-card.highlight {
            background: var(--primary);
            color: white;
            border-left-color: var(--accent);
            border: 1px solid var(--primary-light);
        }
        
        .case-card.highlight .case-tag,
        .case-card.highlight p {
            color: #cbd5e1;
        }
        
        .case-card.highlight strong {
            color: white;
        }

        .case-tag {
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            font-size: 0.75rem;
            margin-bottom: 0.75rem;
            display: block;
            letter-spacing: 0.1em;
        }

        .case-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }


        .cta-microcopy {
            display: block;
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px dashed var(--border);
        }

        /* Footer CTA */
        .footer-cta {
            text-align: center;
            padding: 6rem 0;
            position: relative;
            z-index: 1;
        }

        .footer-cta h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }

        .footer-cta p {
            font-size: 1.25rem;
            color: #94a3b8;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-buttons {
            margin-bottom: 2rem;
        }

        .footer-trust-notes {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 0.875rem;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Footer - Bottom Plate */
        .footer {
            background: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
            border-top: 4px solid var(--accent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 1.5rem;
        }
        .footer-brand .logo img{
            width: 50px; 
            height: 50px; 
            object-fit: contain; 
            filter: brightness(0) 
                invert(1);

        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.6;
            max-width: 320px;
        }

        .footer-links h4 {
            color: white;
            font-size: 0.875rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--accent);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
        }

        /* Scroll Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (min-width: 640px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .project-grid-combined {
                grid-template-columns: repeat(2, 1fr);
            }
            .logo-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-visual {
                display: block;
            }
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
            .trust-layout {
                grid-template-columns: 1fr 2fr;
                gap: 2rem;
            }
            .main-partner {
                border-bottom: none;
                border-right: 1px solid var(--border);
                padding-bottom: 0;
                padding-right: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .logo-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (max-width: 767px) {
            .nav-links {
                position: fixed;
                inset: 72px 0 0 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                gap: 0;
                transform: translateX(100%);
                transition: var(--transition);
                border-top: 2px solid var(--primary);
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                border-bottom: 1px solid var(--border);
            }

            .mobile-toggle {
                display: block;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .hero {
                min-height: auto;
                padding: 8rem 0 4rem;
            }
            
            .footer-trust-notes {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            .reveal {
                transition: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
            #hero-mesh-canvas {
                display: none;
            }
        }

        /* Focus styles */
        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        /* Contact Form Layout */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        .contact-form-wrapper h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-align: center;
        }

        .contact-form-wrapper p {
            color: #94a3b8;
            margin-bottom: 2rem;
            font-size: 1.05rem;
            max-width: 500px;
        }

        /* Industrial Form Styles */
        .industrial-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .industrial-form label {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #cbd5e1;
        }

        .industrial-form .req {
            color: var(--accent);
        }

        .industrial-form input,
        .industrial-form select,
        .industrial-form textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #334155;
            border-radius: var(--radius-sm);
            padding: 0.875rem 1rem;
            color: white;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            border-left: 4px solid #334155;
        }
        
        .industrial-form select option {
            color: gray;
        }
        .industrial-form input:focus,
        .industrial-form select:focus,
        .industrial-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            border-left-color: var(--accent);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
        }

        .industrial-form select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
            padding-right: 2.5rem;
        }

        .industrial-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Checkbox Custom Styling */
        .checkbox-group {
            flex-direction: row;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 0.25rem;
            width: 20px;
            height: 20px;
            min-width: 20px;
            accent-color: var(--accent);
            cursor: pointer;
        }

        .checkbox-group label {
            cursor: pointer;
            color: #e2e8f0;
            text-transform: none;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .checkbox-subnote {
            display: block;
            color: #64748b;
            font-size: 0.85rem;
            margin-top: 0.25rem;
            font-style: italic;
        }

        .form-submit-btn {
            align-self: flex-start;
            margin-top: 0.5rem;
        }

        .show-block{
            display: block !important;
        }

        .honeypot{
            display: none;
        }

        .form-success-msg {
            display: none;
            margin-top: 1.5rem;
            padding: 1.25rem;
            background: rgba(255, 107, 0, 0.1);
            border: 1px solid var(--accent);
            border-left: 4px solid var(--accent);
            color: #cbd5e1;
            font-size: 0.95rem;
            border-radius: var(--radius-sm);
        }

        .success-content svg{
            width: 50px;
        }

        /* Direct Email & Trust Column */
        .contact-direct-wrapper {
            padding-top: 1rem;
        }

        .direct-email-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid #334155;
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2.5rem;
        }

        .direct-email-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            color: white;
        }

        .direct-email-card p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .email-link {
            display: inline-block;
            color: var(--accent);
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            border-bottom: 2px solid rgba(255, 107, 0, 0.3);
            transition: var(--transition);
            word-break: break-all;
        }

        .email-link:hover {
            color: white;
            border-bottom-color: white;
        }

        .trust-checklist {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #94a3b8;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .check-icon {
            color: var(--accent);
            font-weight: 900;
            font-size: 1.1rem;
        }

        /* Responsive adjustments for Form */
        @media (min-width: 768px) {
            .contact-layout {
                grid-template-columns: 1.2fr 0.8fr;
            }
        }

        @media (max-width: 767px) {
            .direct-email-card {
                text-align: center;
            }
            .trust-checklist {
                align-items: center;
            }
        }


         /* ===== Radio Card — Realistic Radio ===== */
        .radio-card {
            --radio-bg: #1a1a1e;
            --radio-surface: #232328;
            --radio-accent: #e8a027;
            --radio-accent-dim: #b37a1a;
            --radio-glow: rgba(232, 160, 39, 0.15);
            --radio-text: #e0dcd4;
            --radio-muted: #7a7670;
            --radio-green: #4caf50;
            --radio-red: #ef5350;
            --chassis-radius: 14px;
        }

        .radio-card {
            background: var(--radio-bg) !important;
            border: 1.5px solid #333338 !important;
            box-shadow:
                0 2px 20px rgba(0,0,0,0.5),
                inset 0 1px 0 rgba(255,255,255,0.04);
            overflow: visible;
        }

        /* ---- Card Header ---- */
        .radio-card .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 14px;
            border-bottom: 1px solid #2e2e33;
            margin-bottom: 16px;
        }

        .radio-card .card-header h3 {
            flex: 1;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--radio-text);
            text-shadow: 0 0 8px var(--radio-glow);
        }

        @keyframes signalPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .live-badge {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--radio-red);
            background: rgba(239, 83, 80, 0.12);
            padding: 2px 8px;
            border-radius: 4px;
            animation: liveFlash 2s ease-in-out infinite;
        }
        @keyframes liveFlash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ---- Tuner Display ---- */
        .tuner-display {
            margin-bottom: 14px;
        }
        .tuner-glass {
            border: 1px solid #2a2a30;
            border-radius: 8px;
            padding: 12px 16px 10px;
            box-shadow:
                inset 0 2px 8px rgba(0,0,0,0.6),
                0 1px 0 rgba(255,255,255,0.03);
            position: relative;
            overflow: hidden;

            /* Background: Base dark gradient + Horizontal lines + Vertical lines */
            background: 
                repeating-linear-gradient(
                    0deg, 
                    transparent, 
                    transparent 9px, 
                    rgba(255, 255, 255, 0.03) 9px, 
                    rgba(255, 255, 255, 0.03) 10px
                ),
                repeating-linear-gradient(
                    90deg, 
                    transparent, 
                    transparent 9px, 
                    rgba(255, 255, 255, 0.03) 9px, 
                    rgba(255, 255, 255, 0.03) 10px
                ),
                linear-gradient(180deg, #0d0d10 0%, #15151a 100%);
        }

        /* Glass reflection */
        .tuner-glass::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 40%;
            background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
            pointer-events: none;
            border-radius: 8px 8px 0 0;
            z-index: 1;
        }

        .frequency-scale {
            display: flex;
            justify-content: space-between;
            font-size: 9px;
            color: #555560;
            margin-bottom: 4px;
            font-family: 'Courier New', monospace;
            user-select: none;
            position: relative;
            z-index: 2;
        }

        .tuner-needle-track {
            height: 3px;
            background: rgba(255,255,255,0.05);
            border-radius: 2px;
            position: relative;
            margin-bottom: 10px;
            z-index: 2;
        }

        .tuner-needle {
            position: absolute;
            top: -6px;
            left: 54%; /* Fixed position for single station */
            width: 2px;
            height: 15px;
            background: var(--radio-accent);
            border-radius: 1px;
            box-shadow: 0 0 6px var(--radio-accent);
            transition: left 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 3;
        }
        .tuner-needle::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            width: 8px;
            height: 8px;
            background: var(--radio-accent);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--radio-accent);
        }

        .frequency-readout {
            display: flex;
            align-items: baseline;
            gap: 6px;
            position: relative;
            z-index: 2;
        }
        .freq-value {
            font-family: 'Courier New', monospace;
            font-size: 28px;
            font-weight: 700;
            color: var(--radio-accent);
            text-shadow: 0 0 12px rgba(232, 160, 39, 0.5);
            letter-spacing: 2px;
        }
        .freq-unit {
            font-size: 12px;
            color: var(--radio-muted);
            font-weight: 600;
        }
        .stereo-indicator {
            margin-left: auto;
            font-size: 10px;
            font-weight: 800;
            color: var(--radio-green);
            opacity: 0;
            transition: opacity 0.5s;
            text-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
        }
        .radio-card.playing .stereo-indicator {
            opacity: 1;
        }

        /* ---- Player Controls ---- */
        .player-controls {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .transport-row {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
        }

        .btn-radio {
            background: var(--radio-surface) !important;
            border: 1px solid #3a3a40 !important;
            color: var(--radio-text) !important;
            border-radius: 8px !important;
            cursor: pointer;
            transition: all 0.2s;
            font-family: inherit;
            outline: none;
        }
        .btn-radio:hover:not(:disabled) {
            background: #2c2c32 !important;
            border-color: var(--radio-accent) !important;
            box-shadow: 0 0 8px var(--radio-glow);
        }
        .btn-radio:active:not(:disabled) {
            transform: scale(0.96);
        }
        .btn-radio:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .btn-transport {
            padding: 8px 16px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            display: flex;
            align-items: center;
            gap: 6px;
            position: relative;
            overflow: hidden;
        }

        .btn-transport.btn-main {
            background: rgba(232, 160, 39, 0.1) !important;
            border-color: var(--radio-accent-dim) !important;
            color: var(--radio-accent) !important;
        }
        .btn-transport.btn-main:hover:not(:disabled) {
            background: rgba(232, 160, 39, 0.2) !important;
        }

        .play-icon {
            font-size: 12px;
            display: inline-block;
        }

        /* ---- Volume Row ---- */
        .volume-row {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 4px;
        }
        .vol-icon {
            font-size: 14px;
            opacity: 0.5;
            user-select: none;
        }
        .volume-slider-wrap {
            flex: 1;
            position: relative;
            height: 20px;
            display: flex;
            align-items: center;
        }

        .volume-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 4px;
            background: #2a2a30;
            border-radius: 2px;
            outline: none;
            position: relative;
            z-index: 2;
            cursor: pointer;
        }
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--radio-accent);
            box-shadow: 0 0 6px rgba(232, 160, 39, 0.4);
            cursor: pointer;
            transition: box-shadow 0.2s;
        }
        .volume-slider::-webkit-slider-thumb:hover {
            box-shadow: 0 0 12px rgba(232, 160, 39, 0.7);
        }
        .volume-slider::-moz-range-thumb {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--radio-accent);
            border: none;
            box-shadow: 0 0 6px rgba(232, 160, 39, 0.4);
            cursor: pointer;
        }

        .volume-fill {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 4px;
            background: var(--radio-accent);
            border-radius: 2px;
            pointer-events: none;
            z-index: 1;
            transition: width 0.05s;
        }

        /* ---- Now Playing Ticker ---- */
        .now-playing {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--radio-surface);
            border: 1px solid #2a2a30;
            border-radius: 6px;
            padding: 8px 12px;
            min-height: 36px;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--radio-muted);
            flex-shrink: 0;
            transition: background 0.3s;
        }
        .radio-card.playing .status-dot {
            background: var(--radio-green);
            box-shadow: 0 0 6px rgba(76, 175, 80, 0.6);
            animation: dotPulse 1.5s ease-in-out infinite;
        }
        @keyframes dotPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .ticker-wrap {
            flex: 1;
            overflow: hidden;
            white-space: nowrap;
            mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        .ticker-text {
            display: inline-block;
            font-size: 12px;
            color: var(--radio-muted);
            letter-spacing: 0.3px;
            transition: color 0.3s;
        }
        .radio-card.playing .ticker-text {
            color: var(--radio-text);
            animation: tickerScroll 12s linear infinite;
        }

        @keyframes tickerScroll {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* ---- Chassis bottom detail ---- */
        .radio-card::after {
            content: '';
            display: block;
            margin: 16px -0px -0px -0px;
            height: 3px;
            background: linear-gradient(90deg,
                transparent 0%,
                var(--radio-accent-dim) 20%,
                var(--radio-accent) 50%,
                var(--radio-accent-dim) 80%,
                transparent 100%
            );
            border-radius: 0 0 var(--chassis-radius) var(--chassis-radius);
            opacity: 0;
            transition: opacity 0.5s;
        }
        .radio-card.playing::after {
            opacity: 0.6;
        }

        /* ---- Static noise overlay when not playing ---- */
        .radio-body {
            position: relative;
        }
        .radio-body::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            border-radius: 8px;
            z-index: 0;
            opacity: 1;
            transition: opacity 0.5s;
        }
        .radio-card.playing .radio-body::before {
            opacity: 0;
        }   
        .radio-icon{
            width: 50px; height: 50px; object-fit: contain; filter: brightness(0) invert(1); 
            margin-bottom: -10px;
        } 
        /* ===== HUB LAYOUTS ===== */
        .hub-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
            align-items: stretch;
        }

        @media (min-width: 768px) {
            .radio-hub-section {
                grid-template-columns: 1fr 1.5fr; /* Radio left, Info right */
            }
            .news-hub-section {
                grid-template-columns: 1fr 1.5fr; /* List left, Carousel right */
            }
        }

        /* ===== BASE CARD (Ensures nothing overflows on mobile) ===== */
        .hub-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            box-sizing: border-box; /* Critical for mobile width containment */
            max-width: 100%; /* Prevents horizontal blowout */
            word-wrap: break-word; /* Forces long text to wrap */
        }
        .hub-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: var(--primary);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        .card-header svg {
            color: orange;
        }
        .card-header h3 {
            font-size: 0.95rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary);
        }

        /* ===== RADIO INFO CARD ===== */
        .radio-info-card {
            background: #1a1a1e !important;
            border: 1.5px solid #333338 !important;
            color: #e0dcd4;
            display: flex;
            flex-direction: column;
        }
        .radio-info-card .card-header h3 {
            color: #e8a027;
        }
        .radio-desc {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #b0aca4;
            margin-bottom: 1.5rem;
        }
        .program-schedule h4 {
            font-size: 0.85rem;
            color: #e8a027;
            margin-bottom: 0.75rem;
        }
        .program-schedule ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .program-schedule li {
            font-size: 0.85rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid #2e2e33;
            color: #c0bcb4;
        }
        .program-schedule .time {
            font-weight: 700;
            color: #e0dcd4;
            margin-right: 0.5rem;
        }

        /* ===== NEWS LIST CARD ===== */
        .news-list-card {
            display: flex;
            flex-direction: column;
        }

        .news-list-scroll {
            flex: 1;
            max-height: 350px; /* Adjust to match carousel height on desktop */
            overflow-y: auto;
            padding-right: 0.5rem;
            border-top: 1px solid var(--border);
            margin-top: 0.5rem;
        }

        /* Custom Scrollbar */
        .news-list-scroll::-webkit-scrollbar {
            width: 6px;
        }
        .news-list-scroll::-webkit-scrollbar-track {
            background: var(--bg-alt);
            border-radius: 3px;
        }
        .news-list-scroll::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }
        .news-list-scroll::-webkit-scrollbar-thumb:hover {
            background: var(--text-light);
        }

        .news-list-item {
            padding: 1rem 0;
            border-bottom: 1px solid var(--border);
        }
        .news-list-item:last-child {
            border-bottom: none;
        }

        .news-list-text {
            margin: 0 0 0.5rem 0;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text);
            /* Force exactly 2 lines and hide overflow */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-list-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }
        .news-date {
            color: var(--text-light);
        }
        .news-list-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 700;
            transition: color 0.2s;
        }
        .news-list-link:hover {
            color: var(--primary);
        }

        /* ===== NEWS CAROUSEL CARD ===== */
        .news-carousel-card {
            display: flex;
            flex-direction: column;
        }

        .news-carousel-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: var(--bg-dark);
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--accent);
            overflow: hidden;
            position: relative;
        }

        .carousel-viewport {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .news-slide {
            min-width: 100%;
            height: 100%;
            padding: 1.5rem;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #e2e8f0;
        }

        .news-slide .tag {
            display: inline-block;
            align-self: flex-start;
            padding: 0.2rem 0.6rem;
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent);
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 0.05em;
            border-radius: 3px;
            margin-bottom: 1rem;
        }

        .news-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #cbd5e1;
            margin: 0 0 1.25rem 0;
        }

        .news-link {
            display: inline-block;
            align-self: flex-start;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s, transform 0.2s;
        }
        .news-link:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            background: rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .carousel-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #e2e8f0;
            width: 32px; height: 32px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1rem;
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .carousel-btn:hover:not(:disabled) {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
            color: var(--accent);
        }
        .carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
        .news-counter { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.4); font-family: 'Courier New', monospace; }

        /* ===== MOBILE RESPONSIVE FIXES ===== */
        @media (max-width: 767px) {
            .hub-section {
                gap: 1.5rem;
            }
            .hub-card {
                padding: 1.5rem;
                width: 100%; /* Force full width containment */
            }
            /* Fix Radio elements blowing out on mobile */
            .radio-body, .player-controls, .transport-row, .volume-slider-wrap, .now-playing {
                min-width: 0; /* Resets flexbox minimum width which causes overflow */
            }
            .tuner-glass, .volume-slider-wrap {
                width: 100%;
            }
            .volume-slider {
                min-width: 0; 
            }
            .news-list-scroll {
                max-height: 350px; /* Slightly shorter on mobile to balance layout */
            }
        }   
        /* ========================================================
           YAHOO-STYLE NEWS HUB LAYOUT
           ======================================================== */

        /* Main 2-column Layout (75% Left, 25% Right) */
        .hub-section.yn-hub-layout {
            display: flex;
            gap: 30px;
            align-items: flex-start;
        }

        /* Left Column Wrapper */
        .hub-card.yn-news-column {
            flex: 3; /* Takes up 75% of the space */
            min-width: 0;
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        /* Right Column Wrapper (Sticky Sidebar) */
        .hub-card.yn-highlights-column {
            flex: 1; /* Takes up 25% of the space */
            position: sticky;
            top: 80px; /* Sticks to the top while scrolling the page */
            min-width: 280px;
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        /* --- LEFT COLUMN: Horizontal News Items --- */
        .yn-news-list {
            display: flex;
            flex-direction: column;
        }

        .yn-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
        }
        .yn-item:last-child {
            border-bottom: none;
        }

        /* Image Container */
        .yn-img-wrapper {
            flex-shrink: 0;
            width: 190px;
            height: 110px;
            border-radius: 8px;
            overflow: hidden;
            background: #f4f4f4;
        }

        .yn-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .yn-item:hover .yn-img {
            transform: scale(1.05);
        }

        .yn-img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #ccc;
            background: #2c3e50;
        }

        /* Text Content */
        .yn-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .yn-source {
            font-size: 0.75rem;
            color: #888;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        /* ORANGE Title */
        .yn-title {
            margin: 0 0 8px 0;
            font-size: 1.1rem;
            line-height: 1.3;
            font-weight: 600;
        }
        .yn-title a {
            color: #FF8C00; /* Yahoo-style Orange */
            text-decoration: none;
            transition: color 0.2s;
        }
        .yn-title a:hover {
            color: #e67e00;
            text-decoration: underline;
        }

        /* 3-Line Description with Dots */
        .yn-desc {
            margin: 0 0 10px 0;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #444;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* Limits to exactly 3 lines */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis; /* Adds the '...' if it overflows */
        }

        .yn-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.8rem;
        }
        .yn-date {
            color: #999;
        }
        .yn-read-link {
            color: #555;
            font-weight: 600;
            text-decoration: none;
        }
        .yn-read-link:hover {
            color: #FF8C00;
        }

        /* Pagination Styling */
        .yn-pagination {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .yn-pagination a, .yn-pagination span {
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 0.9rem;
            text-decoration: none;
            border: 1px solid #ddd;
            color: #333;
            background: #fff;
            transition: all 0.2s;
        }
        .yn-pagination a:hover {
            background: #FF8C00;
            color: #fff;
            border-color: #FF8C00;
        }
        .yn-pagination .active {
            background: #FF8C00;
            color: #fff;
            border-color: #FF8C00;
            font-weight: bold;
        }
        .yn-pagination .disabled {
            color: #aaa;
            border-color: #eee;
            background: #f9f9f9;
            pointer-events: none;
        }

        /* --- RIGHT COLUMN: Stacked Highlights --- */
        .yn-highlights-column .card-header {
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF8C00;
        }

        .yn-highlights-stack {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .yn-highlight-box {
            background: #fffbf0; /* Very faint orange background */
            border: 1px solid #ffe0b2;
            border-radius: 8px;
            padding: 15px;
            transition: box-shadow 0.2s;
        }
        .yn-highlight-box:hover {
            box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
        }

        .yn-highlight-tag {
            display: inline-block;
            background: #FF8C00;
            color: #fff;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .yn-highlight-text {
            font-size: 0.9rem;
            line-height: 1.5;
            color: #333;
            margin: 0 0 10px 0;
            font-weight: 500;
        }

        .yn-highlight-link {
            font-size: 0.8rem;
            color: #FF8C00;
            text-decoration: none;
            font-weight: 700;
        }
        .yn-highlight-link:hover {
            text-decoration: underline;
        }
			
		.program-schedule li.active-show {
			font-weight: bold;
			color: #ff4d4d; /* A nice radio red */
			background-color: rgba(255, 77, 77, 0.1); /* Light red background */
			border-radius: 4px;
		}

		.program-schedule li.active-show .time {
			color: #ff4d4d;
		}			

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 900px) {
            /* Stack columns on tablet/mobile */
            .hub-section.yn-hub-layout {
                flex-direction: column;
            }

            .hub-card.yn-highlights-column {
                position: static; /* Disable sticky on mobile */
                width: 100%;
                min-width: unset;
            }

            /* Stack image over text on small screens */
            .yn-item {
                flex-direction: column;
                gap: 12px;
            }

            .yn-img-wrapper {
                width: 100%;
                height: 200px;
            }
        }
        /* Core Layout Container */
        .news-thumbnail {
            width: 100%;
            height: 100%;
            position: relative;
            background-color: #0b0f19;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px 10px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            box-sizing: border-box;
            margin: auto;
            border: 2px solid orange;
        }
		/* --- Trust Layout Container --- */
		.trust-layout {
			display: flex;
			justify-content: center;
			align-items: center;
			padding: 2rem 0;
		}

		/* --- Image Wrapper --- */
		.partner-cloud-image {
			max-width: 900px; /* Adjust this to make the image larger or smaller on desktop */
			width: 100%;
			margin: 0 auto;
			overflow: hidden;
		}

		/* --- Image itself --- */
		.partner-cloud-image img {
			width: 100%;
			height: auto;
			display: block;
		}

		/* --- NDA Microcopy --- */
		.cta-microcopy {
			text-align: center;
			font-style: italic;
			color: #666;
			margin-top: 3rem;
			font-size: 0.95rem;
			max-width: 600px;
			margin-left: auto;
			margin-right: auto;
			line-height: 1.6;
		}

		/* --- Responsive --- */
		@media (max-width: 768px) {
			.partner-cloud-image {
				max-width: 100%; /* On mobile, let it span edge to edge */
				border-radius: 8px; /* Slightly smaller radius on mobile */
			}

			.cta-microcopy {
				font-size: 0.85rem;
				margin-top: 2rem;
			}
		}			
        .news-thumbnail-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px; /* Match your site's styling */
        }