/* ============================================
   Community Partnerships - All Pages Styles
   ============================================ */

/* ============================================
   SHARED STYLES
   ============================================ */

/* Partnership Breadcrumb Navigation */
.partnership-breadcrumb {
    background: #1a1a1a;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}

.partnership-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partnership-breadcrumb a:hover {
    color: #ffffff;
}

.partnership-breadcrumb a i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.partnership-breadcrumb a:hover i {
    transform: translateX(-4px);
}


/* ============================================
   COMMUNITY PARTNERSHIPS PARENT PAGE
   ============================================ */

/* Full width breakout */
.asi-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none;
}

.asi-partnerships {
    overflow-x: hidden;
}

.asi-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section */
.asi-hero {
    background: #231F20;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.asi-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/img-background.jpg') center/cover;
    opacity: 0.25;
    pointer-events: none;
}

.asi-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.asi-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.asi-hero-badge i {
    color: #E31837;
    font-size: 1rem;
}

.asi-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.asi-hero h1 .highlight {
    color: #E31837;
}

.asi-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.asi-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section Styles */
.asi-section {
    padding: 80px 0;
}

.asi-section-gray {
    background: #f8f9fa;
}

.asi-section-dark {
    background: #1a1a1a;
    color: #fff;
}

.asi-section-header {
    text-align: center;
    margin-bottom: 15px;
}

.asi-section-label {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 8px 20px;
    border: 2px solid #444;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.asi-section-gray .asi-section-label {
    background: #E31837;
    color: #fff;
    border: none;
    border-radius: 20px;
}

.asi-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #231F20;
    margin: 0;
}

.asi-section-dark .asi-section-title {
    color: #fff;
}

.asi-partners-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Partners Grid */
.asi-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.asi-partner-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asi-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.asi-partner-logo {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.asi-logo-sdsu {
    background: radial-gradient(ellipse at center, #c23038 0%, #8b1a22 60%, #5a1015 100%);
    border-bottom: none;
}

.asi-logo-ala {
    background: linear-gradient(180deg, #d6e8f7 0%, #c5dff8 50%, #b8d8f5 100%);
    border-bottom: none;
}

.asi-partner-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.asi-partner-content {
    padding: 30px;
}

.asi-partner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #231F20;
    margin: 0 0 5px;
}

.asi-partner-tagline {
    color: #E31837;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.asi-partner-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.asi-partner-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.asi-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #333;
}

.asi-highlight-item i {
    color: #E31837;
    width: 20px;
}

/* Partner Logos */
.asi-partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.asi-partner-logos img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.asi-partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Why We Partner Grid */
.asi-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.asi-why-content .asi-section-label {
    display: inline-block;
    margin-bottom: 20px;
}

.asi-why-content h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 25px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.asi-why-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.asi-why-image {
    position: relative;
}

.asi-why-image img {
    width: 100%;
    border: 4px solid rgba(255,255,255,0.1);
}

.asi-why-values {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.asi-value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-left: 3px solid #E31837;
    padding-left: 25px;
}

.asi-value-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.asi-value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #E31837;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asi-value-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.asi-value-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.asi-value-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Buttons */
.asi-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.asi-btn-primary {
    background: #E31837;
    color: #fff;
    border: 2px solid #E31837;
}

.asi-btn-primary:hover {
    background: #c41230;
    border-color: #c41230;
    color: #fff;
}

.asi-btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.asi-btn-cta-outline:hover {
    background: #fff;
    color: #E31837;
}

/* CTA Section */
.asi-cta {
    background: #a81c2e;
    padding: 80px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.asi-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.08) 49%, rgba(0,0,0,0.08) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.05) 49%, rgba(0,0,0,0.05) 51%, transparent 52%);
    background-size: 30px 30px;
    pointer-events: none;
}

.asi-cta-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #7a141f;
}

.asi-cta-content {
    position: relative;
    z-index: 1;
}

.asi-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.asi-cta p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 35px;
}

.asi-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer Tagline */
.asi-footer-tagline {
    background: #a81c2e;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 25px 20px;
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
}

.asi-footer-tagline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.08) 49%, rgba(0,0,0,0.08) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.05) 49%, rgba(0,0,0,0.05) 51%, transparent 52%);
    background-size: 30px 30px;
    pointer-events: none;
}

