/**
 * Okul Web Sitesi - Sarı & Lacivert Tema
 * Ana renkler: #1B3A6B (lacivert), #F4B942 (sarı)
 */

:root {
    --navy: #1B3A6B;
    --navy-dark: #0f2647;
    --navy-light: #2d5a9e;
    --yellow: #F4B942;
    --yellow-light: #f7d06d;
    --yellow-dark: #d49b1a;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Üst Bilgi Çubuğu */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 2px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--yellow);
}

.top-bar a:hover {
    color: var(--yellow-light);
}

.social-icons a {
    margin-left: 12px;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--white);
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.logo_img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.site-header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.05rem, 4vw, 1.85rem);
    font-weight: 700;
    color: var(--navy);
    min-width: 0;
    flex: 0 1 auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    text-shadow: none;
}

.logo-line1 {
    color: var(--navy);
    font-size: 1em;
    letter-spacing: 0.02em;
}

.logo-line2 {
    color: var(--yellow);
    font-size: 0.88em;
    letter-spacing: 0.04em;
    font-weight: 800;
}

.header-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.header-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-800);
}

.header-contact i {
    color: var(--yellow);
}

/* Ana Navigasyon */
.main-nav {
    background: var(--navy);
}

.main-nav .nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.main-nav .nav-menu li a {
    display: block;
    padding: 14px 18px;
    font-size: 0.9rem;
    white-space: nowrap;
    color: var(--white);
    font-weight: 500;
    transition: background 0.3s;
    position: relative;
}

.main-nav .nav-menu li a:hover,
.main-nav .nav-menu li a.active {
    background: var(--yellow);
    color: var(--navy);
}

.main-nav .nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    flex-shrink: 0;
    border: 2px solid var(--navy);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav-toggle:hover {
    background: var(--navy);
    color: var(--yellow);
    border-color: var(--navy);
}

.nav-toggle i {
    font-size: 1.25rem;
}

.nav-drawer-head {
    display: none;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    padding: 0;
    margin: 0;
}

.nav-overlay:not([hidden]) {
    display: block;
}

@media (max-width: 992px) {
    body.site-nav-open {
        overflow: hidden;
    }

    .site-header-inner {
        flex-wrap: wrap;
    }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-contact {
        flex: 1 1 100%;
        justify-content: space-between;
        gap: 8px 12px;
        width: 100%;
        margin-top: 2px;
        padding-top: 10px;
        border-top: 1px solid var(--gray-200);
    }

    .header-contact span {
        flex: 1;
        justify-content: center;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--navy);
        text-align: center;
        min-width: 0;
    }

    .header-contact span i {
        flex-shrink: 0;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(100%, 320px);
        max-width: 100%;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.28s ease;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav .container {
        max-width: none;
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .main-nav-inner {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        border-bottom: 6px solid var(--yellow);
    }

    .nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
        padding: 14px 18px;
        background: var(--navy-dark);
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-drawer-title {
        font-size: 0.95rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border: none;
        border-radius: 8px;
        background: transparent;
        color: var(--yellow);
        font-size: 1.35rem;
        cursor: pointer;
        transition: background 0.2s;
    }

    .nav-close:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .main-nav .nav-menu {
        flex-direction: column;
        flex: 1;
        flex-wrap: nowrap;
        width: 100%;
    }

    .main-nav .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav .nav-menu li a {
        padding: 14px 20px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        white-space: normal;
    }

    .main-nav .nav-menu li a.active::after {
        display: none;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-slider .slider-inner {
    position: relative;
    width: 100%;
    height: 740px;
}

.hero-slider .slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
}

.hero-slider .slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider .slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--navy);
}

.hero-slider .slider-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.25) 0%, rgba(45, 90, 158, 0.5) 100%);
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    color: var(--white);
}

