/* ═══════════════════════════════════════════════
   د. أحمد شحاتة — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
    --drah-blue: #0d60a2;
    --drah-blue-dark: #094a7d;
    --drah-blue-light: #e8f4fd;
    --drah-green: #268e15;
    --drah-green-dark: #1d6e10;
    --drah-green-light: #e8f5e6;
    --drah-dark: #1a1a2e;
    --drah-gray: #6c757d;
    --drah-light: #f8f9fa;
    --drah-white: #ffffff;
    --drah-gold: #d4a017;
    --drah-radius: 12px;
    --drah-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --drah-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --drah-transition: all 0.3s ease;
}

/* ── Base ──────────────────────────────────────── */
* { box-sizing: border-box; }
html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    color: #333;
    background: var(--drah-white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

a { color: var(--drah-blue); text-decoration: none; transition: var(--drah-transition); }
a:hover { color: var(--drah-blue-dark); }

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

.min-vh-75 { min-height: 75vh; }

/* ── Buttons ──────────────────────────────────── */
.btn { border-radius: 8px; font-weight: 600; padding: 10px 24px; transition: var(--drah-transition); }
.btn-primary { background: var(--drah-blue); border-color: var(--drah-blue); }
.btn-primary:hover { background: var(--drah-blue-dark); border-color: var(--drah-blue-dark); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(13,96,162,0.3); }
.btn-success { background: var(--drah-green); border-color: var(--drah-green); }
.btn-success:hover { background: var(--drah-green-dark); border-color: var(--drah-green-dark); }
.btn-accent { background: linear-gradient(135deg, var(--drah-green), var(--drah-blue)); border: none; color: #fff; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,96,162,0.35); color: #fff; }
.btn-outline-primary { color: var(--drah-blue); border-color: var(--drah-blue); }
.btn-outline-primary:hover { background: var(--drah-blue); color: #fff; }

/* ── Navbar ───────────────────────────────────── */
.drah-navbar {
    background: linear-gradient(135deg, var(--drah-dark) 0%, var(--drah-blue-dark) 100%);
    padding: 8px 0;
    transition: var(--drah-transition);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.drah-navbar.scrolled { padding: 4px 0; background: rgba(26,26,46,0.97); backdrop-filter: blur(10px); }
.drah-logo { height: 50px; width: auto; transition: var(--drah-transition); }
.drah-navbar.scrolled .drah-logo { height: 40px; }
.drah-navbar .nav-link { color: rgba(255,255,255,0.85); font-weight: 500; padding: 8px 14px !important; border-radius: 6px; transition: var(--drah-transition); }
.drah-navbar .nav-link:hover, .drah-navbar .nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.drah-navbar .dropdown-menu { border: none; border-radius: var(--drah-radius); box-shadow: var(--drah-shadow-hover); }

/* Mobile menu */
.drah-offcanvas-header { background: linear-gradient(135deg, var(--drah-dark), var(--drah-blue-dark)); padding: 20px; }
.drah-mobile-logo { height: 40px; }
.drah-mobile-nav {
    gap: 6px;
}
.drah-mobile-nav > .nav-item {
    border-bottom: 1px solid #eee;
}
.drah-mobile-nav .nav-link {
    color: #333;
}
.drah-mobile-nav-main-link {
    padding: 12px 16px;
    font-weight: 800;
}
.drah-mobile-nav .nav-link.active {
    color: var(--drah-blue);
    background: var(--drah-blue-light);
}
.drah-mobile-nav-parent {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: stretch;
}
.drah-mobile-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-right: 1px solid #eee;
    background: transparent;
    color: var(--drah-blue);
    transition: var(--drah-transition);
}
.drah-mobile-submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.drah-mobile-submenu {
    margin: 0 14px 10px 0;
    padding: 6px 0;
    border-right: 3px solid var(--drah-blue-light);
    border-radius: 8px;
    background: #f7fbff;
}
.drah-mobile-submenu.collapsing {
    display: flex;
    height: auto !important;
    overflow: visible;
    flex-direction: column;
    transition: none;
}
.drah-mobile-submenu.show {
    display: flex;
    flex-direction: column;
}
.drah-mobile-submenu .drah-mobile-sub-link {
    padding: 9px 14px;
    border-bottom: 0;
    color: #55606f;
    font-size: 0.92rem;
    font-weight: 700;
}
.drah-mobile-submenu .drah-mobile-sub-link::before {
    content: "-";
    margin-left: 7px;
    color: var(--drah-blue);
    font-weight: 900;
}

/* ── News Ticker ──────────────────────────────── */
.drah-news-ticker { background: var(--drah-blue); color: #fff; padding: 8px 0; overflow: hidden; }
.drah-ticker-label { background: var(--drah-green); padding: 4px 16px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0; }
.drah-ticker-wrap { overflow: hidden; flex: 1; margin-right: 16px; }
.drah-ticker-content { display: flex; animation: tickerScroll 30s linear infinite; white-space: nowrap; gap: 40px; }
.drah-ticker-content:hover { animation-play-state: paused; }
.drah-ticker-item { color: #fff; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.drah-ticker-dot { width: 6px; height: 6px; background: var(--drah-green); border-radius: 50%; flex-shrink: 0; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* ── Hero Section ─────────────────────────────── */
.drah-hero { position: relative; background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: flex-start; min-height: 72vh; padding-top: 7vh; }
.drah-hero > .container { transform: translateY(-22px); }
.drah-hero .min-vh-75 { min-height: 58vh; }
.drah-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(13,96,162,0.7) 100%); }
.drah-hero-title { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1.3; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.drah-hero-desc { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 600px; margin-top: 16px; }
.drah-hero-btns { margin-top: 30px; }

/* Homepage sections */
.drah-home-leaders-section {
    position: relative;
    z-index: 2;
    margin-top: -118px;
    padding-bottom: 44px;
}
.drah-home-leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}
.drah-home-leader-card {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 8px;
    background: var(--drah-blue-light);
    box-shadow: 0 24px 52px rgba(17, 40, 77, 0.20);
    isolation: isolate;
    transition: var(--drah-transition);
}
.drah-home-leader-card-primary {
    border-color: rgba(255,255,255,0.55);
}
.drah-home-leader-photo {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.drah-home-leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.55s ease;
}
.drah-home-leader-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 36, 64, 0.04) 0%, rgba(8, 36, 64, 0.02) 45%, rgba(4, 66, 20, 0.84) 100%);
}
.drah-home-leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 62px rgba(17, 40, 77, 0.25);
}
.drah-home-leader-card:hover .drah-home-leader-photo img {
    transform: scale(1.05);
}
.drah-home-leader-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px 26px 24px;
    background:
        linear-gradient(135deg, rgba(12, 129, 45, 0.94), rgba(16, 99, 38, 0.86)),
        linear-gradient(90deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
    color: #fff;
}
.drah-home-leader-copy h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.48rem;
    font-weight: 900;
    line-height: 1.45;
    text-shadow: 0 2px 8px rgba(0,0,0,0.16);
}
.drah-home-leader-copy p {
    margin: 0 0 13px;
    color: rgba(255,255,255,0.9);
    font-weight: 800;
    line-height: 1.75;
}
.drah-home-leader-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 116px;
    padding: 7px 14px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--drah-blue), var(--drah-blue-dark));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.drah-home-leader-link:hover {
    background: linear-gradient(135deg, var(--drah-blue-dark), var(--drah-blue));
    color: #fff;
    transform: translateY(-2px);
}
.drah-home-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--drah-blue);
    font-weight: 900;
}
.drah-home-more-link:hover {
    color: var(--drah-green);
}
.drah-home-news-more-link {
    justify-content: center;
    min-width: 128px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--drah-blue);
    color: #fff;
    white-space: nowrap;
}
.drah-home-news-more-link:hover {
    background: var(--drah-green);
    color: #fff;
    transform: translateY(-2px);
}
.drah-home-speech-section {
    background: linear-gradient(180deg, #fff, #f7fbff);
}
.drah-home-speech-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: center;
}
.drah-home-speech-copy h2,
.drah-home-section-head h2,
.drah-home-upcoming-copy h2 {
    margin: 0 0 14px;
    color: var(--drah-dark);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 900;
    line-height: 1.35;
}
.drah-home-speech-copy p,
.drah-home-upcoming-copy p {
    color: #4f5968;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 2.05;
}
.drah-home-speech-copy .btn {
    margin-top: 8px;
}
.drah-home-speech-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(17, 40, 77, 0.12);
}
.drah-home-speech-image::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.42);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}
.drah-home-speech-image img {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
}
.drah-home-news-section {
    background: #fff;
}
.drah-home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.drah-home-section-head h2 {
    margin-bottom: 0;
}
.drah-home-news-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.drah-home-news-card {
    display: flex;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 40, 77, 0.065);
    transition: var(--drah-transition);
}
.drah-home-news-card:hover {
    border-color: rgba(13,96,162,0.28);
    box-shadow: 0 20px 42px rgba(17, 40, 77, 0.11);
    transform: translateY(-4px);
}
.drah-home-news-image {
    display: block;
    height: 172px;
    overflow: hidden;
    background: var(--drah-blue-light);
}
.drah-home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.drah-home-news-card:hover .drah-home-news-image img {
    transform: scale(1.05);
}
.drah-home-news-body {
    display: flex;
    min-height: 228px;
    flex-direction: column;
    padding: 16px;
}
.drah-home-news-body > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #6b7480;
    font-size: 0.82rem;
    font-weight: 800;
}
.drah-home-news-body h3 {
    margin: 0 0 10px;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.65;
}
.drah-home-news-body h3 a {
    color: var(--drah-dark);
}
.drah-home-news-body h3 a:hover {
    color: var(--drah-blue);
}
.drah-home-news-body p {
    display: -webkit-box;
    min-height: 4.9em;
    margin: 0 0 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: #647082;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.75;
}
.drah-home-news-body .drah-card-more {
    margin-top: auto;
}
.drah-home-upcoming-section {
    background: linear-gradient(180deg, #f7fbff, #fff);
}
.drah-home-upcoming-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: center;
    overflow: hidden;
    padding: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #082440, #0d60a2);
    color: #fff;
    box-shadow: 0 24px 52px rgba(17, 40, 77, 0.18);
}
.drah-home-upcoming-copy h2,
.drah-home-upcoming-copy p {
    color: #fff;
}
.drah-home-upcoming-copy p {
    color: rgba(255,255,255,0.82);
}
.drah-home-upcoming-copy h3 {
    margin: 18px 0 22px;
    color: #dff7da;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.65;
}
.drah-home-upcoming-visual {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}
.drah-home-upcoming-visual img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
}

