:root {
    --primary-color: #111111;
    --secondary-color: #444444;
    --bg-color: #FFFFFF;
    --accent-color: #D4A373;
    --spacing-unit: clamp(1rem, 2vw, 2rem);
    
    /* Enhanced responsive spacing system */
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(1rem, 2vw, 1.5rem);
    --spacing-md: clamp(1.5rem, 3vw, 2.5rem);
    --spacing-lg: clamp(2rem, 4vw, 3.5rem);
    --spacing-xl: clamp(3rem, 6vw, 5rem);
    
    /* Fluid typography system */
    --font-size-xs: clamp(0.75rem, 2vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 2.5vw, 1rem);
    --font-size-base: clamp(1rem, 3vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 3.5vw, 1.25rem);
    --font-size-xl: clamp(1.25rem, 4vw, 1.5rem);
    --font-size-2xl: clamp(1.5rem, 5vw, 2rem);
    --font-size-3xl: clamp(2rem, 6vw, 2.5rem);
    --font-size-4xl: clamp(2.5rem, 8vw, 3.5rem);
    
    /* Container max-widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

/* Global strong tag styling */
strong {
    font-weight: 600;
    color: var(--accent-color);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--bg-color);
    font-size: var(--font-size-base);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: var(--spacing-unit);
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 var(--spacing-unit);
    position: relative;
}

/* Right-side icon container */
.nav-icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Navigation elements inherit font from body */

/* Screen reader only class - hides elements visually but keeps them accessible */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Reduce horizontal padding on mobile for tighter icon grouping */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-icons {
        gap: 0.8rem;
    }
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 68px;
    width: auto;
    display: block;
    margin: calc(var(--spacing-unit) * -0.5) 0;
}

/* Mobile logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 45px;
        margin: calc(var(--spacing-unit) * -0.25) 0;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

/* Mobile Close Button - Hidden on Desktop */
.mobile-close-btn {
    display: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    margin-left: 2rem;
}

.dropdown-toggle::after {
    content: '▾';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0;
    border-radius: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-menu a:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-menu a:hover {
    background-color: #F8F8F8;
    color: var(--primary-color);
}

.dropdown-menu a.active {
    background-color: var(--primary-color);
    color: white;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: calc(40vh - 40px);
    display: flex;
    align-items: center;
    padding: calc(var(--spacing-unit) * 0.25);
    background-color: var(--bg-color);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 0.5);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 0.5);
    letter-spacing: -0.02em;
    max-width: 1200px;
}

h1 strong {
    font-weight: 600;
    color: var(--accent-color);
}

.underline {
    position: relative;
    white-space: nowrap;
}

.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.1em;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    opacity: 0.7;
}

/* About Page */
.about-hero {
    padding: calc(var(--spacing-unit) * 6) var(--spacing-unit) calc(var(--spacing-unit) * 3);
    background-color: var(--bg-color);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.intro-text {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--secondary-color);
    max-width: 800px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.intro-text em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 500;
}

.about-content {
    padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
    background-color: #F8F8F8;
}

.content-block {
    margin-bottom: calc(var(--spacing-unit) * 4);
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
}

@media (min-width: 768px) {
    .content-block {
        grid-template-columns: 240px 1fr;
        gap: calc(var(--spacing-unit) * 3);
    }
}

.content-block .illustration {
    width: 240px;
    height: 240px;
    margin: 0 auto;
}

.content-block .emoji-illustration {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 180px;
    line-height: 1;
}

.content-block .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--primary-color);
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    color: var(--secondary-color);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.highlight {
    font-size: 1.25rem !important;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.nav-links .active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Home About Section */
.about {
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    background-color: #F8F8F8;
}

.container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
}

@media (min-width: 640px) {
    .container {
        max-width: var(--container-sm);
        padding: 0 var(--spacing-md);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-md);
        padding: 0 var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: var(--container-lg);
        padding: 0 var(--spacing-xl);
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: var(--container-xl);
        padding: 0 var(--spacing-xl);
    }
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
}

.about-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-unit);
    font-weight: 500;
}

.about-item p {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Companies Page */
.companies-hero {
    padding: calc(var(--spacing-unit) * 6) var(--spacing-unit) calc(var(--spacing-unit) * 3);
    background-color: var(--bg-color);
    text-align: center;
}

.companies-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 500;
    color: var(--primary-color);
}

.companies-hero .intro-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--secondary-color);
    line-height: 1.6;
}

.companies-grid {
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    background-color: #F8F8F8;
}

.company-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    max-width: 1200px;
    margin: 0 auto;
}

.company-tile {
    background: white;
    border-radius: 16px;
    padding: calc(var(--spacing-unit) * 2);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    justify-content: center;
}