.hero-slider .hero-content h1,
.hero-slider .hero-content p {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-slider .slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-slider .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.hero-slider .slider-dot.active {
    background: var(--yellow);
}

.hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(244, 185, 66, 0.9);
    color: var(--navy);
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.hero-slider .slider-arrow:hover {
    background: var(--yellow);
}

.hero-slider .slider-prev { left: 20px; }
.hero-slider .slider-next { right: 20px; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-top: 12px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--yellow);
    color: var(--navy) !important;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
}

/* Feature Blocks */
.features {
    margin-top: -30px;
    padding: 0 0 40px;
    background: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    position: relative;    
    z-index: 5;
    background: var(--navy);
    color: var(--white);
    padding: 35px 25px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(27, 58, 107, 0.3);
    background: var(--yellow);
    color: var(--navy);
}

.feature-card:hover .icon {
    background: var(--navy);
    color: var(--yellow);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--navy);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Ana sayfa blokları: Duyurular, Yazılar, Etkinlikler */
.home-section {
    padding: 3rem 0;
}

.home-section-duyurular {
    background-color: var(--white);
}

.home-section-yazilar {
    background-color: var(--gray-100);
}

.home-section-etkinlikler {
    background-color: var(--white);
}

.home-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--navy);
}

.home-section-title {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.home-section-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--yellow-dark);
    transition: color 0.2s;
}

.home-section-link:hover {
    color: var(--navy);
}

.home-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.home-section-yazilar .home-card,
.home-section-etkinlikler .home-card {
    background: var(--white);
}

.home-section-duyurular .home-card {
    border-color: var(--gray-300);
}

.home-card:hover {
    box-shadow: 0 8px 24px rgba(27, 58, 107, 0.12);
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.home-card-image {
    position: relative;
    padding-top: 52%;
    background: var(--gray-200);
    overflow: hidden;
}

.home-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.home-card:hover .home-card-image img {
    transform: scale(1.05);
}

.home-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--yellow);
    font-size: 2rem;
}

.home-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-card-date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.home-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-card:hover .home-card-title {
    color: var(--yellow-dark);
}

.home-card-excerpt {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-section-empty {
    text-align: center;
    color: var(--gray-600);
    padding: 2rem;
    margin: 0;
}

/* Etkinlik kartı: sol tarafında tarih kutusu */
.home-card-event {
    flex-direction: row;
}

.home-card-event .home-card-image.home-card-event-date {
    padding-top: 0;
    width: 80px;
    min-width: 80px;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
}

.home-card-event:hover .home-card-event-date {
    background: var(--yellow-dark);
    color: var(--navy);
}

.home-card-event-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.home-card-event-month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.home-card-event .home-card-body {
    flex: 1;
    justify-content: center;
}

@media (max-width: 992px) {
    .home-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-card-grid {
        grid-template-columns: 1fr;
    }
    .home-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-card-event {
        flex-direction: column;
    }
    .home-card-event .home-card-image.home-card-event-date {
        width: 100%;
        min-height: 70px;
        flex-direction: row;
        gap: 0.5rem;
    }
    .home-card-event-day {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--yellow);
    margin: 15px auto 0;
}

/* Footer */
.footer-top {
    background: var(--navy-dark);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--yellow);
}

.event-item {
    margin-bottom: 20px;
}