.asi-footer-tagline span {
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Responsive - Community Partnerships Parent */
@media (max-width: 992px) {
    .asi-partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .asi-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .asi-hero h1 {
        font-size: 2.5rem;
    }

    .asi-why-content h2 {
        font-size: 1.8rem;
    }

    .asi-partner-logos {
        gap: 30px;
    }

    .asi-partner-logos img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .asi-section {
        padding: 50px 0;
    }

    .asi-hero {
        padding: 60px 0;
    }

    .asi-hero h1 {
        font-size: 2rem;
    }

    .asi-hero-subtitle {
        font-size: 1.2rem;
    }

    .asi-hero-description {
        font-size: 1rem;
    }

    .asi-section-title {
        font-size: 1.8rem;
    }

    .asi-cta h2 {
        font-size: 1.8rem;
    }

    .asi-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .asi-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .asi-partner-logo {
        padding: 30px;
    }

    .asi-partner-logo img {
        max-width: 150px;
    }

    .asi-value-item {
        padding-left: 15px;
    }

    .asi-partner-logos {
        gap: 20px;
        margin-top: 40px;
        padding: 30px 0;
    }

    .asi-partner-logos img {
        max-height: 40px;
    }
}


/* ============================================
   AMERICAN LUNG ASSOCIATION PARTNERSHIP PAGE
   ============================================ */

.ala-partnership {
    color: #212529;
    line-height: 1.6;
    overflow-x: hidden;
}

.ala-partnership *,
.ala-partnership *::before,
.ala-partnership *::after {
    box-sizing: border-box;
}

.ala-partnership h1,
.ala-partnership h2,
.ala-partnership h3,
.ala-partnership h4 {
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.ala-partnership img {
    max-width: 100%;
    height: auto;
}

.ala-partnership a {
    text-decoration: none;
}

/* Full Width */
.ala-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Section Base */
.ala-section {
    padding: 80px 0;
    position: relative;
}

.ala-section-white {
    background: #ffffff;
}

.ala-section-gray {
    background: #f8f9fa;
}

.ala-section-dark {
    background: #00205c;
    color: #ffffff;
}

.ala-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.ala-hero {
    background: linear-gradient(135deg, #00205c 0%, #003366 50%, #009ade 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.ala-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/img-background.jpg') center bottom/cover;
    opacity: 0.15;
}

.ala-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.ala-hero-text {
    color: #ffffff;
}

.ala-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ala-hero-badge i {
    color: #009ade;
}

.ala-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
}

.ala-hero h1 .highlight {
    color: #009ade;
}

.ala-hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.ala-hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.ala-hero-donation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 154, 222, 0.15);
    padding: 15px 20px;
    border-left: 4px solid #009ade;
    margin-bottom: 28px;
}

.ala-hero-donation i {
    color: #c41230;
    margin-right: 8px;
}

.ala-hero-donation a {
    color: #ffffff;
    text-decoration: underline !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ala-hero-donation a:hover {
    color: #009ade;
}

.ala-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ala-hero-image {
    position: relative;
}

.ala-hero-image-wrapper {
    border: 4px solid #009ade;
    overflow: hidden;
    background: transparent;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ala-hero-image-wrapper img {
    filter: brightness(0) invert(1);
}

.ala-hero-image img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    display: block;
}

.ala-partnership-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #ffffff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.ala-partnership-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #009ade;
}

.ala-partnership-badge img {
    height: 30px;
    width: auto;
}

.ala-partnership-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #00205c;
}

.ala-partnership-text span {
    display: block;
    color: #009ade;
    font-size: 0.7rem;
}

/* Section Headers */
.ala-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.ala-section-label {
    display: inline-block;
    background: #009ade;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.ala-section-dark .ala-section-label {
    background: #009ade;
    color: #ffffff;
}

.ala-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00205c;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ala-section-dark .ala-section-title {
    color: #ffffff;
}

.ala-section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    font-weight: 500;
}

/* Partnership Grid */
.ala-partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ala-partnership-image {
    position: relative;
}

.ala-partnership-image img {
    border: none;
    width: 100%;
}

.ala-partnership-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: #009ade;
    z-index: -1;
}

.ala-stat-badge {
    position: absolute;
    top: 20px;
    right: -15px;
    background: #c41230;
    color: #ffffff;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ala-stat-badge .number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.ala-stat-badge .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.ala-partnership-content h2 {
    font-size: 2rem;
    color: #00205c;
    margin-bottom: 20px;
}