.company-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.company-tile.placeholder {
    opacity: 0.6;
    cursor: default;
}

.company-tile.placeholder:hover {
    transform: none;
    box-shadow: none;
    border-color: #E5E5E5;
}

.company-logo {
    margin-bottom: calc(var(--spacing-unit) * 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.company-logo-image {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Special styling for SponsorCX logo with black background */
.company-logo img[src*="sponsorcx-small"] {
    background-color: #000000;
    padding: 8px;
    border-radius: 4px;
}

/* Shakespeare quote specific styling */
.quotation.shakespeare-quote > div blockquote {
    font-size: clamp(0.8rem, 2vw, 1.0rem);
}

.quotation.shakespeare-quote > div cite {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

.company-logo-placeholder {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
}

.placeholder-logo {
    font-size: 48px;
    opacity: 0.5;
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-unit);
    font-weight: 500;
    color: var(--primary-color);
}

.company-info p {
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.5;
    margin: 0;
}

.company-url {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
    margin-top: var(--spacing-unit);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    opacity: 0.8;
}

.company-stage {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: calc(var(--spacing-unit) * 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Page */
.contact-hero {
    padding: calc(var(--spacing-unit) * 6) var(--spacing-unit) calc(var(--spacing-unit) * 3);
    background-color: var(--bg-color);
    text-align: center;
}

.contact-intro {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--secondary-color);
    max-width: 600px;
    margin: 1rem auto 0;
}

.contact-content {
    padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
    background-color: #F8F8F8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 3);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mailing-list, .social-connect {
    text-align: center;
    padding: calc(var(--spacing-unit) * 2);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.signup-form {
    margin-top: calc(var(--spacing-unit) * 2);
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-group input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: var(--font-size-base);
    background: transparent;
    min-width: 0;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group button {
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.form-group button:hover {
    background-color: #BC8F65;
}

.linkedin-button {
    display: inline-block;
    margin-top: calc(var(--spacing-unit) * 2);
    padding: 0.75rem 1.5rem;
    background-color: #0A66C2;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.linkedin-button:hover {
    background-color: #004182;
}

/* Home Contact Section */
.mailing-list {
    padding: calc(var(--spacing-unit) * 6) var(--spacing-unit);
    text-align: center;
    background-color: var(--bg-color);
}

.mailing-list h2 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    font-weight: 500;
}

.mailing-list-text {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-weight: 400;
}

.signup-form {
    max-width: min(600px, 90vw);
    margin: 0 auto;
    width: 100%;
}

.form-group {
    display: flex;
    gap: var(--spacing-sm);
    background: white;
    border-radius: 100px;
    padding: 0.5rem;
    border: 1px solid #E0E0E0;
    width: 100%;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: inherit;
    font-size: 1.125rem;
    color: var(--primary-color);
    background: transparent;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
}

.form-group button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.form-group button:hover {
    background-color: #000;
}

/* Footer */
footer {
    padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    background-color: #F8F8F8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--secondary-color);
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger-menu {
        display: flex;
    }
    
    .mobile-close-btn {
    display: none;
}
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: calc(var(--spacing-unit) * 6) calc(var(--spacing-unit) * 3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 0;
        padding: calc(var(--spacing-unit) * 1.5) 0;
        font-size: 1.2rem;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        width: 100%;
        text-decoration: none;
        color: var(--secondary-color);
        transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
        color: var(--primary-color);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Dropdown */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        margin: 0;
        padding: calc(var(--spacing-unit) * 1.5) 0;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .dropdown-toggle::after {
        content: '▾';
        font-size: 1rem;
        transition: transform 0.2s ease;
    }
    
    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8f8f8;
        margin: calc(var(--spacing-unit) * 0.5) 0;
        padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
        display: none;
        border-radius: 8px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: calc(var(--spacing-unit) * 1) 0;
        font-size: 1.1rem;
        color: var(--secondary-color);
        border-bottom: 1px solid #e0e0e0;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    /* Mobile Close Button */
.mobile-close-btn {
    position: absolute;
    top: calc(var(--spacing-unit) * 2);
    right: calc(var(--spacing-unit) * 2);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    display: none;
}
    
    .mobile-close-btn:hover {
        background-color: #f0f0f0;
        color: var(--primary-color);
    }
    

    
    .hero {
        padding: calc(var(--spacing-unit) * 2);
    }

    .about, .contact {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-unit);
        text-align: center;
    }

    .footer-links a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 38px;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    /* Small mobile intro-text adjustments */
    .hero-content .intro-text,
    .about-hero .intro-text,
    .way-of-openness-hero .intro-text {
        font-size: 1.25rem !important;
        line-height: 1.7 !important;
    }
}

/* Way of Openness Page Styles */
.way-of-openness-hero,
.companies-hero,
.about-hero {
    padding-top: calc(var(--spacing-unit) * 3);
    padding-bottom: calc(var(--spacing-unit) * 0.5);
    min-height: auto;
}

.source-text {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-top: var(--spacing-unit);
}

.source-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.source-text a:hover {
    text-decoration: underline;
}

.content-section {
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    background-color: #F8F8F8;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    max-width: 1400px;
    margin: 0 auto;
}

.principle-card {
    background: white;
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.principle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.principle-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-unit);
    letter-spacing: -0.01em;
}

.principle-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    background-color: var(--bg-color);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto var(--spacing-unit);
}

/* Responsive adjustments for Way of Openness page */
@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-unit);
    }

    .principle-card {
        padding: calc(var(--spacing-unit) * 1.5);
    }

    .content-section {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }

    .cta-section {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
}

/* Team Page Styles */
.team-hero {
    padding: calc(var(--spacing-unit) * 6) var(--spacing-unit) calc(var(--spacing-unit) * 3);
    background-color: var(--bg-color);
}

.team-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.team-grid {
    padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
    background-color: #F8F8F8;
}

/* ===== TEAM TILES - SIMPLE WORKING VERSION ===== */
.team-tiles {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: calc(var(--spacing-unit) * 2);
    padding: 0 calc(var(--spacing-unit) * 2);
    justify-items: center;
}

/* Mobile: single column */
@media (max-width: 768px) {
    .team-tiles {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
        padding: 0 calc(var(--spacing-unit) * 1);
    }
}

/* Clickable team tile container */
.team-tile-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    /* Smooth hover movement */
    transition: transform 0.2s ease;
}

.team-tile-link:hover {
    /* Lift the entire tile on hover */
    transform: translateY(-4px);
}

/* Team tile content */
.team-tile {
    background: white;
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0;
    /* Vertical layout: image on top, content below */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Increased height for better content fit */
    height: 450px;
    /* Smooth card hover effects */
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-tile-link:hover .team-tile {
    /* Enhanced shadow and accent border on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

/* Team image */
.team-image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    margin-bottom: 1rem;
}

/* Team content */
.team-content {
    padding: 0;
    width: 100%;
}

.team-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.1rem;
    letter-spacing: -0.01em;
}

.team-content p {
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 1rem;
}

.team-content p:not(.team-role) {
    margin-top: 1.5rem;
}

.team-info h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.team-role {
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.1rem;
}

.team-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.team-links {
    display: flex;
    gap: var(--spacing-unit);
    /* Re-enable pointer events for social links */
    pointer-events: auto;
}

.team-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-link:hover {
    color: var(--primary-color);
}

.team-link svg {
    transition: transform 0.2s ease;
}

.team-link:hover svg {
    transform: scale(1.1);
}



/* Responsive adjustments for Team page */
@media (max-width: 768px) {
    .team-tile {
        flex-direction: column;
        text-align: center;
        padding: calc(var(--spacing-unit) * 2);
    }

    .placeholder-photo {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .team-hero {
        padding: calc(var(--spacing-unit) * 3) var(--spacing-unit) calc(var(--spacing-unit) * 2);
    }

    .team-grid {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
}

/* Profile Page Styles */
.profile-hero {
    padding: calc(var(--spacing-unit) * 3) var(--spacing-unit) calc(var(--spacing-unit) * 2);
    background-color: var(--bg-color);
}

.profile-info h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.profile-role {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.profile-links {
    display: flex;
    gap: var(--spacing-unit);
    flex-wrap: wrap;
}

.profile-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-link:hover {
    color: var(--primary-color);
}

.profile-link svg {
    transition: transform 0.2s ease;
}

.profile-link:hover svg {
    transform: scale(1.1);
}

.profile-header {
    display: flex;
    gap: calc(var(--spacing-unit) * 3);
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-photo {
    flex-shrink: 0;
}

/* ===== STANDARDIZED QUOTE BOX COMPONENT ===== */
.profile-quote-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 700px;
    display: flex;
    flex-direction: column;
}

/* Tablet responsive adjustments */
@media (max-width: 1024px) {
    .profile-quote-box {
        height: 650px;
    }
    
    .quote-image {
        min-height: 250px;
        max-height: 300px;
    }
    
    .quote-text {
        min-height: 250px;
    }
}

/* Medium mobile adjustments */
@media (max-width: 768px) {
    .profile-quote-box {
        height: 620px;
    }
    
    .quote-image {
        min-height: 220px;
        max-height: 260px;
    }
    
    .quote-text {
        min-height: 220px;
    }
}

.profile-quote-box h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 2);
    background: white;
    flex-shrink: 0;
    letter-spacing: -0.01em;
}

.quote-image {
    flex: 0 0 auto;
    overflow: hidden;
    min-height: 250px;
    max-height: 300px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 1);
    /* Match the image's natural aspect ratio (416x500 = 0.832) */
    aspect-ratio: 5 / 6;
}

.quote-bg-image {
    /* Image fills the container that matches its aspect ratio */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.quote-text {
    background: white;
    padding: calc(var(--spacing-unit) * 2);
    flex: 1;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow-y: auto;
}

.quote-text blockquote {
    /* Responsive font scaling with fluid text display - consistent with index page */
    font-size: clamp(0.9rem, 2.2vw, 1.3rem);
    line-height: 1.4;
    margin: 0 0 calc(var(--spacing-unit) * 1) 0;
    /* Fluid text wrapping with strategic overflow handling */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.quote-text cite {
    /* Responsive font scaling for citation - consistent with index page */
    font-size: clamp(0.7rem, 1.6vw, 1rem);
    line-height: 1.3;
    margin: 0;
    /* Fluid text wrapping for citation */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    color: var(--secondary-color);
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.profile-image {
    width: 300px;
    height: 400px;
    border-radius: 12px;
    object-fit: cover;
}

.profile-content {
    padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    background-color: #F8F8F8;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 3);
    max-width: 1200px;
    margin: 0 auto;
}

.personal-lore-section {
    background: white;
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.personal-lore-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
    letter-spacing: -0.01em;
}

.personal-lore-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.profile-quote {
    max-width: 1200px;
    margin: 0 auto calc(var(--spacing-unit) * 3);
}

.profile-quote blockquote {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: calc(var(--spacing-unit) * 2);
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.profile-sections-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile layout - two column */
.profile-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: calc(var(--spacing-unit) * 3);
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
}

.profile-main {
    grid-column: 1;
}

.profile-sidebar {
    grid-column: 2;
}

.profile-quote {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: calc(var(--spacing-unit) * 2);
    border-radius: var(--border-radius);
    text-align: center;
    position: sticky;
    top: calc(var(--spacing-unit) * 2);
}

.profile-quote blockquote {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 calc(var(--spacing-unit) * 1) 0;
}

.profile-quote cite {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: normal;
}

/* Responsive design for profile layout */
@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .profile-main {
        grid-column: 1;
    }
    
    .profile-sidebar {
        grid-column: 1;
    }
    
    .profile-quote {
        position: static;
    }
    
    .profile-quote-box {
        height: 700px;
    }
    
    .quote-image {
        min-height: 400px;
        max-height: 450px;
    }
    
    .quote-bg-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .profile-main {
        grid-column: 1;
    }
    
    .profile-sidebar {
        grid-column: 1;
    }
    
    .profile-quote {
        position: static;
    }
}

.profile-section {
    background: white;
    padding: calc(var(--spacing-unit) * 2);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.profile-section.full-width {
    grid-column: 1 / -1;
}

.profile-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-unit);
    letter-spacing: -0.01em;
}

.profile-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-unit);
    letter-spacing: -0.01em;
}