.event-date {
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-info span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-bottom {
    background: var(--navy);
    color: var(--white);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Page Content */
.page-content {
    min-height: 400px;
    padding: 50px 0;
}

/* İkon boyutları (Font Awesome vb.) */
.page-content .fa,
.page-content i[class^="fa-"] {
    font-size: 1em;
    width: 1.25em;
    display: inline-block;
    text-align: center;
}

/* Öğretmen detay sayfası */
.teacher-detail-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.teacher-detail-photo {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    background: var(--gray-200);
}

.teacher-detail-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.teacher-detail-info h2 {
    color: var(--navy);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.teacher-detail-meta {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.teacher-detail-bio {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.teacher-detail-contact {
    padding: 1.25rem 0;
    border-top: 1px solid var(--gray-300);
}

.teacher-detail-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.teacher-detail-contact .fa,
.teacher-detail-contact i[class^="fa-"] {
    width: 1.25rem;
    font-size: 1rem;
    color: var(--navy);
}

@media (max-width: 768px) {
    .teacher-detail-wrap {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-img {
    height: 180px;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.card-body {
    padding: 5px;
}

.card-body h3 {
    color: var(--navy);
    margin-bottom: 10px;
}

.card-body h3 a:hover {
    color: var(--yellow-dark);
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow);
}

.contact-form-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 4px;
}
.contact-form-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.contact-form-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
.form-group label .required { color: #c62828; }

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--yellow-light);
}

/* Contact responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========== Öğretmenler sayfası (Akademik Kadro tasarımı) ========== */
.teachers-header {
    background-color: var(--navy);
    border-top: 12px solid var(--yellow);
    padding: 1rem 0 0.5rem;
    border-bottom: 1px solid var(--gray-300);
    position: relative;
    overflow: hidden;
}


.teachers-header-inner {
    position: relative;
    z-index: 1;
}

.teachers-eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
    display: block;
}

.teachers-page-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--gray-100);
    letter-spacing: -0.02em;
}

.teachers-page-title span {
    background-color: var(--yellow);
    padding: 0 0.4rem;
    display: inline-block;
    margin-top: 0.25rem;
}

.teachers-tabs-wrap {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
    padding: 0.5rem 0;
}
.teachers-tabs {
    display: flex;
    gap: 0;
}
.teachers-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.teachers-tab:hover { color: var(--navy); }
.teachers-tab.active {
    color: var(--navy);
    border-bottom-color: var(--yellow);
}

.teachers-tab-panel[hidden] { display: none !important; }

.teachers-toolbar {
    background-color: var(--navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.teachers-toolbar-inner {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.teachers-form-control {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.875rem;
    min-width: 200px;
    max-width: 280px;
    transition: border-color 0.2s, background 0.2s;
}

.teachers-form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.teachers-form-control:focus {
    outline: none;
    border-color: var(--yellow);
    background-color: rgba(255, 255, 255, 0.12);
}
.teachers-form-control option {
    color: #000;
    background-color: #fff;
}
.teachers-btn-primary {
    background-color: var(--yellow);
    color: var(--navy);
    border: none;
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.2s;
}

.teachers-btn-primary:hover {
    background-color: var(--white);
}

.teachers-stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.teachers-main {
    padding: 2.5rem 0 4rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 260px));
    gap: 2rem;
    justify-content: center;
}

.staff-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(27, 58, 107, 0.2);
    border-bottom: 4px solid var(--yellow);
}

.staff-card-image-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--gray-300);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    filter: grayscale(0%) contrast(1);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.staff-card:hover .staff-card-image {
    filter: grayscale(100%) contrast(1.08);
    transform: scale(1.02);
}

.staff-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    filter: none;
}

.staff-card:hover .staff-card-image-placeholder {
    transform: scale(1.03);
}