/* ── Section styling ──────────────────────────── */
.drah-section { padding: 80px 0; }
.drah-section-header { margin-bottom: 50px; }
.drah-section-title { font-size: 2rem; font-weight: 800; color: var(--drah-dark); position: relative; }
.drah-title-line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--drah-blue), var(--drah-green)); border-radius: 2px; margin: 12px auto 0; }
.drah-section-header:not(.text-center) .drah-title-line { margin-right: 0; }

/* ── Page Header ──────────────────────────────── */
.drah-page-header { background: linear-gradient(135deg, var(--drah-dark) 0%, var(--drah-blue) 100%); padding: 80px 0 50px; text-align: center; position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.drah-page-header-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,26,46,0.9), rgba(13,96,162,0.78)); }
.drah-page-title { color: #fff; font-size: 2.5rem; font-weight: 800; }
.drah-page-subtitle { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 8px; }

/* Breadcrumb */
.drah-breadcrumb { background: var(--drah-light); padding: 12px 0; border-bottom: 1px solid #e9ecef; }
.drah-breadcrumb .breadcrumb-item a { color: var(--drah-blue); }

/* ── Cards ────────────────────────────────────── */
.drah-card { background: #fff; border-radius: var(--drah-radius); box-shadow: var(--drah-shadow); overflow: hidden; transition: var(--drah-transition); height: 100%; display: flex; flex-direction: column; }
.drah-card:hover { transform: translateY(-6px); box-shadow: var(--drah-shadow-hover); }
.drah-card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.drah-card-img { width: 100%; height: 100%; object-fit: cover; transition: var(--drah-transition); }
.drah-card:hover .drah-card-img { transform: scale(1.05); }
.drah-card-badge { position: absolute; top: 12px; right: 12px; background: var(--drah-blue); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.drah-badge-gold { background: linear-gradient(135deg, var(--drah-gold), #f0c040); color: #333; }
.drah-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.drah-card-title { font-size: 1.1rem; font-weight: 700; color: var(--drah-dark); margin-bottom: 8px; }
.drah-card-subtitle { color: var(--drah-blue); font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.drah-card-date { color: var(--drah-gray); font-size: 0.85rem; margin-bottom: 8px; }
.drah-card-text { color: #666; font-size: 0.9rem; flex: 1; line-height: 1.7; }
.drah-card-body .btn { margin-top: auto; align-self: flex-start; }

.drah-card-media {
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(17, 40, 77, 0.07);
}
.drah-card-media:hover {
    border-color: rgba(13,96,162,0.26);
}
.drah-card-media .drah-card-img-wrap {
    height: auto;
    aspect-ratio: 16 / 10;
    background: var(--drah-light);
}
.drah-card-media .drah-card-img,
.drah-card-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}
.drah-card-media .drah-card-badge {
    top: 14px;
    right: 14px;
    background: rgba(26,26,46,0.86);
    color: #fff;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}
.drah-card-media .drah-card-body {
    padding: 18px;
}
.drah-card-media .drah-card-title {
    min-height: 56px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 800;
}
.drah-card-media .drah-card-title a {
    color: var(--drah-dark);
}
.drah-card-media .drah-card-title a:hover {
    color: var(--drah-blue);
}
.drah-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.drah-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
}
.drah-card-media .drah-card-text {
    margin-bottom: 18px;
}
.drah-card-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding: 10px 12px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--drah-blue), var(--drah-blue-dark));
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
}
.drah-card-more:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--drah-green), var(--drah-blue));
    transform: translateY(-2px);
}
.drah-card-more i {
    transition: var(--drah-transition);
}
.drah-card-more:hover i {
    transform: translateX(-4px);
}

.drah-single-media-section {
    background: linear-gradient(180deg, #f7fafc 0%, #eef5fb 100%);
    overflow-x: hidden;
}
.drah-single-media-content,
.drah-single-media-sidebar {
    background: #fff;
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 10px;
    box-shadow: 0 16px 38px rgba(17, 40, 77, 0.07);
}
.drah-single-media-content {
    padding: 26px;
    min-width: 0;
}
.drah-single-media-sidebar {
    padding: 20px;
    position: sticky;
    top: 110px;
    min-width: 0;
}
.drah-single-media-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
}
.drah-single-media-title-inline {
    flex: 1 1 0;
    min-width: 260px;
    color: var(--drah-dark);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.7;
}
.drah-single-media-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 0.88rem;
    font-weight: 800;
}
.drah-single-media-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(17, 40, 77, 0.08);
    margin-bottom: 24px;
}
.drah-single-media-visual {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(17, 40, 77, 0.08);
    margin-bottom: 24px;
    background: #111827;
}
.drah-single-media-visual .drah-card-video {
    width: 100%;
    height: 100%;
}
.drah-single-media-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e7edf3;
}
.drah-single-media-block h4,
.drah-single-media-sidebar h5 {
    color: var(--drah-dark);
    font-weight: 900;
}
.drah-single-media-sidebar h5 {
    position: relative;
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 1.05rem;
}
.drah-single-media-sidebar h5::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--drah-green), var(--drah-blue));
}
.drah-post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #e7edf3;
}
.drah-post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 96px;
    padding: 16px;
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 10px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    color: var(--drah-dark);
}
.drah-post-nav-link:hover {
    border-color: rgba(13,96,162,0.28);
    color: var(--drah-blue);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(17, 40, 77, 0.08);
}
.drah-post-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--drah-blue);
    font-size: 0.82rem;
    font-weight: 900;
}
.drah-post-nav-link strong {
    line-height: 1.6;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

/* Person card */
.drah-card-person .drah-card-img-wrap { height: 260px; }

/* Partner card */
.drah-partner-logo-wrap { display: flex; align-items: center; justify-content: center; height: 150px; background: var(--drah-light); padding: 20px; }
.drah-partner-logo { max-height: 100%; width: auto; object-fit: contain; }
.drah-partner-placeholder { font-size: 3rem; color: var(--drah-gray); }
.drah-discount-badge { background: var(--drah-green-light); color: var(--drah-green-dark); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: inline-block; margin-bottom: 8px; }

/* ── Speech Section ───────────────────────────── */
.drah-speech-section { background: linear-gradient(to left, var(--drah-blue-light) 0%, #fff 100%); }
.drah-speech-img-wrap { border-radius: var(--drah-radius); overflow: hidden; box-shadow: var(--drah-shadow-hover); }
.drah-speech-img { width: 100%; height: auto; display: block; }
.drah-speech-text { font-size: 1.05rem; line-height: 2; color: #444; }

/* ── Structure cards ──────────────────────────── */
.drah-structure-card { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 24px; border-radius: var(--drah-radius); color: #fff; text-decoration: none; transition: var(--drah-transition); min-height: 200px; text-align: center; }
.drah-structure-card:hover { transform: translateY(-6px); color: #fff; }
.drah-structure-card i { font-size: 3rem; margin-bottom: 16px; }
.drah-structure-card h4 { font-weight: 700; margin-bottom: 12px; }
.drah-structure-blue { background: linear-gradient(135deg, var(--drah-blue), var(--drah-blue-dark)); }
.drah-structure-green { background: linear-gradient(135deg, var(--drah-green), var(--drah-green-dark)); }
.drah-structure-dark { background: linear-gradient(135deg, #2c3e50, var(--drah-dark)); }

/* ── Organization Structure ───────────────────── */
.drah-org-tabs .nav-link { padding: 12px 24px; border-radius: 30px; font-weight: 600; color: var(--drah-dark); background: var(--drah-light); margin: 0 4px; }
.drah-org-tabs .nav-link.active { background: var(--drah-blue); color: #fff; }
.drah-org-item { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: #fff; border-radius: var(--drah-radius); box-shadow: var(--drah-shadow); transition: var(--drah-transition); color: var(--drah-dark); text-decoration: none; }
.drah-org-item:hover { background: var(--drah-blue-light); color: var(--drah-blue); transform: translateX(-4px); }
.drah-org-item span { flex: 1; font-weight: 600; }

/* ── Alexandria Secretariat redesign ─────────── */
.drah-alex-hero {
    position: relative;
    padding: 64px 0 72px;
    background:
        linear-gradient(135deg, rgba(8, 36, 64, 0.92), rgba(13, 96, 162, 0.82)),
        var(--alex-bg) center / cover fixed;
    color: #fff;
    overflow: hidden;
}
.drah-alex-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
    pointer-events: none;
}
.drah-alex-hero .container {
    position: relative;
    z-index: 1;
}
.drah-alex-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 34px;
}
.drah-alex-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(2.15rem, 4vw, 4.15rem);
    font-weight: 900;
    line-height: 1.22;
    color: #fff;
}
.drah-alex-hero-copy h2 {
    margin: 0 0 18px;
    color: #bce8b5;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-weight: 900;
}
.drah-alex-hero-copy p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 1.04rem;
    line-height: 2.05;
}
.drah-alex-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.drah-alex-hero-actions .btn {
    min-width: 150px;
}
.drah-alex-doctor-panel {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 24px 50px rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
}
.drah-alex-doctor-panel img {
    width: 148px;
    height: 176px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(255,255,255,0.14);
}
.drah-alex-doctor-panel strong,
.drah-alex-doctor-panel span {
    display: block;
}
.drah-alex-doctor-panel strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.65;
}
.drah-alex-doctor-panel span {
    color: rgba(255,255,255,0.76);
    line-height: 1.85;
}
.drah-alex-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.drah-alex-content-card {
    min-width: 0;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: var(--drah-dark);
    box-shadow: 0 18px 36px rgba(0,0,0,0.10);
}
.drah-alex-content-card-wide {
    grid-column: 1 / -1;
}
.drah-alex-content-card > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--drah-blue);
    font-size: 1.08rem;
    font-weight: 900;
}
.drah-alex-content-card > span i {
    color: var(--drah-green);
}
.drah-alex-content-card p,
.drah-alex-content-card li {
    color: #4f5968;
    line-height: 1.95;
    font-weight: 600;
}
.drah-alex-content-card p {
    margin-bottom: 0;
}
.drah-alex-content-card ul,
.drah-alex-content-card ol {
    margin: 0;
    padding-right: 20px;
}
.drah-alex-content-card li + li {
    margin-top: 8px;
}
.drah-alex-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.drah-alex-values p {
    padding: 12px 14px;
    border-radius: 8px;
    background: #f4f8fb;
}
.drah-alex-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.drah-alex-section-head h2 {
    margin: 0 0 8px;
    color: var(--drah-dark);
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    font-weight: 900;
}
.drah-alex-section-head p {
    margin: 0;
    color: #6b7480;
    font-weight: 600;
    line-height: 1.8;
}
.drah-alex-section-head-center {
    justify-content: center;
    text-align: center;
}
.drah-alex-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 128px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--drah-blue);
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}
.drah-alex-more-link:hover {
    background: var(--drah-green);
    color: #fff;
    transform: translateY(-2px);
}
.drah-alex-people-section {
    background: #fff;
}
.drah-alex-people-section-soft,
.drah-alex-listing-section {
    background: linear-gradient(180deg, #f7fbff, #fff);
}
.drah-alex-slider {
    position: relative;
    padding: 0 56px;
}
.drah-alex-slider-window {
    overflow: hidden;
    direction: ltr;
}
.drah-alex-slider-track {
    display: flex;
    gap: 18px;
    direction: ltr;
    transition: transform 0.6s ease;
    will-change: transform;
}
.drah-alex-slider-compact .drah-alex-slider-track {
    justify-content: flex-start;
}
.drah-alex-slider-compact .drah-alex-slider-slide {
    max-width: 390px;
}
.drah-alex-slider-slide {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    direction: rtl;
}
.drah-alex-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(13,96,162,0.18);
    border-radius: 50%;
    background: #fff;
    color: var(--drah-blue);
    box-shadow: 0 12px 24px rgba(17, 40, 77, 0.10);
    transform: translateY(-50%);
    transition: var(--drah-transition);
}
.drah-alex-slider-arrow:hover {
    background: var(--drah-blue);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.drah-alex-slider-next {
    right: 0;
}
.drah-alex-slider-prev {
    left: 0;
}
.drah-alex-person-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    min-height: 210px;
    padding: 18px;
    overflow: visible;
    border: 1px solid rgba(13,96,162,0.13);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(17, 40, 77, 0.07);
    transition: var(--drah-transition);
}
.drah-alex-person-card-leader {
    border-color: rgba(201,149,26,0.34);
    background: linear-gradient(180deg, #fffdf7 0%, #fff 58%);
    box-shadow: 0 18px 38px rgba(120, 88, 18, 0.11);
}
.drah-alex-person-card-leader::before {
    content: "";
    position: absolute;
    top: 0;
    right: 18px;
    left: 18px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #d9a52d, #f3d27a, #0d60a2);
}
.drah-alex-person-card:hover {
    border-color: rgba(13,96,162,0.30);
    box-shadow: 0 22px 42px rgba(17, 40, 77, 0.12);
    transform: translateY(-5px);
}
.drah-alex-person-card-leader:hover {
    border-color: rgba(201,149,26,0.52);
    box-shadow: 0 24px 48px rgba(120, 88, 18, 0.16);
}
.drah-alex-leader-mark {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border: 1px solid rgba(201,149,26,0.24);
    border-radius: 8px;
    background: rgba(255, 248, 225, 0.94);
    color: #9a6b08;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.4;
}
.drah-alex-leader-mark i {
    color: #c9951a;
    font-size: 0.78rem;
}
.drah-alex-person-photo {
    display: inline-flex;
    flex: 0 0 118px;
    width: 118px;
    height: 118px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--drah-blue-light);
    box-shadow: 0 0 0 2px rgba(13,96,162,0.18), 0 12px 24px rgba(17, 40, 77, 0.12);
}
.drah-alex-person-card-leader .drah-alex-person-photo {
    box-shadow: 0 0 0 2px rgba(201,149,26,0.34), 0 14px 28px rgba(120, 88, 18, 0.16);
}
.drah-alex-person-photo img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.drah-alex-person-card:hover .drah-alex-person-photo img {
    transform: scale(1.05);
}
.drah-alex-person-body {
    display: flex;
    min-width: 0;
    min-height: 174px;
    flex-direction: column;
    flex: 1;
    padding: 0;
}
.drah-alex-person-role {
    display: inline-flex;
    align-self: flex-start;
    max-width: 100%;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 8px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.5;
}
.drah-alex-person-card-leader .drah-alex-person-role {
    background: rgba(255, 245, 215, 0.92);
    color: #9a6b08;
}
.drah-alex-person-body h3 {
    margin: 0 0 6px;
    font-size: 1.06rem;
    font-weight: 900;
    line-height: 1.55;
}
.drah-alex-person-body h3 a {
    color: var(--drah-dark);
}
.drah-alex-person-body h3 a:hover {
    color: var(--drah-blue);
}
.drah-alex-person-position,
.drah-alex-person-bio {
    margin: 0 0 8px;
    color: #647082;
    line-height: 1.75;
}
.drah-alex-person-position {
    color: var(--drah-green-dark);
    font-size: 0.92rem;
    font-weight: 800;
}
.drah-alex-person-bio {
    font-size: 0.88rem;
    display: -webkit-box;
    min-height: 4.65em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.drah-alex-person-social {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.drah-alex-person-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13,96,162,0.16);
    border-radius: 50%;
    background: #f6faff;
    color: var(--drah-blue);
    font-size: 0.98rem;
    transition: var(--drah-transition);
}
.drah-alex-person-social a:hover {
    border-color: var(--drah-blue);
    background: var(--drah-blue);
    color: #fff;
    transform: translateY(-2px);
}
.drah-alex-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.drah-alex-structure-section {
    background: #fff;
}
.drah-alex-structure-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.drah-alex-structure-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 24px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 18px 36px rgba(17, 40, 77, 0.12);
}
.drah-alex-structure-card::after {
    content: "";
    position: absolute;
    top: -48px;
    left: -42px;
    width: 132px;
    height: 132px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
}
.drah-alex-structure-card:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 24px 44px rgba(17, 40, 77, 0.18);
}
.drah-alex-structure-card > i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.16);
    font-size: 1.55rem;
}
.drah-alex-structure-card span {
    margin-top: 24px;
    font-size: 1.2rem;
    font-weight: 900;
}
.drah-alex-structure-card strong {
    font-size: 1.9rem;
    font-weight: 900;
}
.drah-alex-structure-card small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    font-weight: 800;
}
.drah-alex-structure-card-blue {
    background: linear-gradient(135deg, #0d60a2, #083a63);
}
.drah-alex-structure-card-green {
    background: linear-gradient(135deg, #268e15, #145f29);
}
.drah-alex-structure-card-gold {
    background: linear-gradient(135deg, #c9951a, #76501b);
}

/* ── Media Center ─────────────────────────────── */
.drah-media-desktop-grid { display: none; }
.drah-media-mobile-tabs { display: block; }
.drah-media-tabs-layout { position: relative; }
.drah-media-column-card,
.drah-media-panels {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(17, 40, 77, 0.08);
}
.drah-media-column-card {
    height: 100%;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
}
.drah-media-column-card::before,
.drah-media-panels::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--drah-green), var(--drah-blue));
}
.drah-media-tabs {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(180deg, #ffffff, #f4f8fc);
    border: 1px solid rgba(13,96,162,0.08);
    border-radius: 24px;
    box-shadow: var(--drah-shadow);
}
.drah-media-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: transparent;
    color: var(--drah-dark);
    text-align: right;
    transition: var(--drah-transition);
}
.drah-media-tabs .nav-link:hover {
    background: rgba(13,96,162,0.05);
    border-color: rgba(13,96,162,0.12);
    transform: translateY(-2px);
}
.drah-media-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--drah-blue), var(--drah-blue-dark));
    color: #fff;
    box-shadow: 0 14px 28px rgba(13,96,162,0.24);
}
.drah-media-tab-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,96,162,0.08);
    color: var(--drah-blue);
    font-size: 1.35rem;
    flex-shrink: 0;
}
.drah-media-tabs .nav-link.active .drah-media-tab-icon {
    background: rgba(255,255,255,0.16);
    color: #fff;
}
.drah-media-tab-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.drah-media-tab-copy strong {
    font-size: 1rem;
    font-weight: 800;
}
.drah-media-tab-copy small {
    color: inherit;
    opacity: 0.72;
    font-size: 0.84rem;
}
.drah-media-panels {
    min-height: 100%;
    padding: 30px;
    position: relative;
}
.drah-media-panel-head {
    margin-bottom: 24px;
}
.drah-media-panel-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 0.82rem;
    font-weight: 800;
}
.drah-media-panel-head h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--drah-dark);
}
.drah-media-panel-head p {
    margin-bottom: 0;
    color: #5d6675;
    line-height: 1.9;
}
.drah-media-term-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    height: 100%;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(13,96,162,0.14);
    box-shadow: 0 12px 24px rgba(17, 40, 77, 0.05);
    color: var(--drah-dark);
    transition: var(--drah-transition);
}
.drah-media-term-card:hover {
    color: var(--drah-blue);
    border-color: rgba(13,96,162,0.28);
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(13,96,162,0.12);
}
.drah-media-term-name {
    font-weight: 700;
    line-height: 1.7;
}
.drah-media-term-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    flex-shrink: 0;
}