.profile-section p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-unit);
}

.personal-interests {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-unit);
}

.personal-interests li {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.companies-table {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.company-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #E0E0E0;
    align-items: center;
}

.company-row:last-child {
    border-bottom: none;
}

.company-row:first-child {
    background: #F8F8F8;
    font-weight: 600;
    color: var(--primary-color);
}

.company-name {
    font-weight: 600;
    color: var(--primary-color);
}

.company-description {
    color: var(--secondary-color);
}

.company-stage, .company-founders, .company-partnered {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive adjustments for Profile page */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }
    
    .profile-quote-box {
        height: 600px;
    }
    
    .quote-image {
        min-height: 350px;
        max-height: 400px;
    }
    
    .quote-bg-image {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .personal-lore-section h2 {
        font-size: 1.75rem;
    }
    
    .personal-lore-section p {
        font-size: 1rem;
    }
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: calc(var(--spacing-unit) * 2);
    }

    .profile-image {
        width: 200px;
        height: 250px;
        margin: 0 auto;
    }

    .profile-links {
        justify-content: center;
    }

    .profile-sections-container {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
    }

    .company-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .company-row:first-child {
        display: none;
    }

    .company-row > div::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--primary-color);
    }

    .profile-hero {
        padding: calc(var(--spacing-unit) * 3) var(--spacing-unit) calc(var(--spacing-unit) * 2);
    }

    .profile-content {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
}