.staff-card-content {
    padding: 1.75rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.staff-card-badge {
    position: absolute;
    top: -12px;
    left: 1.25rem;
    background-color: var(--yellow);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.6rem;
    z-index: 2;
    box-shadow: 2px 2px 0 rgba(0,0,0,0.08);
}

.staff-card-name {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    color: var(--navy);
    line-height: 1.2;
}

.staff-card-role {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.staff-card-duty-years {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.staff-card-divider {
    height: 3px;
    width: 2.25rem;
    background-color: var(--navy);
    margin: 1rem 0;
}

.staff-card-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.staff-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.staff-contact-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .teachers-page-title { font-size: 1.85rem; }
    .teachers-toolbar-inner { flex-direction: column; align-items: stretch; }
    .teachers-form-control { max-width: none; }
    .staff-grid { grid-template-columns: 1fr; }
}

/* Mezunlarımız sayfası */
.mezunlar-year-block { margin-bottom: 3rem; }
.mezunlar-year-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--yellow);
}
.mezunlar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
.mezun-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,58,107,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}
.mezun-card:hover {
    box-shadow: 0 8px 24px rgba(27,58,107,0.12);
    transform: translateY(-2px);
}
.mezun-card-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    overflow: hidden;
}
.mezun-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mezun-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--yellow);
    opacity: 0.9;
}
.mezun-card-body { padding: 1.25rem; }
.mezun-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.mezun-card-position {
    font-size: 0.9rem;
    color: var(--yellow-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.mezun-card-bio {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========== Etkinlikler sayfası (şablon uyarlı) ========== */
.events-page-hero {
    background-color: var(--navy);
    border-top: 12px solid var(--yellow);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.events-hero-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: rgba(255,255,255,0.04);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.events-hero-yellow-bar {
    position: absolute;
    top: 0;
    left: 50%;
    width: 400px;
    height: 100%;
    background-color: var(--yellow);
    opacity: 0.06;
    transform: skewX(-20deg);
}

.events-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.events-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    display: block;
}

.events-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.events-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
}

.events-hero-stats {
    display: flex;
    gap: 1rem;
}

.events-stat-box {
    background-color: var(--yellow);
    color: var(--navy);
    padding: 1rem 1.5rem;
    min-width: 100px;
    text-align: center;
}

.events-stat-box-dark {
    background-color: var(--navy-light);
    color: var(--white);
}

.events-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.events-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.events-content-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0 4rem;
}

.events-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.events-widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--navy);
}

.events-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.events-filter-item {
    padding: 0.6rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

.events-filter-item:hover,
.events-filter-item.active {
    border-color: var(--navy);
    background-color: var(--navy);
    color: var(--white);
}

/* Etkinlik takvimi */
.events-calendar-widget {
    margin-top: 0.5rem;
}

.events-calendar {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 1rem;
}

.events-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.events-calendar-nav {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--navy);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.events-calendar-nav:hover {
    background: var(--yellow);
    color: var(--navy);
}

.events-calendar-month {
    font-size: 0.95rem;
}

.events-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.events-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.events-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gray-800);
    background: var(--gray-100);
    transition: background 0.2s;
}

.events-calendar-day.empty {
    background: transparent;
}

.events-calendar-day.has-event {
    background: var(--yellow);
    color: var(--navy);
    font-weight: 700;
}

.events-calendar-day.has-event:hover {
    background: var(--yellow-dark);
    color: var(--white);
}

.events-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
    flex-wrap: wrap;
    gap: 1rem;
}

.events-feed-heading {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
}

.events-tabs {
    display: flex;
    gap: 1rem;
}

.events-tab {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-600);
    padding-bottom: 0.5rem;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.events-tab.active {
    color: var(--navy);
}

.events-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--yellow);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events-event-card {
    display: block;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    min-height: 160px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.events-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(27, 58, 107, 0.12);
    border-color: var(--gray-600);
}

.events-event-card-link {
    display: flex;
    height: 100%;
    min-height: 160px;
    text-decoration: none;
    color: inherit;
}

.events-event-date-block {
    width: 90px;
    background-color: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.events-event-card:nth-child(even) .events-event-date-block {
    background-color: var(--navy-light);
}

.events-event-card-featured .events-event-date-block {
    background-color: var(--yellow);
    color: var(--navy);
}

.events-event-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.events-event-month {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.events-event-image {
    width: 180px;
    background-color: var(--gray-200);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.events-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) contrast(1.05);
}

.events-event-card:hover .events-event-image img {
    filter: grayscale(0%) contrast(1);
}

.events-event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gray-600);
    padding: 0.5rem;
}

.events-event-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    position: relative;
}

.events-event-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.events-event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.events-meta-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.events-meta-item .fa {
    font-size: 0.85rem;
}

