/* BNS — Visiting Expert Faculty */
.bns-faculty-page {
    --bns-faculty-section-space: 64px;
    --bns-faculty-block-pad-y: 44px;
    --bns-faculty-block-pad-x: 40px;
    background: linear-gradient(180deg, #e8edf4 0%, #f4f6f9 40%, #eef2f7 100%);
    padding-bottom: 100px;
}

.bns-faculty-intro {
    margin: 50px auto 48px;
    padding: 0;
}

.bns-faculty-intro .container {
    max-width: 920px;
    margin: 0 auto;
    padding: var(--bns-faculty-block-pad-y) var(--bns-faculty-block-pad-x);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-align: center;
}

.bns-faculty-intro__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: #0a1d37;
    margin: 0 0 16px;
}

.bns-faculty-intro__text {
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: #363a40;
}

.bns-faculty-hub {
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 0;
}

.bns-faculty-hub > .container > .bns-faculty-grid,
.bns-faculty-hub > .container > .bns-faculty-empty,
.bns-faculty-hub > .container > .bns-faculty-block {
    margin-bottom: var(--bns-faculty-section-space);
}

.bns-faculty-hub > .container > .bns-faculty-block:last-child {
    margin-bottom: 50px;
}

.bns-faculty-block {
    padding: var(--bns-faculty-block-pad-y) var(--bns-faculty-block-pad-x);
    border-radius: 16px;
}

/* Faculty card */
.bns-faculty-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bns-faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.14);
}

.bns-faculty-card__header {
    position: relative;
    height: 110px;
    background: linear-gradient(135deg, #0a2240 0%, #123a5e 55%, #1a4a72 100%);
}

.bns-faculty-card__header::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08));
    pointer-events: none;
}

.bns-faculty-card__avatar {
    position: relative;
    z-index: 2;
    width: 124px;
    height: 124px;
    margin: 48px auto 0;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 12px 32px rgba(10, 34, 64, 0.28);
    background: linear-gradient(135deg, var(--eduvers-base) 0%, #e04a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bns-faculty-card__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.bns-faculty-card__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.bns-faculty-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 72px 24px 28px;
}

.bns-faculty-card__label {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.bns-faculty-card__name {
    margin: 0 0 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1d37;
    line-height: 1.35;
}

.bns-faculty-card__designation {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--eduvers-base);
    line-height: 1.45;
}

.bns-faculty-card__recognition {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 14px;
    padding: 10px 14px;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    color: #363a40;
    background: linear-gradient(180deg, #fff8f5 0%, #fff 100%);
    border: 1px solid rgba(255, 85, 68, 0.15);
    border-radius: 12px;
}

.bns-faculty-card__recognition i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #f59e0b;
}

.bns-faculty-card__accent {
    display: block;
    width: 48px;
    height: 3px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--eduvers-base) 0%, #e04a3a 100%);
}

.bns-faculty-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-bottom: 18px;
}

.bns-faculty-card__stat {
    padding: 12px 10px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.bns-faculty-card__stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a1d37;
    line-height: 1.2;
    margin-bottom: 4px;
}

.bns-faculty-card__stat-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.bns-faculty-card__details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
}

.bns-faculty-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.bns-faculty-card__detail i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--eduvers-base);
    font-size: 14px;
}

.bns-faculty-card__detail-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.bns-faculty-card__detail-text {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #363a40;
}

.bns-faculty-card__tags-wrap {
    width: 100%;
    margin-bottom: 14px;
    text-align: left;
}

.bns-faculty-card__tags-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.bns-faculty-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bns-faculty-card__tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #2a2e34;
    background: rgba(var(--eduvers-base-rgb, 255, 85, 68), 0.08);
    border: 1px solid rgba(var(--eduvers-base-rgb, 255, 85, 68), 0.18);
    border-radius: 999px;
}

.bns-faculty-card__tags--muted .bns-faculty-card__tag {
    background: #f1f3f7;
    border-color: rgba(15, 23, 42, 0.08);
    color: #363a40;
}

.bns-faculty-card__about {
    width: 100%;
    margin: 8px 0 0;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #454950;
    text-align: left;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--eduvers-base);
}

.bns-faculty-empty {
    text-align: center;
    padding: 52px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    color: #64748b;
}

.bns-faculty-empty i {
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.bns-faculty-empty p { margin: 0; font-size: 16px; line-height: 1.6; }

.bns-faculty-excellence {
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-align: center;
}

.bns-faculty-excellence__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eduvers-base);
    margin-bottom: 12px;
}

.bns-faculty-excellence__title {
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 700;
    color: var(--eduvers-black);
    margin: 0 0 24px;
}

.bns-faculty-excellence__text {
    max-width: 820px;
    margin: 0 auto 16px;
    font-size: 16px;
    line-height: 1.75;
    color: #454950;
}

.bns-faculty-excellence__text:last-child { margin-bottom: 0; }

.bns-faculty-tagline {
    text-align: center;
    background: linear-gradient(135deg, #0a2240 0%, #123a5e 55%, #1a4a72 100%);
    color: #fff;
    box-shadow: 0 16px 48px rgba(10, 34, 64, 0.25);
}

.bns-faculty-tagline__brand {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.9);
}

.bns-faculty-tagline__text {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.5;
    color: #fe5500;
}

@media (max-width: 767px) {
    .bns-faculty-page {
        --bns-faculty-section-space: 48px;
        --bns-faculty-block-pad-y: 32px;
        --bns-faculty-block-pad-x: 24px;
        padding-bottom: 80px;
    }

    .bns-faculty-intro {
        margin: 40px auto 40px;
    }

    .bns-faculty-card__body {
        padding: 68px 20px 24px;
    }
}