/* main page styles */
.main-content {
    padding: calc(var(--spacing-unit) * 0.25) 0;
}

.main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing-unit) * 2);
    margin-top: calc(var(--spacing-unit) * 0.125);
    width: 100%;
}

.title-center,
.title-bottom,
.quotation {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 450px; /* Minimum height instead of fixed */
    max-height: 600px; /* Maximum height to prevent excessive growth */
    height: auto; /* Allow dynamic height */
    box-sizing: border-box;
    background: none;
    border: none;
    padding: 0;
}

.title-center:hover,
.title-bottom:hover,
.quotation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.main-artwork {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.main-text {
    flex: 1;
}

.main-text blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 calc(var(--spacing-unit) * 1.5) 0;
    font-weight: 400;
}

.main-text cite {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    font-style: normal;
}

/* Responsive design for main blocks */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(var(--spacing-unit) * 1.5);
    }
    
    .title-center,
    .title-bottom,
    .quotation {
        min-height: 400px;
        max-height: 500px;
        height: auto;
    }
    

}

@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
        margin-top: calc(var(--spacing-unit) * 1.5);
    }
    
    .title-center,
    .title-bottom,
    .quotation {
        flex-direction: column;
        text-align: center;
        padding: calc(var(--spacing-unit) * 2);
        min-height: 350px; /* Minimum height on mobile */
        max-height: 450px; /* Maximum height on mobile */
        height: auto; /* Allow dynamic height */
    }
    
    .title-center > div,
    .title-bottom > div,
    .quotation > div {
        padding: calc(var(--spacing-unit) * 2);
    }
    
    .title-center > div h3,
    .title-bottom > div h3,
    .quotation > div h3 {
        font-size: 1.5rem;
    }
    
    .title-center > div cite,
    .title-bottom > div cite,
    .quotation > div cite {
        font-size: 1rem;
    }
    
    .title-center > div p,
    .title-bottom > div p {
        font-size: 1rem;
    }
    
    /* Mobile: Fluid text display with strategic overflow */
    .quotation > div blockquote {
        font-size: clamp(1rem, 2.5vw, 1.6rem); /* Smaller font size for mobile */
        max-height: 70%; /* Higher max-height on mobile to reduce scrollbar frequency */
        overflow-y: auto; /* Vertical scrollbar when needed */
        overflow-x: hidden; /* Prevent horizontal scrollbars */
    }
    

    
    .quotation > div cite {
        font-size: clamp(0.6rem, 1.4vw, 0.9rem); /* Much smaller citation for mobile */
    }
    
    /* Custom scrollbar for quote blocks on mobile */
    .quotation > div blockquote::-webkit-scrollbar {
        width: 4px;
    }
    
    .quotation > div blockquote::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    
    .quotation > div blockquote::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    
    .quotation > div blockquote::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .main-artwork {
        width: 80px;
        height: 80px;
        margin: 0 auto calc(var(--spacing-unit) * 1.5) auto;
    }
    
    .main-text blockquote {
        font-size: 18px;
    }
}

