.ala-partnership-content p {
    font-size: 1.3rem;
    color: #495057;
    line-height: 1.8;
}

/* Impact Cards */
.ala-impact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.ala-impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ala-impact-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.ala-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #009ade;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ala-impact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.ala-impact-card:hover::before {
    transform: scaleX(1);
}

.ala-impact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #009ade;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffffff;
    border-radius: 50%;
}

.ala-impact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.ala-impact-card p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

/* Services */
.ala-services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.4rem;
    color: #495057;
}

.ala-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ala-service-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ala-service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #009ade;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.ala-service-card:hover {
    border-color: #009ade;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.ala-service-card:hover::before {
    transform: scaleY(1);
}

.ala-service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #00205c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    border-radius: 8px;
}

.ala-service-content h4 {
    font-size: 1.2rem;
    color: #00205c;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ala-service-content p {
    font-size: 1.4rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.ala-services-footer {
    text-align: center;
    margin-top: 40px;
    padding: 35px;
    background: #00205c;
    position: relative;
}

.ala-services-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #009ade;
}

.ala-services-footer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Rooted Section */
.ala-rooted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ala-rooted-content h2 {
    font-size: 2rem;
    color: #00205c;
    margin-bottom: 20px;
}

.ala-rooted-content .ala-section-label {
    margin-bottom: 16px;
}

.ala-rooted-content p {
    font-size: 1.2rem;
    color: #495057;
    line-height: 1.8;
}

.ala-rooted-image {
    position: relative;
}

.ala-rooted-image > img {
    border: 4px solid #00205c;
    width: 100%;
}

.ala-rooted-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #c41230;
    color: #ffffff;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.ala-rooted-badge-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ala-rooted-badge-icon img {
    width: 56px;
    height: auto;
    border: none;
}

.ala-rooted-badge-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.ala-rooted-badge-text span {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Donation CTA */
.ala-donate-cta {
    background: linear-gradient(135deg, #0077b6 0%, #005f8a 100%);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ala-donate-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 49%, rgba(255,255,255,0.03) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.02) 49%, rgba(255,255,255,0.02) 51%, transparent 52%);
    background-size: 40px 40px;
}

.ala-donate-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.ala-donate-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.ala-btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #c41230;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ala-btn-donate:hover {
    background: #c41230;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.ala-cta {
    background: linear-gradient(135deg, #c41230 0%, #a30f28 100%);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ala-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.05) 49%, rgba(0,0,0,0.05) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.03) 49%, rgba(0,0,0,0.03) 51%, transparent 52%);
    background-size: 40px 40px;
}

.ala-cta-content {
    position: relative;
    z-index: 1;
}

.ala-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.ala-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #ffffff;
}

.ala-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ALA Buttons */
.ala-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    border-radius: 4px;
}

.ala-btn-primary {
    background: #c41230;
    color: #ffffff;
}

.ala-btn-primary:hover {
    background: #a30f28;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 18, 48, 0.4);
    color: #ffffff;
}

.ala-btn-white {
    background: #ffffff;
    color: #00205c;
}

.ala-btn-white:hover {
    background: #f1f3f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #00205c;
}

.ala-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.ala-btn-outline:hover {
    background: #ffffff;
    color: #00205c;
}

/* ALA Footer Tagline */
.ala-footer-tagline {
    text-align: center;
    padding: 30px 20px;
    background: #00205c;
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    font-weight: 600;
}

.ala-footer-tagline span {
    color: #009ade;
}

.ala-footer-tagline a {
    color: #009ade;
    text-decoration: underline;
}

.ala-footer-tagline a:hover {
    color: #ffffff;
}

/* ALA Responsive */
@media (max-width: 992px) {
    .ala-hero-content,
    .ala-partnership-grid,
    .ala-rooted-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ala-hero h1 {
        font-size: 2.2rem;
    }

    .ala-hero-image {
        order: -1;
    }

    .ala-impact-cards {
        grid-template-columns: 1fr;
    }

    .ala-services-grid {
        grid-template-columns: 1fr;
    }

    .ala-partnership-image::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }

    .ala-stat-badge {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .ala-section {
        padding: 50px 0;
    }

    .ala-hero {
        padding: 40px 0;
    }

    .ala-hero h1 {
        font-size: 1.8rem;
    }

    .ala-section-title {
        font-size: 1.8rem;
    }

    .ala-cta h2 {
        font-size: 1.8rem;
    }

    .ala-cta-buttons,
    .ala-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .ala-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .ala-partnership-badge,
    .ala-rooted-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }

    .ala-stat-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }
}