.events-event-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.events-btn-view {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--navy);
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.events-event-card:hover .events-btn-view {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

.events-btn-view .fa {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.events-event-card:hover .events-btn-view .fa {
    transform: translateX(4px);
}

.events-empty {
    text-align: center;
    color: var(--gray-600);
    padding: 2rem;
}

@media (max-width: 900px) {
    .events-content-grid {
        grid-template-columns: 1fr;
    }
    .events-event-card-link {
        flex-wrap: wrap;
    }
    .events-event-date-block {
        width: 100%;
        min-height: 70px;
        flex-direction: row;
        gap: 0.5rem;
    }
    .events-event-day { font-size: 1.5rem; margin-bottom: 0; }
    .events-event-image {
        width: 100%;
        height: 140px;
    }
}

/* Responsive */
/* ========== Etkinlik detay sayfası ========== */
.event-detail-hero {
    background-color: var(--navy);
    border-top: 12px solid var(--yellow);
    color: var(--white);
    padding: 1.2rem 0;
    position: relative;
    overflow: hidden;
}

.event-detail-hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: rgba(255,255,255,0.04);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.event-detail-breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.25rem;
}

.event-detail-breadcrumb a:hover {
    color: var(--yellow);
}

.event-detail-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.event-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
}

.event-detail-meta-box {
    border-left: 3px solid var(--yellow);
    padding-left: 1rem;
}

.event-detail-meta-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.event-detail-meta-value {
    font-size: 1rem;
    font-weight: 700;
}

.event-detail-cover {
    background: var(--gray-100);
    padding: 2rem 0;
}

.event-detail-cover-box {
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy);
}

.event-detail-cover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    padding: 2.5rem 0 3rem;
}

.event-detail-content-section {
    margin-bottom: 2.5rem;
}

.event-detail-section-title {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--navy);
    display: inline-block;
}

.event-detail-rich-text {
    color: var(--gray-800);
    font-size: 1.05rem;
    line-height: 1.8;
}

.event-detail-rich-text p {
    margin-bottom: 1rem;
}

.event-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.event-detail-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.event-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-300);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-detail-widget-head {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.event-detail-location-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.75rem;
}

.event-detail-bottom-nav {
    border-top: 1px solid var(--gray-300);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-detail-nav-link {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    transition: color 0.2s;
}

.event-detail-nav-link:hover {
    color: var(--yellow-dark);
}

.event-detail-nav-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gray-600);
    font-weight: 700;
}

.event-detail-nav-title {
    font-size: 0.95rem;
}

.event-detail-nav-next {
    text-align: right;
    align-items: flex-end;
}

/* ========== Hakkımızda (Kurumsal Profil) ========== */
.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);    
    border-top: 12px solid var(--yellow);
    color: var(--white);
    padding: 2.5rem 0;
}

.about-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.about-hero-badge {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    text-transform: uppercase;
}

.about-doc-wrapper {
    background-color: var(--gray-100);
    padding: 2.5rem 0 3rem;
}

.about-doc-wrapper .container {
    background-color: var(--white);
    max-width: 1000px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    padding: 2.5rem 2rem;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
}

.about-sidebar {
    border-right: 1px solid var(--gray-300);
    padding-right: 2rem;
}

.about-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.about-content > .about-section-header:first-child {
    margin-top: 0;
}

.about-section-header::before,
.about-section-header::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--yellow);
}

.about-section-header h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--navy);
    margin: 0 12px;
}

.about-section-header-left {
    justify-content: flex-start;
}

.about-section-header-left h2 {
    margin-left: 0;
}

.about-contact-block {
    margin-bottom: 1.5rem;
}