.title-center > img,
.title-bottom > img,
.quotation > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.title-center:hover > img,
.title-bottom:hover > img,
.quotation:hover > img {
    transform: scale(1.05);
}

/* ===== QUOTE BOX SYSTEM ===== */

/* Base overlay styles for all layout types */
.title-center > div,
.title-bottom > div,
.quotation > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: calc(var(--spacing-unit) * 3);
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
}

/* Modifier class to remove darkening overlay */
.no-overlay > div {
    background: none !important;
}

/* Link arrow positioning using pseudo-elements */
.title-center > div::after,
.title-bottom > div::after {
    content: attr(data-link-text);
    position: absolute;
    top: calc(var(--spacing-unit) * 1.5);
    right: calc(var(--spacing-unit) * 1.5);
    font-size: 0.9rem;
    color: white !important;
    font-weight: 500;
    z-index: 3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 1;
    pointer-events: none;
}

/* Base typography styles - shared by all layout types */
.title-center > div h3,
.title-bottom > div h3,
.quotation > div h3 {
    color: white;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.title-center > div cite,
.title-bottom > div cite,
.quotation > div cite {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-style: normal;
}

/* Ensure <p> tags have consistent white color across all devices */
.title-center > div p,
.title-bottom > div p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-style: normal;
}

/* Base typography for blockquote - color and styling only */
.title-center > div blockquote,
.title-bottom > div blockquote,
.quotation > div blockquote {
    color: white;
    font-weight: 500;
    margin: 0 0 calc(var(--spacing-unit) * 1) 0;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Base typography for cite - color and styling only */
.title-center > div cite,
.title-bottom > div cite,
.quotation > div cite {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-style: normal;
    margin: 0;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== LAYOUT TYPE OVERRIDES ===== */

/* Title Center: Title and cite centered vertically in middle */
.title-center > div {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: calc(var(--spacing-unit) * 1);
}

.title-center > div h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0;
}

.title-center > div cite {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin: 0;
}

.title-center > div p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin: 0;
}