/* ============================================
   SDSU PARTNERSHIP PAGE
   ============================================ */

.sdsu-partnership {
    color: #231F20;
    line-height: 1.6;
    overflow-x: hidden;
}

.sdsu-partnership *,
.sdsu-partnership *::before,
.sdsu-partnership *::after {
    box-sizing: border-box;
}

.sdsu-partnership h1,
.sdsu-partnership h2,
.sdsu-partnership h3,
.sdsu-partnership h4 {
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.sdsu-partnership img {
    max-width: 100%;
    height: auto;
}

.sdsu-partnership a {
    text-decoration: none;
}

.sdsu-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.sdsu-section {
    padding: 80px 0;
    position: relative;
}

.sdsu-section-white {
    background: #ffffff;
}

.sdsu-section-gray {
    background: #f0f0f0;
}

.sdsu-section-black {
    background: #231F20;
    color: #ffffff;
}

.sdsu-section-red {
    background: #C23038;
    color: #ffffff;
}

.sdsu-container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SDSU Hero */
.sdsu-hero {
    background: linear-gradient(135deg, #000000 0%, #003366 50%, #122f4f 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.sdsu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/img-background.jpg') center bottom/cover;
    opacity: 0.15;
}

.sdsu-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sdsu-hero-text {
    color: #ffffff;
}

.sdsu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C23038;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sdsu-hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 3px 3px 0 #C23038;
}

.sdsu-hero h1 .highlight {
    color: #C23038;
    text-shadow: none;
}

.sdsu-hero-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #C23038;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sdsu-hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.sdsu-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sdsu-hero-image {
    position: relative;
}

.sdsu-hero-image-wrapper {
    border: 4px solid #C23038;
    overflow: hidden;
    background: transparent;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdsu-hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SDSU Section Headers */
.sdsu-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.sdsu-section-label {
    display: inline-block;
    background: #C23038;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.sdsu-section-black .sdsu-section-label {
    background: #ffffff;
    color: #231F20;
}

.sdsu-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #231F20;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sdsu-section-black .sdsu-section-title,
.sdsu-section-red .sdsu-section-title {
    color: #ffffff;
}

/* SDSU Partnership Grid */
.sdsu-partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sdsu-partnership-image {
    position: relative;
}

.sdsu-partnership-image img {
    border: 4px solid #231F20;
    width: 100%;
}

.sdsu-partnership-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: #C23038;
    z-index: -1;
}

.sdsu-partnership-content h2 {
    font-size: 2rem;
    color: #231F20;
    margin-bottom: 10px;
}

.sdsu-partnership-content p {
    font-size: 1.4rem;
    color: #444444;
    line-height: 1.8;
}

/* SDSU Impact Cards */
.sdsu-impact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.sdsu-impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sdsu-impact-card {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.sdsu-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #C23038;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sdsu-impact-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

.sdsu-impact-card:hover::before {
    transform: scaleX(1);
}

.sdsu-impact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #C23038;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.sdsu-impact-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.sdsu-impact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.sdsu-impact-card p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}

.sdsu-impact-note {
    text-align: center;
    margin-top: 35px;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
}

/* SDSU Services */
.sdsu-services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.4rem;
    color: #444444;
}

.sdsu-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sdsu-service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sdsu-service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #C23038;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sdsu-service-card:hover {
    border-color: #C23038;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.sdsu-service-card:hover::before {
    transform: scaleY(1);
}

.sdsu-service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #231F20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
}

.sdsu-service-content h4 {
    font-size: 1.2rem;
    color: #231F20;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sdsu-service-content p {
    font-size: 1.4rem;
    color: #777777;
    line-height: 1.6;
    margin: 0;
}

.sdsu-services-footer {
    text-align: center;
    margin-top: 40px;
    padding: 35px;
    background: #231F20;
    position: relative;
}

.sdsu-services-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #C23038;
}

