/* =============================================
   VZW IGNATIUS PAGE
   School board information page
   ============================================= */

/* Hero Section */
.vzw-hero {
    padding: 140px 0 80px;
    background: 
                url('assets/headerV2.1.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
}

.vzw-hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.vzw-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    color: var(--white);
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-decoration {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    padding: var(--space-xl) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sjb-blue);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
}

/* Main Content */
.vzw-content {
    padding: var(--space-4xl) 0;
}

.content-section {
    margin-bottom: var(--space-4xl);
}

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

/* Intro Block */
.intro-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
}

.intro-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjb-blue-light);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.section-icon svg {
    width: 24px;
    height: 24px;
    color: var(--sjb-blue);
}

.section-icon-green {
    background: var(--sjb-green-light);
}

.section-icon-green svg {
    color: var(--sjb-green-dark);
}

.section-icon-yellow {
    background: var(--sjb-yellow-light);
}

.section-icon-yellow svg {
    color: var(--sjb-yellow-dark);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

/* Info Card */
.info-card {
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Members Grid */
.members-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 640px) {
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .members-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.member-card {
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
}

.member-card-highlight {
    background: var(--sjb-blue);
    border-color: var(--sjb-blue);
    color: var(--white);
}

.member-card-highlight .member-role {
    color: rgba(255, 255, 255, 0.8);
}

.member-card-highlight .member-name {
    color: var(--white);
}

.member-card-org {
    background: var(--sjb-yellow-light);
    border-color: var(--sjb-yellow);
}

.member-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.member-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

/* Campus Info */
.campus-info {
    max-width: 800px;
}

.campus-info > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .domains-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .domains-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.domain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
}

.domain-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjb-green-light);
    border-radius: var(--radius-md);
}

.domain-icon svg {
    width: 20px;
    height: 20px;
    color: var(--sjb-green-dark);
}

.domain-item span:last-child {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
}

.campus-note {
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sjb-green);
}

.campus-note p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Schools Wrapper */
.schools-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

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

.schools-column h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--sjb-blue);
    margin-bottom: var(--space-md);
}

.schools-list {
    list-style: none;
}

.schools-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-bottom: 1px solid var(--gray-100);
}

.schools-list li:last-child {
    border-bottom: none;
}

.school-current {
    background: var(--sjb-blue-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
}

.school-name {
    font-weight: 600;
    color: var(--gray-800);
}

.school-location {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.school-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    background: var(--sjb-blue);
    color: var(--white);
    border-radius: var(--radius-full);
    margin-left: auto;
}

/* External CTA */
.external-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--sjb-blue);
    border-radius: var(--radius-xl);
    color: var(--white);
}

@media (min-width: 640px) {
    .external-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.external-cta-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.external-cta-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}

.external-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    color: var(--sjb-blue);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.external-cta-button:hover {
    background: var(--sjb-yellow);
    color: var(--gray-800);
}

.external-cta-button svg {
    width: 18px;
    height: 18px;
}

/* Related Section */
.related-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.related-section h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-base);
}

.related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.related-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sjb-blue-light);
    border-radius: var(--radius-lg);
}

.related-icon svg {
    width: 24px;
    height: 24px;
    color: var(--sjb-blue);
}

.related-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.related-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
}