/* Title Bottom: Title and cite at bottom with padding */
.title-bottom > div {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: calc(var(--spacing-unit) * 2);
}

.title-bottom > div h3 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin: 0 0 calc(var(--spacing-unit) * 0.5) 0;
    line-height: 1.2;
}

.title-bottom > div cite {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.title-bottom > div p {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

/* Quotation: Left-justified quote with citation */
.quotation > div {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 2.5);
    /* Container query fallback for text scaling */
    container-type: inline-size;
}

.quotation > div blockquote {
    /* Responsive font scaling with fluid text display */
    font-size: clamp(0.9rem, 2.2vw, 1.3rem);
    line-height: 1.4;
    margin: 0 0 calc(var(--spacing-unit) * 1) 0;
    /* Fluid text wrapping with strategic overflow handling */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
    max-height: 75%; /* Show scrollbar for very long quotes */
    overflow-y: auto; /* Vertical scrollbar when needed */
    overflow-x: hidden; /* Prevent horizontal scrollbars */
}

.quotation > div cite {
    /* Responsive font scaling for citation */
    font-size: clamp(0.7rem, 1.6vw, 1rem);
    line-height: 1.3;
    margin: 0;
    /* Fluid text wrapping for citation */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    width: 100%;
}





/* Article styling additions */
.article-body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: calc(var(--spacing-unit) * 2);
    margin: calc(var(--spacing-unit) * 2) 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.article-body .highlight-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: calc(var(--spacing-unit) * 2);
    margin: calc(var(--spacing-unit) * 2) 0;
}

.article-body .highlight-box p {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Anchor link positioning */
.article-body h2[id],
.article-body h3[id] {
    scroll-margin-top: 100px; /* Adjusts scroll position to account for fixed header */
    padding-top: 20px; /* Adds some padding above the header */
    margin-top: -20px; /* Compensates for the padding to maintain layout */
}

/* Scroll margin for pagefind highlights and other potential scroll targets */
mark[data-pagefind-match],
[id] {
    scroll-margin-top: 100px; /* Consistent scroll margin for all scroll targets */
}

/* Image underlay block styles */
.image-underlay-block .underlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-underlay-block .overlay-content {
    padding: calc(var(--spacing-unit) * 2);
    background: rgba(0, 0, 0, 0.6);
}

/* Hover effects for link arrows */
.title-center:hover > div::after,
.title-bottom:hover > div::after {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Long-form article styles */
.article-content {
    padding: calc(var(--spacing-unit) * 2) 0;
}

.long-form-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 3);
    padding-bottom: calc(var(--spacing-unit) * 2);
    border-bottom: 1px solid #e5e5e5;
}

.article-meta .author,
.article-meta .date {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 1.5) 0;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    margin: calc(var(--spacing-unit) * 2) 0 calc(var(--spacing-unit) * 1) 0;
    line-height: 1.4;
}

.article-body p {
    margin: 0 0 1.25rem 0;
    color: #444;
    font-size: 1.1rem;
}

.article-body ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .article-content {
        padding: calc(var(--spacing-unit) * 2) 0;
    }
    
    .long-form-article {
        padding: 0 calc(var(--spacing-unit) * 1);
    }
    
    .article-meta {
        flex-direction: column;
        gap: calc(var(--spacing-unit) * 0.5);
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .article-body p,
    .article-body li {
        font-size: 1rem;
    }
}

/* Social links container */
.social-links-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 0;
    gap: 10px;
}

/* LinkedIn icon styling */
.linkedin-icon {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
    opacity: 0.7;
    filter: brightness(0) saturate(100%) invert(67%) sepia(15%) saturate(1234%) hue-rotate(359deg) brightness(89%) contrast(86%);
}

.linkedin-icon:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* GitHub icon styling */
.github-icon {
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
    opacity: 0.7;
    filter: brightness(0) saturate(100%) invert(67%) sepia(15%) saturate(1234%) hue-rotate(359deg) brightness(89%) contrast(86%);
}

.github-icon:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