.sdsu-services-footer p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SDSU Rooted Section */
.sdsu-rooted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sdsu-rooted-content h2 {
    font-size: 2rem;
    color: #231F20;
    margin-bottom: 10px;
}

.sdsu-rooted-content .sdsu-section-label {
    margin-bottom: 16px;
}

.sdsu-rooted-content p {
    font-size: 1.4rem;
    color: #444444;
    line-height: 1.8;
}

.sdsu-rooted-subtitle {
    font-size: 1.3rem;
    color: #C23038;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sdsu-rooted-image {
    position: relative;
}

.sdsu-rooted-image > img {
    border: none;
    width: 100%;
}

.sdsu-rooted-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #C23038;
    color: #ffffff;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.sdsu-rooted-badge-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sdsu-rooted-badge-icon img {
    width: 56px;
    height: auto;
    border: none;
}

.sdsu-rooted-badge-text {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.sdsu-rooted-badge-text span {
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ffffff;
}

/* SDSU CTA Section */
.sdsu-cta {
    background: #C23038;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sdsu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.05) 49%, rgba(0,0,0,0.05) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.03) 49%, rgba(0,0,0,0.03) 51%, transparent 52%);
    background-size: 40px 40px;
}

.sdsu-cta-content {
    position: relative;
    z-index: 1;
}

.sdsu-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sdsu-cta p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: #ffffff;
}

.sdsu-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SDSU Buttons */
.sdsu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.sdsu-btn-primary {
    background: #C23038;
    color: #ffffff;
}

.sdsu-btn-primary:hover {
    background: #a02830;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(194, 48, 56, 0.4);
    color: #ffffff;
}

.sdsu-btn-white {
    background: #ffffff;
    color: #231F20;
}

.sdsu-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #231F20;
}

.sdsu-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.sdsu-btn-outline:hover {
    background: #ffffff;
    color: #C23038;
}

.sdsu-btn-black {
    background: #231F20;
    color: #ffffff;
}

.sdsu-btn-black:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* SDSU Footer Tagline */
.sdsu-footer-tagline {
    text-align: center;
    padding: 30px 20px;
    background: #231F20;
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    font-weight: 600;
}

.sdsu-footer-tagline span {
    color: #C23038;
}

/* SDSU Ticker Tape Banner */
.sdsu-ticker-tape {
    background-color: #1e04b6;
    border-top: 1px solid #d50903;
    border-bottom: 1px solid #d50903;
    overflow: hidden;
    position: relative;
}

.sdsu-ticker-tape::before,
.sdsu-ticker-tape::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #ffffff;
    z-index: 2;
}

.sdsu-ticker-tape::before {
    top: 1px;
}

.sdsu-ticker-tape::after {
    bottom: 1px;
}

.sdsu-ticker-track {
    display: flex;
    width: max-content;
    animation: sdsu-ticker-scroll 30s linear infinite;
}

.sdsu-ticker-track:hover {
    animation-play-state: paused;
}

.sdsu-ticker-content {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.sdsu-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 0 30px;
}

.sdsu-ticker-item img {
    height: 28px;
    width: auto;
    flex-shrink: 0;
}

@keyframes sdsu-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SDSU Responsive */
@media (max-width: 992px) {
    .sdsu-hero-content,
    .sdsu-partnership-grid,
    .sdsu-rooted-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sdsu-hero h1 {
        font-size: 2.2rem;
    }

    .sdsu-hero-image {
        order: -1;
    }

    .sdsu-impact-cards {
        grid-template-columns: 1fr;
    }

    .sdsu-services-grid {
        grid-template-columns: 1fr;
    }

    .sdsu-partnership-image::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    .sdsu-section {
        padding: 50px 0;
    }

    .sdsu-hero {
        padding: 40px 0;
    }

    .sdsu-hero h1 {
        font-size: 1.8rem;
    }

    .sdsu-section-title {
        font-size: 1.8rem;
    }

    .sdsu-cta h2 {
        font-size: 1.8rem;
    }

    .sdsu-cta-buttons,
    .sdsu-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .sdsu-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .sdsu-partnership-badge,
    .sdsu-rooted-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
        justify-content: center;
    }

    .sdsu-ticker-item {
        font-size: 0.85rem;
        padding: 0 20px;
    }

    .sdsu-ticker-item img {
        height: 24px;
    }

    .sdsu-ticker-track {
        animation-duration: 20s;
    }
}