/* ── Event Highlight ──────────────────────────── */
.drah-event-highlight { background: linear-gradient(135deg, var(--drah-blue-light), #f0f7ff); }

/* ── Info cards ───────────────────────────────── */
.drah-info-card { background: #fff; border-radius: var(--drah-radius); padding: 24px; box-shadow: var(--drah-shadow); border-right: 4px solid var(--drah-blue); }
.drah-info-card h5 { font-weight: 700; margin-bottom: 12px; }

/* Single party person */
.drah-person-hero {
    position: relative;
    padding: 64px 0 70px;
    background: linear-gradient(135deg, #082440, #0d60a2);
    color: #fff;
    overflow: hidden;
}
.drah-person-hero-leader {
    background: linear-gradient(135deg, #082440 0%, #0d60a2 58%, #8b6412 100%);
}
.drah-person-hero-grid {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}
.drah-person-photo-panel {
    display: grid;
    justify-items: center;
    gap: 14px;
}
.drah-person-photo-frame {
    width: 210px;
    height: 210px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 22px 46px rgba(0,0,0,0.22);
}
.drah-person-photo-frame img {
    width: 100%;
    height: 100%;
    border: 4px solid #fff;
    border-radius: inherit;
    object-fit: cover;
}
.drah-person-leader-badge,
.drah-person-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 900;
}
.drah-person-leader-badge {
    padding: 7px 12px;
    background: #fff4cf;
    color: #8b6412;
}
.drah-person-kicker {
    margin-bottom: 12px;
    padding: 6px 11px;
    background: rgba(255,255,255,0.12);
    color: #dff3ff;
}
.drah-person-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 900;
    line-height: 1.25;
}
.drah-person-summary {
    max-width: 820px;
    margin: 0;
    color: rgba(255,255,255,0.84);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 2;
}
.drah-person-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.drah-person-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.drah-person-profile-section {
    background: linear-gradient(180deg, #f7fbff, #fff);
}
.drah-person-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.drah-person-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
}
.drah-person-panel,
.drah-person-bio-panel {
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(17, 40, 77, 0.06);
}
.drah-person-panel {
    padding: 18px;
}
.drah-person-panel h2 {
    margin: 0 0 12px;
    color: var(--drah-dark);
    font-size: 1.08rem;
    font-weight: 900;
}
.drah-person-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.drah-person-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13,96,162,0.16);
    border-radius: 50%;
    background: #f6faff;
    color: var(--drah-blue);
    font-size: 1.12rem;
    transition: var(--drah-transition);
}
.drah-person-social a:hover {
    border-color: var(--drah-blue);
    background: var(--drah-blue);
    color: #fff;
    transform: translateY(-2px);
}
.drah-person-taxonomy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.drah-person-taxonomy-list span {
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 0.82rem;
    font-weight: 900;
}
.drah-person-main {
    display: grid;
    gap: 18px;
}
.drah-person-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.drah-person-info-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px 12px;
    align-items: center;
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--drah-dark);
    box-shadow: 0 14px 30px rgba(17, 40, 77, 0.055);
}
a.drah-person-info-item:hover {
    border-color: rgba(13,96,162,0.28);
    color: var(--drah-dark);
    transform: translateY(-2px);
}
.drah-person-info-item-wide {
    grid-column: 1 / -1;
}
.drah-person-info-item i {
    grid-row: span 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 1.24rem;
}
.drah-person-info-item span {
    color: #6b7480;
    font-size: 0.82rem;
    font-weight: 800;
}
.drah-person-info-item strong {
    min-width: 0;
    color: var(--drah-dark);
    font-weight: 900;
    line-height: 1.65;
    overflow-wrap: anywhere;
}
.drah-person-bio-panel {
    padding: 22px;
}
.drah-person-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.drah-person-panel-head i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
}
.drah-person-panel-head h2 {
    margin: 0;
    color: var(--drah-dark);
    font-size: 1.35rem;
    font-weight: 900;
}
.drah-person-rich-text {
    color: #4f5968;
    font-weight: 600;
    line-height: 2;
}
.drah-person-rich-text + .drah-person-rich-text {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(13,96,162,0.1);
}
.drah-person-rich-text p:last-child {
    margin-bottom: 0;
}
.drah-person-events-section {
    background: #fff;
}
.drah-person-events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* ── Dr Photo ─────────────────────────────────── */
.drah-dr-photo-wrap { border-radius: var(--drah-radius); overflow: hidden; box-shadow: var(--drah-shadow-hover); position: sticky; top: 100px; }
.drah-dr-photo { width: 100%; display: block; }