.about-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.about-contact-icon {
    width: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.about-contact-text {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.about-contact-text strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.about-contact-text a {
    color: var(--navy-light);
}

.about-contact-text a:hover {
    color: var(--yellow-dark);
}

.about-stats-list {
    list-style: none;
}

.about-stats-list li {
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-300);
    display: flex;
    justify-content: space-between;
    color: var(--gray-600);
}

.about-stats-list li span:last-child {
    font-weight: 600;
    color: var(--navy);
}

.about-content {
    padding-top: 4px;
}

.about-sub-section {
    margin-bottom: 2rem;
}

.about-sub-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.about-text-block p,
.about-rich-text {
    font-size: 0.9rem;
    color: var(--gray-800);
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-text-block p:last-child,
.about-rich-text p:last-child {
    margin-bottom: 0;
}

.about-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Bölümler (Alan Dizin Görünümü) ========== */
.departments-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-top: 12px solid var(--yellow);
    color: var(--white);
    padding: 2.5rem 0;
}

.departments-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.departments-hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.departments-hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.departments-hero-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
}

.departments-layout {
    background-color: var(--gray-100);
    padding: 2.5rem 0 3rem;
}

.departments-layout-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    min-height: 520px;
    background-color: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

.departments-sidebar {
    background-color: var(--white);
    border-right: 1px solid var(--gray-300);
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.departments-sidebar-head {
    padding: 0 2rem 1rem;
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.departments-nav-item {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
    position: relative;
    transition: background-color 0.18s;
    color: inherit;
}

.departments-nav-item:hover {
    background-color: var(--gray-100);
}

.departments-nav-item.is-active {
    background-color: var(--gray-100);
}

.departments-nav-item.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--yellow);
}

.departments-nav-code {
    font-size: 0.7rem;
    color: var(--yellow-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.departments-nav-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
}

.departments-empty {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.departments-dossier-view {
    padding: 1.75rem 2.5rem 2.5rem;
    overflow-y: auto;
    background-color: var(--white);
}

.department-dossier {
    display: none;
}

.department-dossier.is-active {
    display: block;
}

.department-dossier-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 2rem;
}

.department-bracket {
    position: relative;
    padding: 0.75rem 1.25rem;
    display: inline-block;
}

.department-bracket::before,
.department-bracket::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--yellow);
    border-style: solid;
}

.department-bracket::before {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.department-bracket::after {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

.department-title {
    font-size: 2rem;
    color: var(--yellow);
}

/* Bölümler sayfasında kullanılan vurgu başlık */
.text-accent-bold {
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.department-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray-600);
}

.department-facts {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 260px;
    background-color: var(--gray-100);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.department-fact-row {
    display: flex;
    background-color: var(--yellow);
    color: var(--navy);
    height: 44px;
}

.department-fact-row:nth-child(2),
.department-fact-row:nth-child(3) {
    background-color: var(--yellow-light);
}

.department-fact-icon {
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.05);
}

.department-fact-icon i {
    font-size: 1rem;
}

.department-fact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.85rem;
}

.department-fact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

.department-fact-value {
    font-size: 0.85rem;
    font-weight: 600;
}

.department-section-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 2rem;
}

.department-section {
    margin-bottom: 1.75rem;
}

.department-section-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
}

.department-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gray-300);
}

.department-text-body {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.7;
}

.department-text-body p {
    margin-bottom: 0.75rem;
}

.department-text-muted {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.department-program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.75rem;
}

.department-program-card {
    background-color: var(--gray-100);
    border-radius: 6px;
    border: 1px solid var(--gray-300);
    padding: 0.85rem 0.9rem;
}

.department-program-year {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.department-program-subjects {
    list-style: none;
    font-size: 0.85rem;
}

.department-program-subjects li {
    padding: 3px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    color: var(--gray-800);
}

.department-program-subjects li::before {
    content: '•';
    color: var(--yellow-dark);
    margin-right: 6px;
    font-size: 0.7rem;
}

.department-program-subjects li:last-child {
    border-bottom: none;
}

.department-career-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.department-career-item {
    background-color: var(--gray-100);
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    padding: 0.55rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.department-career-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--yellow);
    transform: rotate(45deg);
}

.department-career-text {
    font-size: 0.9rem;
    color: var(--gray-800);
}