/* Comprehensive Tablet and Mobile Responsive Design */
@media (max-width: 1024px) {
    /* Tablet Styles */
    .container {
        padding: 0 calc(var(--spacing-unit) * 1.5);
    }
    
    .signup-form {
        max-width: min(500px, 80vw);
    }
    
    .form-group {
        gap: var(--spacing-xs);
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: calc(var(--spacing-unit) * 1.5);
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Styles */
    .container {
        padding: 0 var(--spacing-unit);
    }
    
    .hero {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 1.5);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .principle-card {
        padding: calc(var(--spacing-unit) * 1.5);
    }
    
    .principle-card h3 {
        font-size: 1.3rem;
    }
    
    .content-section {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
    
    .cta-section {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
    
    .mailing-list {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
    }
    
    .signup-form {
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .form-group {
        flex-direction: column;
        gap: var(--spacing-sm);
        border-radius: 12px;
        padding: var(--spacing-sm);
    }
    
    .form-group input {
        width: 100%;
        border-radius: 8px;
        border: 1px solid #E0E0E0;
        background: white;
    }
    
    .form-group button {
        width: 100%;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    /* Small Mobile Styles */
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .main-block {
        padding: calc(var(--spacing-unit) * 1.5);
        height: 300px;
    }
    
    .image-underlay-block {
        height: 300px;
    }
    
    .image-underlay-block .underlay-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .image-underlay-block .overlay-content {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .profile-image {
        width: 180px;
        height: 220px;
    }
    
    .profile-quote-box {
        height: 600px;
    }
    
    .quote-image {
        min-height: 180px;
        max-height: 220px;
        /* Match the image's natural aspect ratio */
        aspect-ratio: 5 / 6;
    }
    
    .quote-text {
        padding: calc(var(--spacing-unit) * 1.5);
        min-height: 200px;
    }
    
    .quote-text blockquote {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
        line-height: 1.4;
    }
    
    .quote-text cite {
        font-size: clamp(1.0rem, 2.5vw, 1.3rem);
        line-height: 1.3;
    }
    
    /* Mobile: Fluid text display with strategic overflow - moved after desktop rules */
    .quotation:not(.shakespeare-quote) > div blockquote {
        font-size: clamp(1.2rem, 2.9vw, 1.8rem); /* Increased by ~30% for better mobile readability */
        max-height: 70%; /* Show scrollbar for very long quotes */
        overflow-y: auto; /* Vertical scrollbar when needed */
        overflow-x: hidden; /* Prevent horizontal scrollbars */
    }
    
    .quotation:not(.shakespeare-quote) > div cite {
        font-size: clamp(1.0rem, 2.2vw, 1.3rem); /* Reduced proportionally to maintain hierarchy */
    }
}

/* Shakespeare quote specific styling - placed at end for highest priority */
.quotation.shakespeare-quote > div blockquote {
    font-size: clamp(0.8rem, 2vw, 1.0rem);
}

.quotation.shakespeare-quote > div cite {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
}

/* Mobile-specific Shakespeare quote styling */
@media (max-width: 768px) {
    .quotation.shakespeare-quote > div blockquote {
        font-size: clamp(0.8rem, 1.8vw, 1.0rem);
    }
    
    .quotation.shakespeare-quote > div cite {
        font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    }
}

/* ===== SEARCH ICON ===== */
.search-icon {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Mobile search icon - override base padding */
@media (max-width: 768px) {
    .search-icon {
        padding: 0.1rem;
    }
}

/* Desktop Search Icon */
.search-icon-desktop {
    margin-left: 1.5rem;
}

/* Mobile Search Icon */
.search-icon-mobile {
    margin-left: 0;
    margin-right: 0;
    padding: 0.1rem;
}

.search-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.search-icon:focus {
    outline: none;
    box-shadow: none;
}

.search-icon svg {
    width: 20px;
    height: 20px;
    filter: none;
}

/* Mobile responsive for search icon */
@media (max-width: 768px) {
    .search-icon-desktop {
        display: none;
    }
    
    .search-icon-mobile {
        display: flex;
    }
    
    .search-icon svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 769px) {
    .search-icon-desktop {
        display: flex;
    }
    
    .search-icon-mobile {
        display: none;
    }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    background: #ffffff;
}

/* Custom Search Modal */
.search-modal {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: visible;
    padding: 3rem 2rem;
    box-sizing: border-box;
    z-index: 1001;
}

.search-container {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: transparent;
    overflow: visible;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Custom Search Modal Header */
.search-modal .search-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    position: relative;
}

.search-modal #search-input {
    width: 100%;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    border: none;
    border-bottom: 2px solid #333;
    border-radius: 0;
    background: transparent;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 2rem;
    text-align: left;
}

.search-modal #search-input:focus {
    border-color: var(--accent-color);
}

.search-modal #search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-modal .search-close {
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-weight: bold;
}

.search-modal .search-close:hover {
    color: #333;
    background-color: transparent;
}

/* Custom Search Results */
.search-modal .search-results {
    max-height: 800px;
    overflow-y: auto;
    padding: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Search Results Header */
.search-modal .search-results-header {
    margin-bottom: 2rem;
    text-align: left;
}

.search-modal .results-count {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1.5rem 0;
    font-family: Arial, sans-serif;
}



.search-modal .search-results .search-result {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    margin-bottom: 2rem !important;
    padding: 2rem !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-modal .search-results .search-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.search-modal .search-results .search-result:last-child {
    margin-bottom: 0 !important;
}

.search-modal .search-result-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.search-modal .search-result-link:hover {
    color: #333;
}

.search-modal .search-result-link:hover .search-result-title {
    color: #333 !important;
}

.search-modal .search-result-anchor {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent-color);
    background: rgba(3, 74, 216, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    font-weight: 500;
}

.search-modal .search-result-title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
    font-family: Georgia, serif;
}

.search-modal .search-result-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.5px;
}

.search-modal .no-results,
.search-modal .search-error {
    padding: 2rem 0;
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

.search-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 1rem 0;
    margin-bottom: 2rem;
}

.search-close {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.search-close:hover {
    color: #666;
}

.close-icon {
    font-size: 1.2rem;
    font-weight: 300;
}

.search-input-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: #333;
    outline: none;
    transition: border-bottom-color 0.2s ease;
    box-sizing: border-box;
}

.search-input:focus {
    border-bottom-color: rgba(0, 0, 0, 0.6);
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* Removed conflicting generic search-results rule */

.results-header {
    padding: 1rem 0;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 1rem;
}

.results-header p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Removed conflicting generic search-result rule */

/* Removed conflicting generic search-result hover rule */

.result-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.result-excerpt {
    margin: 0 0 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.result-url {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-family: monospace;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.no-results p {
    margin: 0.5rem 0;
}

.search-error {
    text-align: center;
    padding: 2rem;
    color: #d32f2f;
}

.search-error p {
    margin: 0;
}

/* Inline search icon */
.search-icon-inline {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Highlight search terms - unified styling with high specificity to override pagefind reset */
mark[data-pagefind-match],
mark.pagefind-highlight,
mark.custom-search-highlight,
mark {
    background: rgba(255, 243, 163, 0.85) !important;
    color: #333 !important;
    padding: 0.1rem 0.2rem !important;
    border-radius: 3px !important;
    border: none !important;
    box-shadow: none !important;
    animation: none !important;
    /* Override any pagefind UI resets */
    all: unset;
    display: inline;
    background: rgba(255, 243, 163, 0.85) !important;
    color: #333 !important;
    padding: 0.1rem 0.2rem !important;
    border-radius: 3px !important;
}

/* ===== SEARCH INPUT STYLING ===== */

/* Customize the search input */
#search input[type="search"] {
    width: 100%;
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    font-size: 1.3rem;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: #333;
    transition: border-bottom-color 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

#search input[type="search"]:focus {
    outline: none;
    border-bottom-color: rgba(0, 0, 0, 0.6);
}

#search input[type="search"]::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #search input[type="search"] {
        font-size: 1rem;
        padding: 1rem 2rem 1rem 1rem;
    }
}

/* ===== STORIES SECTION ===== */
.stories-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.stories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--bg-color);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.story-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-card:hover .story-title {
    color: var(--accent-color);
}

.story-excerpt {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.875rem;
}

.story-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.story-read-time {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Mobile responsive for stories */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-title {
        font-size: 1.25rem;
    }
    
    /* Mobile intro-text consistency */
    .hero-content .intro-text,
    .about-hero .intro-text,
    .way-of-openness-hero .intro-text {
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
        margin-bottom: calc(var(--spacing-unit) * 2.5) !important;
    }
    
    .hero-content {
        padding: 0 var(--spacing-unit);
    }
}

/* ===== SEARCH HIGHLIGHT STYLING ===== */

/* Legacy highlight styles removed - using unified styling above */

/* FORCE MOBILE INTRO-TEXT SIZE - HIGHEST PRIORITY */
@media (max-width: 768px) {
    .about.html .intro-text,
    .about .intro-text,
    .hero-content .intro-text {
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .about.html .intro-text,
    .about .intro-text,
    .hero-content .intro-text {
        font-size: 1.25rem !important;
        line-height: 1.7 !important;
    }
}

/* Legacy Pagefind UI styles removed - using custom search implementation */

/* Image optimization for faster loading */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Lazy loading optimization */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Critical images that should load immediately */
img[loading="eager"] {
    opacity: 1;
}