/* Dr Ahmed profile page */
.drah-profile-hero {
    position: relative;
    padding: 72px 0;
    background: linear-gradient(135deg, var(--drah-dark), var(--drah-blue-dark));
    color: #fff;
    overflow: hidden;
}
.drah-profile-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(38,142,21,0.16), transparent 48%),
        radial-gradient(circle at 18% 20%, rgba(212,160,23,0.16), transparent 34%);
    pointer-events: none;
}
.drah-profile-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
    gap: 48px;
    align-items: center;
}
.drah-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dff3ff;
    font-weight: 800;
    margin-bottom: 18px;
}
.drah-profile-hero h1 {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 900;
    margin: 0 0 12px;
}
.drah-profile-slogan {
    color: #c9f4c2;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.drah-profile-hero-copy > p:not(.drah-profile-slogan) {
    max-width: 760px;
    color: rgba(255,255,255,0.86);
    line-height: 2;
    font-size: 1.05rem;
}
.drah-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.drah-profile-photo-panel {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 24px 54px rgba(0,0,0,0.26);
}
.drah-profile-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.drah-profile-photo-caption {
    display: grid;
    gap: 4px;
    padding: 16px 4px 4px;
}
.drah-profile-photo-caption strong { font-size: 1.1rem; }
.drah-profile-photo-caption span { color: rgba(255,255,255,0.75); line-height: 1.7; }
.drah-profile-feature-card,
.drah-profile-text-panel,
.drah-profile-role-card,
.drah-profile-skill-card,
.drah-profile-qualification-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 14px 32px rgba(17,40,77,0.06);
}
.drah-profile-feature-card i,
.drah-profile-role-card > i,
.drah-profile-skill-card > i,
.drah-profile-qualification-card > i,
.drah-profile-panel-title i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.drah-profile-feature-card h3,
.drah-profile-role-card h3,
.drah-profile-skill-card h3,
.drah-profile-qualification-card h3 {
    color: var(--drah-dark);
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.6;
}
.drah-profile-feature-card p,
.drah-profile-text-panel p,
.drah-profile-role-card p,
.drah-profile-skill-card p,
.drah-profile-qualification-card p,
.drah-profile-muted {
    color: #555;
    line-height: 2;
    margin-bottom: 0;
}
.drah-profile-panel-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.drah-profile-panel-title i { margin-bottom: 0; flex-shrink: 0; }
.drah-profile-panel-title h2 {
    margin: 0;
    color: var(--drah-dark);
    font-size: 1.45rem;
    font-weight: 900;
}
.drah-profile-video-section { background: #fff; }
.drah-profile-video-wrap {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--drah-shadow-hover);
    background: var(--drah-dark);
}
.drah-profile-video-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.drah-profile-video-modal {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--drah-shadow-hover);
}
#drIntroVideoModal {
    z-index: 1080;
}
.drah-profile-video-modal .modal-header {
    background: var(--drah-dark);
    color: #fff;
    border: 0;
}
.drah-profile-video-modal .drah-profile-video-header {
    position: relative;
    min-height: 58px;
    padding-inline: 3.25rem 3.25rem;
}
.drah-profile-video-modal .modal-title {
    width: 100%;
    font-weight: 800;
    text-align: center;
}
.drah-profile-video-modal .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 0.9;
    margin: 0;
}
.drah-profile-video-modal .drah-profile-video-close {
    position: absolute;
    inset-inline-end: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.drah-profile-video-modal .modal-body {
    padding: 0;
    background: var(--drah-dark);
}
.drah-profile-video-modal .drah-profile-video-wrap {
    border-radius: 0;
    box-shadow: none;
}
.drah-profile-timeline {
    display: grid;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}
.drah-profile-timeline-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 14px 28px rgba(17,40,77,0.05);
}
.drah-profile-timeline-item span,
.drah-profile-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 10px;
    background: var(--drah-green-light);
    color: var(--drah-green-dark);
    font-weight: 900;
}
.drah-profile-timeline-item h3 {
    color: var(--drah-dark);
    font-size: 1.18rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.drah-profile-timeline-item p { color: #555; line-height: 1.9; margin: 0; }
.drah-profile-qualifications,
.drah-profile-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.drah-profile-qualification-card { position: relative; padding-top: 70px; }
.drah-profile-qualification-card .drah-profile-year {
    position: absolute;
    top: 20px;
    left: 20px;
    min-width: 74px;
}
.drah-profile-role-card span {
    display: inline-block;
    color: var(--drah-blue);
    font-weight: 800;
    margin-bottom: 12px;
}
.drah-profile-icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}
.drah-profile-icon-list li {
    display: flex;
    gap: 12px;
    color: #555;
    line-height: 1.9;
}
.drah-profile-icon-list i {
    color: var(--drah-green);
    font-size: 1.1rem;
    margin-top: 6px;
    flex-shrink: 0;
}
.drah-profile-closing {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    max-width: 980px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--drah-blue-light), var(--drah-green-light));
    border: 1px solid rgba(13,96,162,0.12);
}
.drah-profile-closing i {
    color: var(--drah-gold);
    font-size: 2rem;
    flex-shrink: 0;
}
.drah-profile-closing p {
    margin: 0;
    color: var(--drah-dark);
    font-weight: 700;
    line-height: 2;
}
.drah-profile-slider {
    position: relative;
    padding: 0 54px;
}
.drah-profile-slider-viewport {
    overflow: hidden;
    padding: 6px 2px 18px;
}
.drah-profile-slider-track {
    display: flex;
    gap: 22px;
    transition: transform 0.65s ease;
    will-change: transform;
}
.drah-profile-slider-slide {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: 0;
}
.drah-profile-slider-slide .drah-card {
    height: 100%;
}
.drah-profile-slider-slide .drah-card-img-wrap {
    aspect-ratio: 16 / 10;
    height: auto;
}
.drah-profile-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--drah-blue);
    box-shadow: 0 12px 28px rgba(17,40,77,0.16);
    transform: translateY(-50%);
    transition: var(--drah-transition);
}
.drah-profile-slider-arrow:hover {
    background: var(--drah-blue);
    color: #fff;
    transform: translateY(-50%) scale(1.06);
}
.drah-profile-slider-next {
    right: 0;
}
.drah-profile-slider-prev {
    left: 0;
}