@media (max-width: 992px) {
    .departments-layout-inner {
        grid-template-columns: 260px 1fr;
    }
    .department-dossier-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .department-facts {
        width: 100%;
        max-width: 380px;
        margin-top: 1rem;
    }
    .department-section-grid {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    }
}

@media (max-width: 768px) {
    .departments-hero-title {
        font-size: 1.8rem;
    }
    .departments-layout-inner {
        grid-template-columns: 1fr;
    }
    .departments-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
    }
    .departments-dossier-view {
        padding: 1.5rem 1.25rem 2rem;
    }
    .department-section-grid {
        grid-template-columns: 1fr;
    }
    .department-program-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .event-detail-container {
        grid-template-columns: 1fr;
    }
    .event-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid-layout {
        grid-template-columns: 1fr;
    }
    .about-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--gray-300);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    .about-split-content {
        grid-template-columns: 1fr;
    }
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 0;
    }

    .hero-slider .slider-inner {
        height: min(68vh, 480px);
        min-height: 260px;
    }

    .hero-slider .slider-item {
        padding-bottom: 76px;
        align-items: center;
        justify-content: center;
    }

    .hero-slider .hero-content {
        padding: 20px 16px 16px;
    }

    .hero-slider .hero-content h1 {
        font-size: clamp(1.1rem, 5.2vw, 1.6rem);
        line-height: 1.28;
    }

    .hero-slider .hero-content p {
        font-size: 0.88rem;
        margin-top: 0.5rem;
        line-height: 1.45;
    }

    .hero-slider .slider-dots {
        bottom: 20px;
    }

    .hero-slider .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .hero-slider .slider-prev {
        left: 8px;
    }

    .hero-slider .slider-next {
        right: 8px;
    }

    .features {
        margin-top: -18px;
        padding-bottom: 32px;
    }

    .feature-card {
        padding: 28px 20px;
    }

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

    .event-detail-title {
        font-size: 1.5rem;
    }
    .event-detail-cover-box {
        height: 250px;
    }
    .about-hero-title {
        font-size: 1.75rem;
    }
    .about-doc-wrapper .container {
        padding: 1.5rem 1rem;
    }
    .announcements-hero-title {
        font-size: 1.85rem;
    }
    .announcements-post-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Duyurular (Haberler ve Duyurular şablonu) ========== */
.announcements-hero {
    background-color: var(--navy);
    border-top: 12px solid var(--yellow);
    color: var(--white);
    padding: 0.5rem 0 0.25rem;
    position: relative;
    overflow: hidden;
}

.announcements-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background-color: rgba(255,255,255,0.04);
    transform: skewX(-20deg);
}

.announcements-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.announcements-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.announcements-hero-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--yellow);
}

.announcements-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 800px;
}

.announcements-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

.announcements-main {
    padding: 2.5rem 20px 4rem;
}

.announcements-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.announcements-post-card {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcements-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--yellow);
    transition: height 0.3s ease;
    z-index: 2;
}

.announcements-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(27,58,107,0.1);
}

.announcements-post-card:hover::before {
    height: 4px;
}

.announcements-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.announcements-card-image-wrapper {
    position: relative;
    padding-top: 60%;
    background-color: var(--gray-200);
    overflow: hidden;
}

.announcements-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.announcements-post-card:hover .announcements-card-image {
    transform: scale(1.05);
}

.announcements-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.announcements-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.announcements-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.announcements-card-category {
    color: var(--yellow-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.announcements-card-category::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--yellow);
}

.announcements-card-date {
    color: var(--gray-600);
}

.announcements-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.announcements-post-card:hover .announcements-card-title {
    color: var(--yellow-dark);
}

.announcements-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcements-card-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
    margin-top: auto;
}

.hero-sub {
    margin-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.95;
}

/* Dergiler sayfası */
.dergiler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dergi-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,58,107,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dergi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(27,58,107,0.12);
}

.dergi-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.dergi-card-cover {
    position: relative;
    padding-top: 130%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    overflow: hidden;
}

