/* ========================================
   FACULTY HERO SECTIONS - REDESIGNED
   ======================================== */

/* Main Faculty Page Hero */
.faculty-main-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1650 0%, #252163 50%, #1a1650 100%);
    overflow: hidden;
    padding: 4rem 2rem;
}

.faculty-main-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.faculty-main-hero .hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.04) 2px, rgba(255, 255, 255, 0.04) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.04) 2px, rgba(255, 255, 255, 0.04) 4px);
}

.faculty-main-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 70rem;
    margin: 0 auto;
}

.faculty-main-hero .hero-text {
    text-align: center;
}

.faculty-main-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.6);
    background: linear-gradient(180deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faculty-main-hero .hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 1rem auto 0;
    text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.4);
    text-align: center;
    max-width: 800px;
}

/* Individual Faculty Page Hero */
.faculty-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #252163 0%, #3a3780 50%, #252163 100%);
    overflow: hidden;
    padding: 4rem 2rem;
}

.faculty-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 33, 99, 0.92) 0%, rgba(58, 55, 128, 0.88) 100%);
    z-index: 1;
}

.faculty-hero .hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
}

.faculty-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.faculty-hero .hero-icon {
    width: clamp(6rem, 15vw, 11rem);
    height: clamp(6rem, 15vw, 11rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 700;
    color: #ff8800;
    margin: 0 auto 2.5rem;
    background: rgba(255, 136, 0, 0.08);
    border: clamp(0.1875rem, 0.4vw, 0.3125rem) solid rgba(255, 136, 0, 0.4);
    position: relative;
    transition: all 0.4s ease;
}

.faculty-hero .hero-icon::before {
    content: '';
    position: absolute;
    inset: -0.75rem;
    border: 0.0625rem solid rgba(255, 136, 0, 0.15);
}

.faculty-hero:hover .hero-icon {
    background: rgba(255, 136, 0, 0.15);
    border-color: rgba(255, 136, 0, 0.6);
    transform: scale(1.05) rotate(2deg);
}

.faculty-hero .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.faculty-hero .hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 400;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.5);
}

.faculty-hero .hero-description {
    font-size: clamp(1.0625rem, 2.2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    margin: 0;
    max-width: 50rem;
    text-shadow: 0 0.1875rem 0.75rem rgba(0, 0, 0, 0.4);
}

.faculty-hero .hero-badge {
    display: inline-flex;
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    font-weight: 700;
    color: #ff8800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: clamp(0.5rem, 1.2vw, 0.75rem) clamp(1.5rem, 3vw, 2.5rem);
    border: 0.1875rem solid rgba(255, 136, 0, 0.4);
    background: rgba(255, 136, 0, 0.08);
    transition: all 0.3s ease;
}

.faculty-hero .hero-badge:hover {
    background: rgba(255, 136, 0, 0.15);
    border-color: rgba(255, 136, 0, 0.7);
    transform: translateY(-0.125rem);
}

/* Faculty Intro Section */
.faculty-intro-section {
    max-width: 56rem;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.faculty-intro-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #252163;
    margin: 0 0 2rem 0;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 1.5rem;
}

.faculty-intro-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(90deg, transparent 0%, #ff8800 50%, transparent 100%);
}

.faculty-intro-section p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #495057;
    margin: 0;
}

/* Faculty Page Styles - Modern Professional Design */
.faculty-page {
    min-height: 100vh;
    background: #ffffff;
}

/* Hero Section - Fully Responsive */
.faculty-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #252163 0%, #3a3780 50%, #252163 100%);
    overflow: hidden;
    padding: 3rem 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 33, 99, 0.95) 0%, rgba(58, 55, 128, 0.9) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
    width: 100%;
}

.faculty-icon-box-hero {
    width: clamp(5rem, 15vw, 10rem);
    height: clamp(5rem, 15vw, 10rem);
    border: clamp(0.125rem, 0.3vw, 0.25rem) solid rgba(255, 136, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    color: #ff8800;
    margin: 0 auto 1.5rem;
    background: rgba(255, 136, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
}

.faculty-icon-box-hero::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    border: 0.0625rem solid rgba(255, 136, 0, 0.1);
}

.faculty-hero:hover .faculty-icon-box-hero {
    background: rgba(255, 136, 0, 0.1);
    border-color: rgba(255, 136, 0, 0.5);
    transform: scale(1.05);
}

.hero-content h1 {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 4rem);
    font-weight: 300;
    color: white;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-content .hero-subtitle {
    font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin: 0 0 1.5rem 0;
    max-width: 100%;
}

.hero-content .faculty-code-tag {
    display: inline-block;
    font-size: clamp(0.75rem, 1.5vw + 0.25rem, 1rem);
    font-weight: 600;
    color: #ff8800;
    text-transform: uppercase;
    letter-spacing: clamp(0.15em, 0.5vw, 0.3em);
    margin: 0;
    padding: clamp(0.375rem, 1vw, 0.5rem) clamp(1rem, 2vw, 1.5rem);
    border: 0.125rem solid rgba(255, 136, 0, 0.3);
    background: rgba(255, 136, 0, 0.05);
}

/* Content Sections */
.faculty-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0;
}