/* ── Form card ────────────────────────────────── */
.drah-form-card { background: #fff; border-radius: var(--drah-radius); padding: 40px; box-shadow: var(--drah-shadow); }

/* ── Sidebar card ─────────────────────────────── */
.drah-sidebar-card { background: #fff; border-radius: var(--drah-radius); padding: 24px; box-shadow: var(--drah-shadow); border-top: 4px solid var(--drah-blue); }

/* ── Golden card ──────────────────────────────── */
.drah-golden-card { background: linear-gradient(135deg, #fef9e7, #fdf2d5); border-radius: var(--drah-radius); padding: 30px; border: 2px solid var(--drah-gold); box-shadow: var(--drah-shadow); }

/* ── Member welcome ───────────────────────────── */
.drah-member-welcome { background: var(--drah-green-light); border-radius: var(--drah-radius); padding: 20px; border-right: 4px solid var(--drah-green); }

/* ── Survey & suggestion ──────────────────────── */
.drah-survey-box, .drah-suggestion-box { background: #fff; border-radius: var(--drah-radius); padding: 24px; box-shadow: var(--drah-shadow); margin-bottom: 24px; }
.drah-surveys-list {
    display: grid;
    gap: 24px;
}
.drah-surveys-list .drah-survey-box {
    margin-bottom: 0;
    border: 1px solid rgba(13,96,162,0.12);
}
.drah-surveys-list .drah-survey-box:nth-child(4n+1) {
    background: linear-gradient(135deg, #ffffff, #eef8ff);
}
.drah-surveys-list .drah-survey-box:nth-child(4n+2) {
    background: linear-gradient(135deg, #ffffff, #f1fbef);
}
.drah-surveys-list .drah-survey-box:nth-child(4n+3) {
    background: linear-gradient(135deg, #ffffff, #fff7df);
}
.drah-surveys-list .drah-survey-box:nth-child(4n+4) {
    background: linear-gradient(135deg, #ffffff, #f4f0ff);
}
.drah-survey-title {
    color: var(--drah-dark);
    font-weight: 900;
    margin-bottom: 18px;
}
.drah-survey-options {
    display: grid;
    gap: 12px;
}
.drah-survey-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f8fbff);
    cursor: pointer;
    font-weight: 800;
    color: var(--drah-dark);
}
.drah-survey-option:hover {
    border-color: rgba(13,96,162,0.32);
    background: var(--drah-blue-light);
}
.drah-survey-result {
    padding: 14px;
    border: 1px solid #e7edf3;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 12px;
}
.drah-survey-result.is-selected {
    border-color: rgba(38,142,21,0.35);
    background: var(--drah-green-light);
}
.drah-survey-result-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--drah-dark);
}
.drah-survey-result-head span {
    color: var(--drah-blue);
    font-weight: 900;
    white-space: nowrap;
}
.drah-survey-result .progress {
    height: 12px;
    border-radius: 999px;
    background: #eaf0f6;
}
.drah-survey-result .progress-bar {
    background: linear-gradient(90deg, var(--drah-green), var(--drah-blue));
    border-radius: 999px;
}

@media (min-width: 992px) {
    .drah-survey-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── Testimonials ─────────────────────────────── */
.drah-testimonials-section { background: linear-gradient(135deg, var(--drah-dark), var(--drah-blue-dark)); }
.drah-testimonial-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: var(--drah-radius); padding: 24px; color: #fff; height: 100%; }
.drah-quote-icon { font-size: 2rem; color: var(--drah-green); }
.drah-testimonial-text { font-size: 0.95rem; line-height: 1.8; opacity: 0.9; }

/* ── Contact ──────────────────────────────────── */
.drah-contact-info { display: flex; flex-direction: column; gap: 20px; }
.drah-contact-item { display: flex; gap: 16px; align-items: flex-start; }
.drah-contact-item i { font-size: 1.5rem; color: var(--drah-blue); flex-shrink: 0; margin-top: 4px; }
.drah-contact-item strong { display: block; color: var(--drah-dark); margin-bottom: 4px; }
.drah-contact-item p { margin: 0; color: #666; }
.drah-social-links { display: flex; gap: 10px; }
.drah-social-links a, .drah-social-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--drah-blue); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--drah-transition); }
.drah-social-links a:hover, .drah-social-btn:hover { background: var(--drah-green); transform: translateY(-3px); color: #fff; }
.drah-map-wrap { border-radius: var(--drah-radius); overflow: hidden; box-shadow: var(--drah-shadow); }
.drah-map-wrap iframe { width: 100%; height: 300px; border: none; }

.drah-contact-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(38,142,21,0.10), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(13,96,162,0.12), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f4faf4 100%);
    max-width: 100%;
    overflow-x: clip;
}
.drah-contact-page .container,
.drah-contact-page .row,
.drah-contact-page [class*="col-"] {
    min-width: 0;
}
.drah-contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: stretch;
    padding: 34px;
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(232,244,253,0.86));
    box-shadow: 0 18px 44px rgba(17, 40, 77, 0.08);
}
.drah-contact-hero h2 {
    color: var(--drah-dark);
    font-weight: 900;
    margin-bottom: 18px;
}
.drah-contact-hero p {
    color: #4d5c6f;
    line-height: 2;
    margin-bottom: 10px;
}
.drah-contact-hero-mark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--drah-dark), var(--drah-blue-dark));
    color: #fff;
    text-align: center;
}
.drah-contact-hero-mark i {
    font-size: 3rem;
    color: var(--drah-gold);
}
.drah-contact-hero-mark strong {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.7;
}
.drah-contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 7px;
    padding: 22px;
    border: 1px solid rgba(13,96,162,0.13);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 40, 77, 0.06);
    color: var(--drah-dark);
}
.drah-contact-card:hover {
    color: var(--drah-blue);
    border-color: rgba(13,96,162,0.28);
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(13,96,162,0.12);
}
.drah-contact-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--drah-blue-light);
    color: var(--drah-blue);
    font-size: 1.45rem;
    margin-bottom: 8px;
}
.drah-contact-icon-green {
    background: var(--drah-green-light);
    color: var(--drah-green-dark);
}
.drah-contact-card small {
    color: var(--drah-blue);
    font-weight: 900;
}
.drah-contact-card strong {
    color: var(--drah-dark);
    font-size: 1.04rem;
    overflow-wrap: anywhere;
}
.drah-contact-card p {
    margin: 0;
    color: #657184;
    line-height: 1.8;
    overflow-wrap: anywhere;
}
.drah-contact-social-panel,
.drah-contact-form-shell,
.drah-contact-map-shell,
.drah-contact-closing {
    max-width: 100%;
    min-width: 0;
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(17, 40, 77, 0.07);
}
.drah-contact-social-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    padding: 24px;
    background: linear-gradient(135deg, #fff, #f3fbf1);
}
.drah-contact-social-panel h3,
.drah-contact-section-title h3,
.drah-contact-closing h3 {
    color: var(--drah-dark);
    font-weight: 900;
}
.drah-contact-social-panel p,
.drah-contact-section-title p,
.drah-contact-closing p {
    margin: 0;
    color: #657184;
    line-height: 1.9;
}
.drah-contact-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    max-width: 100%;
    min-width: 0;
}
.drah-contact-social-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 128px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--drah-blue);
    color: #fff;
    font-weight: 900;
}
.drah-contact-social-grid a:hover {
    background: var(--drah-green);
    color: #fff;
    transform: translateY(-2px);
}
.drah-contact-form-shell,
.drah-contact-map-shell {
    padding: 28px;
}
.drah-contact-section-title {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.drah-contact-section-title > i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--drah-blue), var(--drah-green));
    color: #fff;
    font-size: 1.45rem;
    flex-shrink: 0;
}
.drah-contact-form-shell .form-control {
    border-radius: 12px;
    border-color: #dce6ef;
    background: #fbfdff;
}
.drah-contact-form-shell .btn-primary {
    min-width: 190px;
}
.drah-contact-map-wrap {
    overflow: hidden;
    max-width: 100%;
    border-radius: 18px;
    background: var(--drah-blue-light);
    box-shadow: inset 0 0 0 1px rgba(13,96,162,0.10);
}
.drah-contact-map-wrap iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 480px;
    border: 0;
}
.drah-contact-closing {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, var(--drah-dark), var(--drah-blue-dark));
    color: #fff;
}
.drah-contact-closing i {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.12);
    color: var(--drah-gold);
    font-size: 2rem;
    flex-shrink: 0;
}
.drah-contact-closing h3 {
    color: #fff;
}
.drah-contact-closing p {
    color: rgba(255,255,255,0.84);
}

/* ── Filter bar ───────────────────────────────── */
.drah-filter-bar { background: var(--drah-light); border-radius: var(--drah-radius); padding: 24px; box-shadow: var(--drah-shadow); }