.dergi-card-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dergi-card-pdf-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--yellow);
    font-size: 1rem;
    font-weight: 600;
}

.dergi-card-pdf-placeholder i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.dergi-card-year {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.dergi-card-title {
    padding: 1.25rem 1.25rem 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    flex-grow: 1;
}

.dergi-card-cta {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yellow-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dergi-card:hover .dergi-card-cta {
    color: var(--navy);
}

.announcements-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: 0.03em;
}

.announcements-read-more span {
    color: var(--yellow);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.announcements-post-card:hover .announcements-read-more span {
    transform: translateX(4px);
}

.announcements-empty {
    text-align: center;
    color: var(--gray-600);
    padding: 3rem;
}

/* Duyuru detay */
.announcement-detail-hero {
    background-color: var(--navy);
    color: var(--white);
    padding: 2rem 0;
    position: relative;
}

.announcement-detail-breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.announcement-detail-breadcrumb a:hover {
    color: var(--yellow);
}

.announcement-detail-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.announcement-detail-date {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.announcement-detail-cover {
    background: var(--gray-100);
    padding: 1.5rem 0;
}

.announcement-detail-cover-box {
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy);
}

.announcement-detail-cover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-detail-container {
    padding: 2rem 0 3rem;
    max-width: 800px;
}

.announcement-detail-rich-text {
    color: var(--gray-800);
    font-size: 1.05rem;
    line-height: 1.8;
}

.announcement-detail-rich-text p {
    margin-bottom: 1rem;
}

.announcement-detail-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--navy);
}

.announcement-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.announcement-detail-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.announcement-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ortak video embed (etkinlik, yazı, duyuru detay) */
.detail-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 1.5rem 0;
    background: var(--navy);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.detail-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== Yazı detay (Makale şablonu) ========== */
.article-detail-hero {
    background-color: var(--navy);
    border-top: 12px solid var(--yellow);
    color: var(--white);
    padding: 1rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.article-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background-color: rgba(255,255,255,0.04);
    transform: skewX(-20deg);
}

.article-detail-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.article-detail-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.article-detail-hero-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--yellow);
}

.article-detail-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    max-width: 900px;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.article-detail-content-wrap {
    padding: 2.5rem 0 3rem;
    background-color: var(--gray-100);
}

.article-detail-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    max-width: 1200px;
}

.article-detail-main {
    max-width: 800px;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-radius: 8px;
}

.article-detail-featured-image {
    margin: -2rem -2rem 1.5rem -2rem;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.article-detail-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-detail-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-800);
}

.article-detail-body p {
    margin-bottom: 1.25rem;
}

.article-detail-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--navy);
}

.article-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.article-detail-gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-300);
}

.article-detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-sidebar-section {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.article-detail-sidebar-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

.article-detail-op-ed-card {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.article-detail-op-ed-card:last-child {
    border-bottom: none;
}

.article-detail-op-ed-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.article-detail-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.article-detail-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.article-detail-op-ed-link {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--gray-800);
    display: block;
    transition: color 0.2s;
}

.article-detail-op-ed-link:hover {
    color: var(--yellow-dark);
}

.article-detail-sidebar-empty {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.article-detail-related {
    background: var(--white);
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-300);
}

.article-detail-related-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.article-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-detail-related-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    padding: 1.5rem;
    border-radius: 8px;
}

.article-detail-related-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.article-detail-related-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.article-detail-related-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-transform: uppercase;
}

.article-detail-related-link:hover {
    color: var(--navy);
}

@media (max-width: 992px) {
    .announcements-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-detail-container {
        grid-template-columns: 1fr;
    }
    .article-detail-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-detail-hero-title {
        font-size: 1.75rem;
    }
    .article-detail-main {
        padding: 1.25rem;
    }
    .article-detail-featured-image {
        margin: -1.25rem -1.25rem 1rem -1.25rem;
    }
    .article-detail-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