.content-section {
    padding: 5rem 2rem;
    border-bottom: 0.0625rem solid rgba(37, 33, 99, 0.06);
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(37, 33, 99, 0.02) 0%, rgba(255, 136, 0, 0.02) 100%);
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #252163;
    margin: 0 0 2rem 0;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #ff8800 0%, rgba(255, 136, 0, 0) 100%);
}

/* Past Events Section */
.past-events-section {
    background: #f8f9fa;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.event-item {
    background: white;
    padding: 2.5rem;
    border-left: 0.25rem solid #ff8800;
    position: relative;
    transition: all 0.3s ease;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -0.25rem;
    right: 0;
    bottom: 0;
    border: 0.0625rem solid rgba(37, 33, 99, 0.08);
    pointer-events: none;
}

.event-item:hover {
    transform: translateX(0.5rem);
    box-shadow: 0 0.5rem 2rem rgba(37, 33, 99, 0.08);
}

.event-item:hover::before {
    border-color: rgba(255, 136, 0, 0.2);
}

.event-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff8800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.event-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #252163;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.event-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #252163 0%, #3a3780 100%);
    text-align: center;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
}

.cta-section h2::after {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, #ff8800 50%, transparent 100%);
}

.cta-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 48rem;
    margin: 0 auto 2.5rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

.faculty-content {
    max-width: 75rem;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-card {
    padding: 0 0 4rem 0;
    margin-bottom: 4rem;
    border-bottom: 0.0625rem solid rgba(37, 33, 99, 0.1);
}

.content-card:last-child {
    border-bottom: none;
}

.content-card h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #252163;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.content-card p {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.faculty-detail {
    padding: 4rem 0;
    border-left: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faculty-detail:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.faculty-detail:nth-child(even) .faculty-left-column {
    order: 2;
}

.faculty-detail:nth-child(even) .faculty-right-column {
    order: 1;
}

.faculty-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faculty-right-column {
    position: sticky;
    top: 2rem;
}

.faculty-header-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 0;
}

.faculty-icon-box {
    width: 5rem;
    height: 5rem;
    border-radius: 0;
    background: transparent;
    border: 0.125rem solid #252163;
    color: #252163;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 300;
    box-shadow: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faculty-detail:hover .faculty-icon-box {
    background: #252163;
    color: white;
}

.faculty-code-tag {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff8800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 0.75rem 0;
}

.faculty-detail h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 400;
}

.faculty-full-desc {
    font-size: 1.125rem;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 0;
}

.faculty-image {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.faculty-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0.0625rem solid rgba(37, 33, 99, 0.08);
    pointer-events: none;
    z-index: 1;
}

.faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.faculty-detail:hover .faculty-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.faculty-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #252163;
    font-weight: 400;
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 0.125rem solid #252163;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.faculty-link:hover {
    color: #ff8800;
    border-bottom-color: #ff8800;
    gap: 1rem;
}

.cta-card {
    background: #252163;
    color: white;
    text-align: center;
    padding: 5rem 3rem;
    margin: 4rem 0 0 0;
    border-bottom: none;
}

.cta-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 3rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-cta-primary {
    background: #ff8800;
    color: white;
    border: 0.125rem solid #ff8800;
}

.btn-cta-primary:hover {
    background: transparent;
    color: #ff8800;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 0.125rem solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #252163;
}

/* Responsive Design */
/* Large Desktop: 90em+ (1440px+) - Default styles above */