.drah-event-registration-tabs { background: var(--drah-light); border-radius: 8px; padding: 6px; gap: 6px; }
.drah-event-registration-tabs .nav-link { border-radius: 8px; color: var(--drah-dark); font-weight: 800; padding: 10px 12px; }
.drah-event-registration-tabs .nav-link.active { background: var(--drah-blue); color: #fff; }

.drah-taxonomy-index { display: grid; gap: 24px; }
.drah-taxonomy-row { background: #fff; border: 1px solid #e7edf3; border-radius: 8px; padding: 24px; box-shadow: var(--drah-shadow); }
.drah-taxonomy-row h3 { font-size: 1.2rem; font-weight: 800; color: var(--drah-dark); margin-bottom: 16px; }
.drah-taxonomy-row ul { display: flex; flex-wrap: wrap; gap: 10px; list-style: disc; padding-right: 22px; margin: 0; }
.drah-taxonomy-row li { margin-left: 18px; color: var(--drah-blue); }
.drah-taxonomy-row a { display: inline-block; padding: 8px 12px; background: var(--drah-light); border-radius: 8px; color: var(--drah-dark); font-weight: 600; }
.drah-taxonomy-row a:hover { background: var(--drah-blue); color: #fff; }

.drah-media-event-card { display: flex; flex-direction: column; height: 100%; background: #fff; border: 1px solid #e7edf3; border-radius: 8px; overflow: hidden; box-shadow: var(--drah-shadow); color: var(--drah-dark); }
.drah-media-event-card:hover { transform: translateY(-4px); box-shadow: var(--drah-shadow-hover); color: var(--drah-blue); }
.drah-media-event-image { display: block; position: relative; height: 210px; overflow: hidden; background: var(--drah-light); }
.drah-media-event-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--drah-transition); }
.drah-media-event-card:hover img { transform: scale(1.04); }
.drah-media-event-date { position: absolute; right: 12px; bottom: 12px; display: inline-flex; gap: 6px; align-items: center; background: rgba(26,26,46,0.86); color: #fff; border-radius: 8px; padding: 7px 10px; font-size: 0.82rem; font-weight: 700; }
.drah-media-event-body { display: flex; flex-direction: column; gap: 14px; padding: 18px; flex: 1; }
.drah-media-event-title { display: block; min-height: 58px; font-weight: 800; line-height: 1.6; color: var(--drah-dark); }
.drah-media-event-action { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; color: var(--drah-blue); font-weight: 800; font-size: 0.9rem; }

.drah-account-login-card { background: #fff; border-radius: 8px; padding: 34px; box-shadow: var(--drah-shadow); border-top: 4px solid var(--drah-blue); }
.drah-account-login-card i { color: var(--drah-blue); font-size: 3rem; }
.drah-account-hero { display: flex; justify-content: space-between; align-items: stretch; gap: 24px; background: linear-gradient(135deg, var(--drah-dark), var(--drah-blue-dark)); border-radius: 8px; padding: 28px; color: #fff; box-shadow: var(--drah-shadow-hover); }
.drah-account-hero-main { display: flex; align-items: center; gap: 24px; min-width: 0; }
.drah-account-photo-wrap { width: 128px; height: 128px; flex: 0 0 128px; border-radius: 50%; padding: 4px; background: linear-gradient(135deg, var(--drah-green), #fff); }
.drah-account-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid rgba(255,255,255,0.96); }
.drah-account-details h2 { color: #fff; font-size: 2rem; font-weight: 900; margin: 4px 0 16px; }
.drah-account-label { display: inline-flex; background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 5px 12px; font-weight: 800; font-size: 0.85rem; }
.drah-account-meta-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.drah-account-meta-grid div { min-width: 140px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; padding: 10px 12px; }
.drah-account-meta-grid small { display: block; color: rgba(255,255,255,0.68); margin-bottom: 2px; }
.drah-account-meta-grid strong { color: #fff; font-weight: 800; }
.drah-account-logout { align-self: flex-start; white-space: nowrap; border-color: rgba(255,255,255,0.5); }
.drah-account-section-heading { display: flex; justify-content: space-between; align-items: end; margin: 0 0 18px; }
.drah-account-section-heading span { display: block; color: var(--drah-blue); font-weight: 800; font-size: 0.85rem; margin-bottom: 4px; }
.drah-account-section-heading h3 { margin: 0; color: var(--drah-dark); font-weight: 900; }
.drah-horizontal-scroll { display: flex; gap: 18px; overflow-x: auto; padding: 4px 2px 18px; scroll-snap-type: x mandatory; }
.drah-horizontal-scroll::-webkit-scrollbar { height: 9px; }
.drah-horizontal-scroll::-webkit-scrollbar-thumb { background: #c8d6e2; border-radius: 999px; }
.drah-scroll-item { flex: 0 0 320px; scroll-snap-align: start; }

/* Member services */
.drah-member-services-archive {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f4faf4 100%);
}
.drah-services-intro {
    background: #fff;
    border: 1px solid rgba(13,96,162,0.12);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 32px rgba(17, 40, 77, 0.06);
}
.drah-member-service-card {
    position: relative;
    height: 100%;
    padding: 28px;
    border: 2px solid rgba(13,96,162,0.18);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    box-shadow: 0 18px 40px rgba(17, 40, 77, 0.08);
    overflow: hidden;
}
.drah-member-service-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.drah-member-service-card > *:not(.drah-member-service-card-link) {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.drah-member-service-card-primary {
    padding: 34px;
    border-color: var(--drah-gold);
    background: linear-gradient(135deg, #fffdf3 0%, #ffffff 48%, #eef8ff 100%);
}
.drah-member-service-ribbon,
.drah-member-service-ribbon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--drah-gold), #f5ca4d);
    color: #2b2615;
    font-weight: 900;
}
.drah-member-service-ribbon {
    position: static;
    padding: 8px 16px;
    box-shadow: 0 8px 18px rgba(212,160,23,0.22);
    white-space: nowrap;
}
.drah-member-service-ribbon-inline {
    margin-bottom: 14px;
    padding: 7px 14px;
}
.drah-member-service-title {
    margin: 0;
    padding-left: 0;
    color: var(--drah-dark);
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.55;
}
.drah-member-service-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.drah-member-service-card-primary .drah-member-service-title {
    font-size: 2rem;
}
.drah-member-service-title a {
    color: inherit;
}
.drah-member-service-title a:hover {
    color: var(--drah-blue);
}
.drah-member-service-image-link {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--drah-blue-light), #fff);
    overflow: hidden;
}
.drah-member-service-image {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    transition: var(--drah-transition);
}
.drah-member-service-card:not(.drah-member-service-card-primary) .drah-member-service-image {
    max-height: 260px;
}
.drah-member-service-image-link:hover .drah-member-service-image {
    transform: scale(1.03);
}
.drah-service-providers-box {
    padding: 22px;
    border: 1px solid rgba(38,142,21,0.18);
    border-radius: 18px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}
.drah-service-providers-box h4 {
    margin-bottom: 18px;
    color: var(--drah-dark);
    font-weight: 900;
}
.drah-service-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.drah-service-provider-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    height: 100%;
    padding: 16px;
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff, #f8fbff);
}
.drah-service-provider-card-large {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
}
.drah-service-provider-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eef2f6;
    padding: 8px;
    flex-shrink: 0;
}
.drah-service-provider-card-large .drah-service-provider-logo {
    width: 110px;
    height: 110px;
}
.drah-service-provider-content {
    min-width: 0;
}
.drah-service-provider-content strong {
    display: block;
    color: var(--drah-dark);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.5;
}
.drah-service-provider-discount {
    display: inline-flex;
    margin: 8px 0;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--drah-green-light);
    color: var(--drah-green-dark);
    font-size: 0.84rem;
    font-weight: 900;
}
.drah-service-provider-content p {
    margin: 0;
    color: #5f6b7a;
    line-height: 1.8;
    font-size: 0.93rem;
}
.drah-member-service-single {
    background: linear-gradient(180deg, #f7fbff, #fff);
}
.drah-member-service-single-card {
    padding: 30px;
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 40, 77, 0.08);
}
.drah-member-service-single-image {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
    border-radius: 18px;
    background: var(--drah-blue-light);
}
.drah-member-service-single-title {
    color: var(--drah-dark);
    font-weight: 900;
    margin: 0;
}
.drah-member-service-single-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

/* ── Footer ───────────────────────────────────── */
.drah-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: rgba(255,255,255,0.86);
    overflow: hidden;
}
.drah-footer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,26,46,0.94), rgba(9,74,125,0.88)),
        rgba(0,0,0,0.2);
}
.drah-footer-main { position: relative; padding: 58px 0 38px; }
.drah-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}
.drah-footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}
.drah-footer-brand h3 {
    margin: 0 0 6px;
    color: #fff;
    font-weight: 900;
    font-size: 1.35rem;
}
.drah-footer-brand p {
    margin: 0;
    max-width: 620px;
    color: rgba(255,255,255,0.76);
    line-height: 1.9;
}
.drah-footer-logo { height: 58px; width: auto; flex-shrink: 0; }
.drah-footer-widget {
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
}
.drah-footer-title { color: #fff; font-weight: 900; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid rgba(38,142,21,0.9); display: inline-block; }
.drah-footer-links { list-style: none; padding: 0; margin: 0; }
.drah-footer-links li { margin-bottom: 10px; }
.drah-footer-links a { color: rgba(255,255,255,0.78); transition: var(--drah-transition); display: inline-flex; align-items: center; gap: 8px; line-height: 1.7; }
.drah-footer-links a i { color: #9edb94; font-size: 1rem; }
.drah-footer-links a:hover { color: #fff; padding-right: 6px; }
.drah-footer-contact { list-style: none; padding: 0; margin: 0; }
.drah-footer-contact li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.8; }
.drah-footer-contact i { color: #9edb94; margin-top: 5px; flex-shrink: 0; }
.drah-footer-contact a { color: rgba(255,255,255,0.78); overflow-wrap: anywhere; }
.drah-footer-contact a:hover { color: #fff; }
.drah-footer-bottom { position: relative; background: rgba(0,0,0,0.34); padding: 16px 0; color: rgba(255,255,255,0.72); font-size: 0.9rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.12); }
.drah-footer-bottom span {
    display: inline-block;
    margin-right: 10px;
}
.drah-footer-bottom a {
    color: #fff;
    font-weight: 800;
}
.drah-footer-bottom a:hover {
    color: #9edb94;
}

/* ── Back to top ──────────────────────────────── */
.drah-back-to-top { position: fixed; bottom: 30px; left: 30px; width: 48px; height: 48px; border-radius: 50%; background: var(--drah-blue); color: #fff; border: none; font-size: 1.2rem; box-shadow: var(--drah-shadow); opacity: 0; visibility: hidden; transition: var(--drah-transition); z-index: 1040; cursor: pointer; }
.drah-back-to-top.visible { opacity: 1; visibility: visible; }
.drah-back-to-top:hover { background: var(--drah-green); transform: translateY(-3px); }

/* ── Content body ─────────────────────────────── */
.drah-content-body { line-height: 2; font-size: 1.05rem; }
.drah-content-body h2, .drah-content-body h3 { color: var(--drah-dark); margin-top: 24px; }
.drah-content-body img { border-radius: var(--drah-radius); margin: 16px 0; }

/* ── Empty state ──────────────────────────────── */
.drah-empty-state i { opacity: 0.3; }

/* ── Forms ────────────────────────────────────── */
.form-control, .form-select { border-radius: 8px; padding: 10px 16px; border-color: #dee2e6; }
.form-control:focus, .form-select:focus { border-color: var(--drah-blue); box-shadow: 0 0 0 3px rgba(13,96,162,0.15); }
.form-label { font-weight: 600; color: var(--drah-dark); }

.pagination {
    gap: 8px;
}
.pagination .page-link {
    border: 1px solid rgba(13,96,162,0.14);
    border-radius: 8px;
    color: var(--drah-blue);
    font-weight: 800;
    min-width: 42px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(17, 40, 77, 0.04);
}
.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--drah-blue);
    border-color: var(--drah-blue);
    color: #fff;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    min-width: 96px;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 991px) {
    .drah-hero {
        min-height: 68vh;
        padding-top: 6vh;
    }
    .drah-hero > .container {
        transform: translateY(-14px);
    }
    .drah-hero .min-vh-75 {
        min-height: 54vh;
    }
    .drah-hero-title { font-size: 2rem; }
    .drah-hero-desc { font-size: 1rem; }
    .drah-section { padding: 50px 0; }
    .drah-page-header { padding: 60px 0 40px; }
    .drah-page-title { font-size: 1.8rem; }
    .drah-page-header,
    .drah-footer {
        background-attachment: scroll;
    }
    .drah-footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .drah-footer-brand {
        align-items: flex-start;
    }
    .drah-dr-photo-wrap { position: static; margin-bottom: 30px; }
    .drah-profile-hero { padding: 50px 0; }
    .drah-profile-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .drah-home-leaders-grid,
    .drah-home-speech-grid,
    .drah-home-upcoming-card {
        grid-template-columns: 1fr;
    }
    .drah-home-leaders-grid {
        max-width: 520px;
    }
    .drah-home-leader-card {
        min-height: 650px;
    }
    .drah-home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .drah-person-hero-grid,
    .drah-person-layout {
        grid-template-columns: 1fr;
    }
    .drah-person-sidebar {
        position: static;
    }
    .drah-person-events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .drah-profile-hero h1 { font-size: 2.1rem; }
    .drah-profile-photo-panel { max-width: 430px; margin: 0 auto; }
    .drah-profile-qualifications,
    .drah-profile-skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .drah-profile-slider-slide {
        flex-basis: calc((100% - 44px) / 3);
    }
    .drah-media-desktop-grid { display: none; }
    .drah-media-mobile-tabs { display: block; }
    .drah-media-tabs { flex-direction: row; overflow-x: auto; }
    .drah-media-tabs .nav-link { min-width: 250px; }
    .drah-media-panels { padding: 24px; }
    .drah-contact-hero { grid-template-columns: 1fr; }
    .drah-contact-social-panel { flex-direction: column; align-items: flex-start; }
    .drah-contact-social-grid { justify-content: flex-start; }
    .drah-alex-hero {
        background-attachment: scroll;
        padding: 48px 0 56px;
    }
    .drah-alex-hero-grid {
        grid-template-columns: 1fr;
    }
    .drah-alex-doctor-panel {
        max-width: 560px;
    }
    .drah-alex-slider-slide {
        flex-basis: calc((100% - 36px) / 3);
    }
    .drah-alex-listing-grid,
    .drah-alex-structure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .drah-hero {
        min-height: 58vh;
        padding-top: 5vh;
    }
    .drah-hero > .container {
        transform: translateY(-8px);
    }
    .drah-hero .min-vh-75 {
        min-height: 50vh;
    }
    .drah-hero-title { font-size: 1.6rem; }
    .drah-hero-btns .btn { display: block; width: 100%; margin-bottom: 10px; }
    .drah-profile-hero h1 { font-size: 1.75rem; }
    .drah-profile-slogan { font-size: 1.05rem; }
    .drah-profile-actions .btn { width: 100%; }
    .drah-home-leaders-section {
        margin-top: -68px;
        padding-bottom: 18px;
    }
    .drah-home-leader-card {
        min-height: min(650px, 125vw);
    }
    .drah-home-leader-copy h2 {
        font-size: 1.22rem;
    }
    .drah-home-leader-copy p {
        margin-bottom: 12px;
        font-size: 0.88rem;
    }
    .drah-home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .drah-home-news-section .drah-home-section-head {
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }
    .drah-home-news-section .drah-home-section-head h2 {
        font-size: clamp(1.25rem, 5vw, 1.6rem);
    }
    .drah-home-news-more-link {
        flex-shrink: 0;
        min-width: auto;
        padding: 8px 12px;
        font-size: 0.86rem;
    }
    .drah-home-news-grid {
        grid-template-columns: 1fr;
    }
    .drah-home-speech-image img,
    .drah-home-upcoming-visual img {
        height: 260px;
    }
    .drah-home-upcoming-card {
        padding: 22px;
    }
    .drah-person-hero {
        padding: 48px 0 54px;
    }
    .drah-person-hero-copy {
        text-align: center;
    }
    .drah-person-kicker {
        justify-self: center;
    }
    .drah-person-summary {
        margin: 0 auto;
    }
    .drah-person-actions {
        justify-content: center;
    }
    .drah-person-actions .btn {
        width: 100%;
    }
    .drah-person-photo-frame {
        width: 174px;
        height: 174px;
    }
    .drah-person-info-grid,
    .drah-person-events-grid {
        grid-template-columns: 1fr;
    }
    .drah-person-bio-panel,
    .drah-person-panel,
    .drah-person-info-item {
        padding: 16px;
    }
    .drah-profile-feature-card,
    .drah-profile-text-panel,
    .drah-profile-role-card,
    .drah-profile-skill-card,
    .drah-profile-qualification-card {
        padding: 20px;
    }
    .drah-profile-timeline-item {
        grid-template-columns: 1fr;
    }
    .drah-profile-timeline-item span {
        justify-self: start;
        min-width: 96px;
    }
    .drah-profile-qualifications,
    .drah-profile-skills-grid {
        grid-template-columns: 1fr;
    }
    .drah-profile-slider-track {
        gap: 16px;
    }
    .drah-profile-slider-slide {
        flex-basis: calc((100% - 16px) / 2);
    }
    .drah-profile-slider {
        padding: 0 46px;
    }
    .drah-profile-panel-title {
        align-items: flex-start;
    }
    .drah-profile-closing {
        flex-direction: column;
        padding: 22px;
    }
    .drah-card-img-wrap { height: 180px; }
    .drah-card-person .drah-card-img-wrap { height: 200px; }
    .drah-form-card { padding: 24px 16px; }
    .drah-org-tabs { flex-wrap: wrap; gap: 8px; }
    .drah-org-tabs .nav-link { font-size: 0.85rem; padding: 8px 16px; }
    .drah-structure-card { min-height: 150px; padding: 24px; }
    .drah-structure-card i { font-size: 2rem; }
    .drah-account-hero { flex-direction: column; padding: 22px; }
    .drah-account-hero-main { flex-direction: column; align-items: flex-start; }
    .drah-account-photo-wrap { width: 104px; height: 104px; flex-basis: 104px; }
    .drah-account-details h2 { font-size: 1.5rem; }
    .drah-account-logout { width: 100%; text-align: center; justify-content: center; }
    .drah-scroll-item { flex-basis: 280px; }
    .drah-media-tabs { gap: 8px; padding: 8px; border-radius: 18px; flex-wrap: nowrap; }
    .drah-media-tabs .nav-link { min-width: 0; flex: 1 1 0; gap: 8px; padding: 10px 8px; border-radius: 14px; justify-content: center; }
    .drah-media-tab-icon { width: 34px; height: 34px; border-radius: 10px; font-size: 1rem; }
    .drah-media-tab-copy { gap: 2px; }
    .drah-media-tab-copy strong { font-size: 0.78rem; line-height: 1.35; }
    .drah-media-tab-copy small { font-size: 0.68rem; }
    .drah-media-panels { padding: 20px 16px; border-radius: 22px; }
    .drah-media-panel-head h3 { font-size: 1.4rem; }
    .drah-single-media-section .row { --bs-gutter-x: 0; }
    .drah-single-media-content,
    .drah-single-media-sidebar { padding: 16px; max-width: 100%; }
    .drah-single-media-sidebar { position: static; }
    .drah-single-media-content *,
    .drah-single-media-sidebar * { max-width: 100%; }
    .drah-single-media-title-inline { flex-basis: 100%; min-width: 0; }
    .drah-content-body,
    .drah-single-media-title-inline,
    .drah-single-media-meta span,
    .drah-card-title,
    .drah-card-text { overflow-wrap: anywhere; }
    .drah-post-nav { grid-template-columns: 1fr; }
    .drah-member-service-card,
    .drah-member-service-card-primary,
    .drah-member-service-single-card { padding: 18px; }
    .drah-member-service-ribbon {
        margin-bottom: 14px;
    }
    .drah-member-service-head {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }
    .drah-member-service-single-head {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 8px;
    }
    .drah-member-service-title,
    .drah-member-service-card-primary .drah-member-service-title {
        padding-left: 0;
        font-size: 1.35rem;
    }
    .drah-service-provider-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .drah-survey-result-head {
        flex-direction: column;
        gap: 4px;
    }
    .drah-survey-result-head span {
        white-space: normal;
    }
    .drah-contact-hero,
    .drah-contact-form-shell,
    .drah-contact-map-shell,
    .drah-contact-closing {
        padding: 20px;
        border-radius: 18px;
    }
    .drah-contact-page {
        max-width: 100vw;
        overflow-x: hidden;
    }
    .drah-contact-page .row {
        margin-inline: 0;
    }
    .drah-contact-page [class*="col-"] {
        padding-inline: calc(var(--bs-gutter-x) * 0.5);
    }
    .drah-contact-hero h2 { font-size: 1.45rem; }
    .drah-contact-section-title,
    .drah-contact-closing {
        flex-direction: column;
        align-items: flex-start;
    }
    .drah-contact-social-grid,
    .drah-contact-social-grid a {
        width: 100%;
    }
    .drah-contact-map-wrap iframe { min-height: 340px; }
    .drah-footer-brand {
        flex-direction: column;
    }
    .drah-footer-widget {
        padding: 18px;
    }
    .drah-footer-main {
        padding: 44px 0 30px;
    }
    .drah-alex-hero-copy p,
    .drah-alex-content-card p,
    .drah-alex-content-card li,
    .drah-alex-section-head p,
    .drah-alex-person-position,
    .drah-alex-person-bio {
        overflow-wrap: anywhere;
    }
    .drah-alex-content-grid,
    .drah-alex-values,
    .drah-alex-listing-grid,
    .drah-alex-structure-grid {
        grid-template-columns: 1fr;
    }
    .drah-alex-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .drah-alex-section-head-center {
        align-items: center;
    }
    .drah-alex-more-link {
        width: 100%;
    }
    .drah-alex-slider {
        padding: 0 46px;
    }
    .drah-alex-slider-slide {
        flex-basis: calc((100% - 18px) / 2);
    }
    .drah-alex-person-card {
        gap: 14px;
        min-height: 188px;
        padding: 16px;
    }
    .drah-alex-person-photo {
        flex-basis: 104px;
        width: 104px;
        height: 104px;
    }
    .drah-alex-person-body {
        min-height: 156px;
        padding: 0;
    }
    .drah-alex-structure-card {
        min-height: 164px;
    }
}

@media (max-width: 480px) {
    .drah-profile-slider {
        padding: 0;
        padding-bottom: 56px;
    }
    .drah-profile-slider-slide {
        flex-basis: 100%;
    }
    .drah-profile-slider-arrow {
        top: auto;
        bottom: 0;
        transform: none;
    }
    .drah-profile-slider-arrow:hover {
        transform: scale(1.06);
    }
    .drah-profile-slider-next {
        right: calc(50% - 50px);
    }
    .drah-profile-slider-prev {
        left: calc(50% - 50px);
    }
    .drah-alex-doctor-panel {
        grid-template-columns: 96px minmax(0, 1fr);
        padding: 14px;
    }
    .drah-alex-doctor-panel img {
        width: 96px;
        height: 116px;
    }
    .drah-home-leader-card {
        min-height: 440px;
    }
    .drah-home-leader-copy {
        padding: 17px 18px 18px;
    }
    .drah-home-leader-link {
        font-size: 0.86rem;
    }
    .drah-home-speech-copy p,
    .drah-home-upcoming-copy p {
        font-size: 0.94rem;
        line-height: 1.9;
    }
    .drah-home-news-body {
        min-height: 210px;
    }
    .drah-person-hero h1 {
        font-size: 1.7rem;
    }
    .drah-person-photo-frame {
        width: 148px;
        height: 148px;
    }
    .drah-person-info-item {
        grid-template-columns: 38px minmax(0, 1fr);
        min-height: 84px;
    }
    .drah-person-info-item i {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
    .drah-person-panel-head h2 {
        font-size: 1.14rem;
    }
    .drah-alex-hero-actions .btn {
        width: 100%;
    }
    .drah-alex-content-card {
        padding: 18px;
    }
    .drah-alex-slider {
        padding: 0;
        padding-bottom: 54px;
    }
    .drah-alex-slider-slide {
        flex-basis: 100%;
    }
    .drah-alex-person-card {
        gap: 12px;
        min-height: 176px;
        padding: 14px;
    }
    .drah-alex-person-card-leader {
        padding-top: 20px;
    }
    .drah-alex-leader-mark {
        top: 7px;
        left: 8px;
        padding: 4px 7px;
        font-size: 0.66rem;
    }
    .drah-alex-person-photo {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
        border-width: 3px;
    }
    .drah-alex-person-body {
        min-height: 148px;
    }
    .drah-alex-person-role {
        font-size: 0.72rem;
    }
    .drah-alex-person-body h3 {
        font-size: 0.98rem;
    }
    .drah-alex-person-position,
    .drah-alex-person-bio {
        font-size: 0.82rem;
        line-height: 1.65;
    }
    .drah-alex-person-bio {
        min-height: 4.2em;
    }
    .drah-alex-slider-arrow {
        top: auto;
        bottom: 0;
        transform: none;
    }
    .drah-alex-slider-arrow:hover {
        transform: scale(1.05);
    }
    .drah-alex-slider-next {
        right: calc(50% - 50px);
    }
    .drah-alex-slider-prev {
        left: calc(50% - 50px);
    }
}

@media (min-width: 992px) {
    .drah-media-desktop-grid { display: block; }
    .drah-media-mobile-tabs { display: none; }
}

/* Top page intro redesign */
.site-header,
.drah-news-ticker {
    background:
        linear-gradient(135deg, rgba(26,26,46,0.86), rgba(9,74,125,0.76)),
        url('../../img/hero.webp') center / cover fixed;
}
.site-header {
    position: relative;
    z-index: 1040;
    padding: 8px 0 22px;
}
.drah-news-ticker {
    color: #fff;
    padding: 16px 0 8px;
    overflow: hidden;
}
.drah-news-ticker-inner {
    display: flex;
    align-items: center;
    gap: 22px;
}
.drah-ticker-feed {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}
.drah-ticker-date {
    color: rgba(255,255,255,0.82);
    font-weight: 800;
    white-space: nowrap;
}
.drah-ticker-label {
    background: #f00;
    color: #fff;
    padding: 9px 16px;
    border-radius: 0;
    font-weight: 900;
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.drah-ticker-wrap {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    margin-right: 0;
}
.drah-ticker-content {
    display: flex;
    animation: tickerScroll 32s linear infinite;
    white-space: nowrap;
    gap: 44px;
}
.drah-ticker-content:hover { animation-play-state: paused; }
.drah-ticker-item {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.drah-ticker-item:hover { color: #fff; }
.drah-ticker-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}
.drah-top-search {
    width: min(300px, 32vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 4px;
    background: rgba(255,255,255,0.94);
    overflow: hidden;
    padding: 0;
    cursor: pointer;
}
.drah-top-search span {
    width: 100%;
    padding: 10px 14px;
    color: var(--drah-dark);
    font-weight: 700;
    text-align: center;
}
.drah-top-search > i {
    color: var(--drah-blue);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.drah-navbar {
    background: transparent;
    padding: 0;
    position: relative;
    top: auto;
    z-index: 1040;
    box-shadow: none;
}
.drah-navbar.scrolled {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
}
.drah-navbar-shell {
    min-height: 86px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.16);
    padding: 12px 20px;
}
.drah-logo,
.drah-navbar.scrolled .drah-logo {
    height: 56px;
    width: auto;
}
.drah-navbar .navbar-brand { margin-left: 22px; }
.drah-navbar .navbar-nav {
    align-items: center;
    gap: 4px;
}
.drah-navbar .nav-link {
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    padding: 8px 13px !important;
    border-radius: 6px;
}
.drah-navbar .nav-link:hover,
.drah-navbar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.drah-navbar .dropdown-menu {
    border: 0;
    border-radius: var(--drah-radius);
    box-shadow: var(--drah-shadow-hover);
    text-align: right;
}
.drah-navbar .btn-accent { min-width: 92px; }
.drah-mobile-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.drah-mobile-search-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 1.1rem;
}
.drah-mobile-search-btn:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}
.drah-search-modal {
    z-index: 1080;
}
.drah-search-modal .modal-dialog {
    max-width: 560px;
    padding: 0 14px;
}
.drah-search-modal .modal-content {
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 14px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    padding: 22px;
}
.drah-search-modal .btn-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}
.drah-search-form label {
    display: block;
    color: var(--drah-dark);
    font-weight: 900;
    margin-bottom: 14px;
    padding-left: 36px;
}
.drah-search-field {
    display: flex;
    align-items: center;
    border: 1px solid rgba(13,96,162,0.20);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.drah-search-field input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 14px 16px;
    color: var(--drah-dark);
    font-weight: 700;
}
.drah-search-field button {
    width: 52px;
    height: 52px;
    border: 0;
    background: var(--drah-blue);
    color: #fff;
    flex-shrink: 0;
}
.modal {
    z-index: 1080;
}
.modal-backdrop.show {
    opacity: 0.42;
    backdrop-filter: blur(4px);
    z-index: 1070;
}
.drah-page-header {
    padding: 38px 0 54px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.drah-page-header-overlay {
    background: linear-gradient(135deg, rgba(26,26,46,0.86), rgba(13,96,162,0.72));
}
.drah-breadcrumb {
    background:
        linear-gradient(135deg, rgba(26,26,46,0.84), rgba(9,74,125,0.70)),
        url('../../img/hero.webp') center / cover fixed;
    padding: 13px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
    border-bottom: 1px solid rgba(255,255,255,0.18);
}
.drah-breadcrumb .breadcrumb { align-items: center; }
.drah-breadcrumb .breadcrumb-item,
.drah-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.82); }
.drah-breadcrumb .breadcrumb-item a {
    color: #fff;
    font-weight: 800;
}
.drah-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.65);
}

@media (max-width: 991px) {
    .site-header,
    .drah-news-ticker,
    .drah-page-header,
    .drah-breadcrumb {
        background-attachment: scroll;
    }
    .drah-news-ticker-inner {
        display: block;
    }
    .drah-ticker-feed {
        width: 100%;
    }
    .drah-top-search {
        display: none;
    }
    .drah-navbar {
        padding-left: 12px;
        padding-right: 12px;
    }
    .drah-navbar-shell {
        min-height: 72px;
        padding: 10px 14px;
    }
    .drah-navbar .navbar-toggler,
    .drah-mobile-search-btn {
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,0.5);
        border-radius: 8px;
        background: rgba(255,255,255,0.10);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-shadow: none;
    }
    .drah-navbar .navbar-toggler:hover,
    .drah-navbar .navbar-toggler:focus,
    .drah-mobile-search-btn:hover,
    .drah-mobile-search-btn:focus {
        border-color: rgba(255,255,255,0.62);
        background: rgba(255,255,255,0.18);
        color: #fff;
        box-shadow: none;
    }
    .drah-navbar .navbar-toggler-icon {
        width: 1.35em;
        height: 1.35em;
    }
    .drah-logo,
    .drah-navbar.scrolled .drah-logo {
        height: 46px;
    }
}

@media (max-width: 575px) {
    .drah-ticker-date {
        display: none;
    }
    .drah-page-header {
        padding: 34px 0 42px;
    }
}