/* Desktop: 75em - 90em (1200px - 1440px) */
@media (max-width: 90em) {
    .faculty-main-hero .page-title {
        font-size: 3.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .faculty-content,
    .page-header {
        max-width: 70rem;
    }
}

/* Laptop: 64em - 75em (1024px - 1200px) */
@media (max-width: 75em) {
    .faculty-main-hero .page-title {
        font-size: 3.25rem;
    }

    .faculty-intro-section h2 {
        font-size: 2.25rem;
    }

    .hero-content h1 {
        font-size: 3.25rem;
    }

    .faculty-icon-box-hero {
        width: 9rem;
        height: 9rem;
        font-size: 4.5rem;
    }

    .content-section {
        padding: 4.5rem 2rem;
    }

    .content-section h2 {
        font-size: 2.25rem;
    }

    .event-item {
        padding: 2.25rem;
    }
}

/* Tablet Landscape: 48em - 64em (768px - 1024px) */
@media (max-width: 64em) {
    .faculty-main-hero {
        min-height: 45vh;
    }

    .faculty-main-hero .page-title {
        font-size: 3rem;
    }

    .faculty-main-hero .page-subtitle {
        font-size: 1.25rem;
    }

    .faculty-intro-section {
        padding: 5rem 2rem;
    }

    .faculty-intro-section h2 {
        font-size: 2rem;
    }

    .faculty-intro-section p {
        font-size: 1.125rem;
    }

    .faculty-hero {
        min-height: 55vh;
    }

    .hero-content {
        padding: 3.5rem 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .faculty-icon-box-hero {
        width: 8rem;
        height: 8rem;
        font-size: 4rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-section {
        padding: 4rem 2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .event-item {
        padding: 2rem;
    }

    .event-item h3 {
        font-size: 1.375rem;
    }

    .cta-button {
        padding: 1.125rem 2.5rem;
    }

    .cta-section h2 {
        font-size: 2.25rem;
    }

    .cta-section p {
        font-size: 1.0625rem;
    }

    .faculty-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faculty-detail:nth-child(even) .faculty-left-column,
    .faculty-detail:nth-child(even) .faculty-right-column {
        order: 0;
    }

    .faculty-right-column {
        position: static;
    }

    .faculty-page {
        padding: 0;
    }

    .page-header {
        padding: 4rem 2rem 3rem;
    }

    .page-title {
        font-size: 2.75rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .faculty-content {
        padding: 0;
    }

    .faculty-icon-box {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
    }
}

/* Tablet Portrait: 40em - 48em (640px - 768px) */
@media (max-width: 48em) {
    .faculty-main-hero {
        min-height: 40vh;
    }

    .faculty-main-hero .hero-content {
        padding: 3rem 1.5rem;
    }

    .faculty-main-hero .page-title {
        font-size: 2.5rem;
    }

    .faculty-main-hero .page-subtitle {
        font-size: 1.125rem;
    }

    .faculty-intro-section {
        padding: 4rem 1.5rem;
    }

    .faculty-intro-section h2 {
        font-size: 1.875rem;
    }

    .faculty-intro-section p {
        font-size: 1.0625rem;
    }

    .faculty-hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

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

    .hero-description {
        font-size: 1.0625rem;
    }

    .faculty-icon-box-hero {
        width: 7rem;
        height: 7rem;
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .faculty-code-tag {
        font-size: 0.875rem;
        padding: 0.375rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .content-section {
        padding: 3.5rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.875rem;
    }

    .content-section h2::after {
        width: 4rem;
        height: 0.1875rem;
    }

    .content-section p {
        font-size: 1.0625rem;
    }

    .event-item {
        padding: 1.75rem;
    }

    .event-item h3 {
        font-size: 1.25rem;
    }

    .event-item p {
        font-size: 0.9375rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.8125rem;
    }

    .cta-section {
        padding: 4rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.0625rem;
    }

    .faculty-detail {
        gap: 2rem;
    }

    .page-header {
        padding: 3rem 1.5rem 2.5rem;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .content-card h2 {
        font-size: 2rem;
    }

    .content-card p {
        font-size: 1rem;
    }

    .faculty-header-section {
        flex-direction: column;
        gap: 2rem;
    }

    .faculty-icon-box {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2rem;
    }

    .faculty-detail h2 {
        font-size: 1.75rem;
    }

    .cta-card {
        padding: 4rem 2rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }

    .focus-list li {
        font-size: 1.0625rem;
        padding-left: 1.75rem;
    }
}

/* Mobile Landscape: 30em - 40em (480px - 640px) */
@media (max-width: 40em) {
    .faculty-main-hero {
        min-height: 35vh;
    }

    .faculty-main-hero .hero-content {
        padding: 2.5rem 1.25rem;
    }

    .faculty-main-hero .page-title {
        font-size: 2rem;
    }

    .faculty-main-hero .page-subtitle {
        font-size: 1rem;
    }

    .faculty-intro-section {
        padding: 3.5rem 1.25rem;
    }

    .faculty-intro-section h2 {
        font-size: 1.625rem;
    }

    .faculty-intro-section p {
        font-size: 1rem;
    }

    .faculty-hero {
        min-height: 45vh;
    }

    .hero-content {
        padding: 2.5rem 1.25rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .faculty-icon-box-hero {
        width: 6rem;
        height: 6rem;
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }

    .hero-content .faculty-code-tag {
        font-size: 0.8125rem;
        letter-spacing: 0.2em;
        padding: 0.3125rem 1rem;
        margin-bottom: 1.25rem;
    }

    .content-section {
        padding: 3rem 1.25rem;
    }

    .content-section h2 {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }

    .content-section h2::after {
        width: 3.5rem;
        height: 0.1875rem;
    }

    .content-section p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .events-grid {
        gap: 1.5rem;
    }

    .event-item {
        padding: 1.5rem;
    }

    .event-date {
        font-size: 0.8125rem;
        margin-bottom: 0.75rem;
    }

    .event-item h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .event-item p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .cta-section {
        padding: 3.5rem 1.25rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 0.9375rem 1.75rem;
        font-size: 0.75rem;
        width: 100%;
        display: block;
        text-align: center;
    }

    .focus-list li {
        font-size: 1rem;
        padding: 0.625rem 0 0.625rem 1.5rem;
    }
}

/* Mobile Portrait: 20em - 30em (320px - 480px) */
@media (max-width: 30em) {
    .faculty-main-hero {
        min-height: 30vh;
    }

    .faculty-main-hero .hero-content {
        padding: 2rem 1rem;
    }

    .faculty-main-hero .page-title {
        font-size: 1.75rem;
    }

    .faculty-main-hero .page-subtitle {
        font-size: 0.9375rem;
    }

    .faculty-intro-section {
        padding: 3rem 1rem;
    }

    .faculty-intro-section h2 {
        font-size: 1.5rem;
    }

    .faculty-intro-section h2::after {
        width: 3rem;
    }

    .faculty-intro-section p {
        font-size: 0.9375rem;
    }

    .faculty-hero {
        min-height: 40vh;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .faculty-icon-box-hero {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        border-width: 0.1875rem;
    }

    .faculty-icon-box-hero::before {
        top: -0.375rem;
        left: -0.375rem;
        right: -0.375rem;
        bottom: -0.375rem;
    }

    .hero-content .faculty-code-tag {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        padding: 0.25rem 0.875rem;
        margin-bottom: 1rem;
        border-width: 0.0625rem;
    }

    .content-section {
        padding: 2.5rem 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .content-section h2::after {
        width: 3rem;
        height: 0.1875rem;
    }

    .content-section p {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .events-grid {
        gap: 1.25rem;
    }

    .event-item {
        padding: 1.25rem;
        border-left-width: 0.1875rem;
    }

    .event-item::before {
        border-width: 0.0625rem;
    }

    .event-date {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .event-item h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.625rem;
    }

    .event-item p {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .cta-section p {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        line-height: 1.7;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.6875rem;
        letter-spacing: 0.12em;
    }

    .focus-list li {
        font-size: 0.9375rem;
        padding: 0.5rem 0 0.5rem 1.375rem;
    }

    .focus-list li::before {
        font-size: 0.875rem;
    }
}

/* Individual Faculty Page Styles */
.faculty-page .page-header {
    background: linear-gradient(135deg, rgba(37, 33, 99, 0.03) 0%, rgba(255, 136, 0, 0.03) 100%);
    border-bottom: 0.0625rem solid rgba(37, 33, 99, 0.08);
}

.faculty-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.content-section {
    padding: 0 0 4rem 0;
    border-bottom: 0.0625rem solid rgba(37, 33, 99, 0.08);
    margin-bottom: 4rem;
}

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

.content-section h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #252163;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #495057;
    margin: 0;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-list li {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #495057;
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.focus-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ff8800;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ff8800;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
    font-weight: 600;
    border: 0.125rem solid #ff8800;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: white;
    color: #252163;
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 1.5rem rgba(255, 136, 0, 0.3);
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #495057;
    margin: 0 0 1.5rem 0;
}

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

