:root {
    --primary-color: rgb(0, 44, 119);
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
}

/* Font */
/* ======================== */
@font-face {
    font-family: "Bourgeois";
    src: url('../fonts/bourgeois/medium.ttf');
    src: url('../fonts/bourgeois/medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/bourgeois/medium.woff') format('woff'),
        url('../fonts/bourgeois/medium.ttf') format('truetype');
}

body {
    font-family: 'Bourgeois';
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    position: relative;
    color: var(--dark-color);
    font-size: 1.1rem;
}

html {
    scroll-behavior: smooth;
    font-size: 18px; /* rem tabanı — tüm boyutlar buna göre ölçeklenir */
}

a {
    text-decoration: none;
}

/* Blocks */
/* ======================== */

/* Header */

.Header .Header__Navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

    .Header.Header--Fixed .Header__Navbar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100% !important;
        z-index: 100000 !important;
    }

.Header .Header__Navbar .Navbar__Brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.Header .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 1rem !important;
    font-size: 1rem !important;
}

.Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link:hover {
    color: var(--secondary-color) !important;
}

.Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--secondary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.Header .Header__Navbar .Navbar__Collapse .Collapse__Nav .Nav__Item .Item__Link:hover::after {
    width: 80%;
}

/* Hero Section */
.Hero {
    background: #fff;
}

.Hero__Image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Swiper — tam genişlik */
.Hero__Swiper {
    width: 100%;
    overflow: hidden;
}

.Hero__Swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.Hero__Swiper .swiper-button-prev,
.Hero__Swiper .swiper-button-next {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.Hero__Swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Hero Message */
.Hero__Message {
    text-align: center;
    padding: 28px 20px 0;
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #374151;
}

.Hero__Message p {
    margin: 0;
}

.Hero__Message strong,
.Hero__Message b {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .Hero__Message {
        padding: 20px 16px 0;
        font-size: 0.95rem;
    }
}

/* Hero Buttons */
.Hero__Buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    flex-wrap: wrap;
}

.Hero__Btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border-radius: 10px;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.3;
    min-width: 160px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.Hero__Btn:hover {
    background: #0a2a6e;
    transform: translateY(-2px);
    color: #fff !important;
}

/* Turuncu varyant (Submit Abstract) */
.Hero__Btn--accent {
    background: #c0692a;
}

.Hero__Btn--accent:hover {
    background: #a3561f;
}

/* Outline varyant (Announcements) */
.Hero__Btn--outline {
    background: transparent;
    color: var(--primary-color) !important;
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.Hero__Btn--outline:hover {
    background: var(--primary-color);
    color: #fff !important;
}

@media (max-width: 576px) {
    .Hero__Buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px 16px;
    }
    .Hero__Btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Section Titles */
.Section__Title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.Section__Subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.Banner {
    margin-top: 90px;
}

/* Inner page (Kapaklı Yazı Sayfası) */
.Page__Body {
    background: #fff;
    padding: 30px 0 60px;
}
.Page__Breadcrumb {
    margin-bottom: 25px;
}
.Page__Breadcrumb .breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
}
.Page__Breadcrumb .breadcrumb-item.active {
    color: #6b7280;
}
.Page__Card {
    background: #fff;
    padding: 0;
    line-height: 1.8;
    color: #1f2937;
}
.Page__Heading {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.Page__Content {
    line-height: 1.8;
    color: #333;
}

/* Page Accordion */
.Page__Accordion {
    margin-top: 10px;
}
.Page__Accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}
.Page__Accordion .accordion-header {
    margin: 0;
}
.Page__Accordion .accordion-button {
    background: #fff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 22px;
    box-shadow: none;
    border-radius: 10px !important;
}
.Page__Accordion .accordion-button:not(.collapsed) {
    background: #f1f5ff;
    color: var(--primary-color);
    box-shadow: none;
}
.Page__Accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.Page__Accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23002C77'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.Page__Accordion .accordion-body {
    padding: 18px 22px;
    color: #374151;
    line-height: 1.8;
    background: #fff;
}
.Page__Accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

/* Welcome / Chairs */
.Welcome__Text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}
.Welcome__Text p {
    margin-bottom: 1rem;
}
.Chair__Card {
    background: #fff;
    border-left: 4px solid var(--primary-color);
    padding: 18px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
}
.Chair__Name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 4px;
}
.Chair__Title {
    color: #4b5563;
    font-size: 0.95rem;
}
.Chair__Role {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Theme */
.Theme__Text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

/* Submission Guidelines */
.Submission__List {
    list-style: none;
    padding-left: 0;
}
.Submission__List li {
    background: #fff;
    padding: 14px 20px 14px 50px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    color: #374151;
    line-height: 1.6;
}
.Submission__List li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Fees Table */
.Fees__Table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.Fees__Table thead {
    background: var(--primary-color);
    color: #fff;
}
.Fees__Table thead th {
    padding: 14px 16px;
    font-weight: 600;
    border: none;
}
.Fees__Table tbody td {
    padding: 14px 16px;
    color: #374151;
}
.Fees__Table tbody tr:hover {
    background: #f8fafc;
}

/* Organizing Institutions */
.Org__Card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.Org__Card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.Org__Icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
.Org__Name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 6px;
}
.Org__Location {
    color: #4b5563;
    font-size: 0.95rem;
}
.Org__Role {
    display: inline-block;
    padding: 4px 12px;
    background: #eef2ff;
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Info Banner */
.Info__Banner {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
}

/* Stats Section */
.stats-section {
    background: var(--light-color);
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Topics Grid (numbered, no icons) */
.Topics__Grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.Topic__Item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border-radius: 10px;
    padding: 22px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.Topic__Item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
    border-left-color: var(--secondary-color);
}

.Topic__Number {
    flex-shrink: 0;
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
    min-width: 50px;
    letter-spacing: -1px;
}

.Topic__Body {
    flex: 1;
    min-width: 0;
}

.Topic__Title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 6px;
    line-height: 1.4;
}

.Topic__List {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.Topic__List li {
    padding: 4px 0 4px 16px;
    color: #6b7280;
    position: relative;
    font-size: 0.95rem;
}

.Topic__List li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .Topics__Grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .Topic__Item {
        padding: 18px 18px;
    }
    .Topic__Number {
        font-size: 1.6rem;
        min-width: 40px;
    }
    .Topic__Title {
        font-size: 1rem;
    }
}

/* Publications Cards (still use .Card--Topic) */
.Card--Topic {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.Card--Topic:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary-color);
}

.Card--Topic h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.Card--Topic ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Card--Topic ul li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.Card--Topic ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Speaker Cards */
.Card--Speaker {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.Card--Speaker:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.Card--Speaker .Card__Image {
    height: 300px;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #9ca3af;
}
.Card--Speaker .Card__Image img {
    height: 100% !important;
}

.Card--Speaker .Card__Info {
    padding: 2rem;
}

.Card--Speaker .Card__Info .Info__Name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.Card--Speaker .Card__Info .Info__Title {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.Card--Speaker .Card__Info .Info__Bio {
    color: var(--dark-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline */

.Timeline .Timeline__Item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.Timeline .Timeline__Item:hover {
    transform: translateX(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.Timeline .Timeline__Item .Item__Date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.Timeline .Timeline__Item .Item__Title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Home Contact Section */
.HomeContact {
    padding: 100px 0;
    background: #fff;
    text-align: center;
    border-top: 1px solid #e9edf5;
}

.HomeContact__Inner {
    max-width: 600px;
    margin: 0 auto;
}

.HomeContact__Label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c0692a;
    margin-bottom: 20px;
}

.HomeContact__Title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 18px;
    line-height: 1.15;
}

.HomeContact__Text {
    font-size: 1rem;
    line-height: 1.85;
    color: #6b7280;
    margin: 0 0 36px;
}

.HomeContact__Text p { margin: 0; }

.HomeContact__Btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--primary-color);
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease;
}

.HomeContact__Btn i {
    transition: transform 0.2s ease;
}

.HomeContact__Btn:hover {
    background: #0a2a6e;
    transform: translateY(-2px);
    color: #fff !important;
}

.HomeContact__Btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .HomeContact { padding: 70px 0; }
    .HomeContact__Title { font-size: 1.8rem; }
    .HomeContact__Btn { width: 100%; justify-content: center; }
}

/* Contact Cards */
.Card--Contact {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.Card--Contact:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.Card--Contact .Card__Icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.Card--Contact h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.Card--Contact a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.Card--Contact a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.Footer {
    background: #0f1f4b;
    color: rgba(255,255,255,0.85);
    padding: 40px 0 24px;
}

.Footer .Footer__Links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s;
}

.Footer .Footer__Links a:hover {
    color: #fff;
}

.Footer .Footer__Bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 18px;
    margin-top: 24px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {

    .Hero__Logos {
        gap: 25px;
        margin-bottom: 15px;
    }

    .Hero__LogoBox img {
        max-height: 50px;
    }

    .Hero__TopTitle {
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    .Section__Title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ================================================
   İÇ SAYFA — Ortak Header + Tüm Şablonlar
   ================================================ */


/* ── Header (gradient + çapraz alt kenar) ─────── */
.InnerPage__Header {
    position: relative;
    background: linear-gradient(160deg, #0f1f4b 0%, #162552 55%, #1a2e65 100%);
    padding: 72px 0 80px;
    overflow: hidden;
    text-align: center;   /* centre title + subtitle */
    /* No clip-path: flat, clean bottom edge */
}

.InnerPage__Header__Overlay {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 60%, rgba(255,255,255,0.04) 0%, transparent 55%),
        radial-gradient(circle at 80% 25%, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* ── Breadcrumb – cover-image mode only (light bar below image) ── */
/* Gradient-header mode has no breadcrumb — title + subtitle only  */
.InnerPage__Breadcrumb {
    margin-bottom: 0;
}

.InnerPage__Breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.875rem;
}

.InnerPage__Title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Subtitle – shown under the h1 in gradient-header mode */
.InnerPage__Subtitle {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    font-weight: 400;
    margin: 12px auto 0; /* auto: block-level centering within the container */
    max-width: 680px;
    line-height: 1.65;
}

/* ── Cover Image Mode ─────────────────────────── */
.InnerPage__Cover {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    line-height: 0;          /* removes inline-block gap */
}

.InnerPage__CoverImg {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slim breadcrumb bar that appears below the cover image */
.InnerPage__BreadcrumbBar {
    background: #fff;
    border-bottom: 1px solid #e9edf5;
    padding: 13px 0;
}

/* Override white breadcrumb colours for the light bar */
.InnerPage__BreadcrumbBar .InnerPage__Breadcrumb {
    margin-bottom: 0;
}
.InnerPage__BreadcrumbBar .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}
.InnerPage__BreadcrumbBar .breadcrumb-item a:hover {
    color: var(--secondary-color);
}
.InnerPage__BreadcrumbBar .breadcrumb-item.active {
    color: #6b7280;
}
.InnerPage__BreadcrumbBar .breadcrumb-item + .breadcrumb-item::before {
    color: #9ca3af;
}

/* ── Gövde ────────────────────────────────────── */
.InnerPage__Body {
    padding: 56px 0 80px;
}

/* İçerik kart efekti */
.InnerPage__Card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 4px 32px rgba(0,44,119,0.08);
}

/* ── İçerik tipografisi ───────────────────────── */
.InnerPage__Content {
    font-size: 1em; /* body'den miras alır, küçülmez */
    line-height: 1.9;
    color: #374151;
}

.InnerPage__Content h2,
.InnerPage__Content h3,
.InnerPage__Content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.InnerPage__Content h2 { font-size: 1.6rem; }
.InnerPage__Content h3 { font-size: 1.3rem; }
.InnerPage__Content h4 { font-size: 1.1rem; }

.InnerPage__Content h2:first-child,
.InnerPage__Content h3:first-child,
.InnerPage__Content h4:first-child { margin-top: 0; }

.InnerPage__Content p { margin-bottom: 1.2rem; }

.InnerPage__Content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.InnerPage__Content ul,
.InnerPage__Content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.InnerPage__Content li { padding: 3px 0; color: #4b5563; }

.InnerPage__Content blockquote {
    border-left: 4px solid var(--secondary-color);
    background: #f0f5ff;
    margin: 1.5rem 0;
    padding: 16px 24px;
    border-radius: 0 8px 8px 0;
    color: var(--primary-color);
    font-style: italic;
}

.InnerPage__Content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8rem 0;
    font-size: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.InnerPage__Content table th {
    background: var(--primary-color);
    color: #fff;
    padding: 13px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.InnerPage__Content table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.InnerPage__Content table tr:last-child td { border-bottom: none; }
.InnerPage__Content table tr:hover td { background: #f8fafc; }

/* ================================================
   ANNOUNCEMENTS
   ================================================ */

.Announcements__List {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* no max-width: full container width */
}

.Announcement__Item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9edf5;
    box-shadow: 0 2px 12px rgba(0,44,119,0.05);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.Announcement__Item:hover {
    box-shadow: 0 6px 24px rgba(0,44,119,0.1);
    transform: translateY(-2px);
}

/* Sol tarih kutusu */
.Announcement__DateBox {
    background: #0f1f4b;
    color: #fff;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    flex-shrink: 0;
    gap: 2px;
}

.DateBox__Day {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.DateBox__Month {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c0692a;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.DateBox__Year {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
}

/* Sağ içerik */
.Announcement__Body {
    flex: 1;
    padding: 24px 28px;
    min-width: 0;
}

.Announcement__Title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f1f4b;
    margin: 0 0 8px;
    line-height: 1.35;
}

.Announcement__Text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 0;
    /* ~4 lines truncation (font-size 0.95rem × line-height 1.75 × 4 ≈ 6.65rem) */
    max-height: 6.8rem;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* Expanded state – toggled via JS */
.Announcement__Text.is-expanded {
    max-height: 1000px; /* large enough for any announcement */
}

.Announcement__Text p:last-child { margin: 0; }

/* Row that holds Read More toggle + optional external link */
.Announcement__Actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 14px;
}

/* Toggle button (Read More / Read Less) */
.Announcement__Toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c0692a;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    line-height: 1;
}

.Announcement__Toggle:hover { color: #a3561f; }

.Announcement__Toggle i {
    transition: transform 0.25s ease;
    display: inline-block;
}

.Announcement__Toggle.is-open i {
    transform: rotate(180deg);
}

/* Optional external link (separate from toggle) */
.Announcement__Link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.Announcement__Link:hover {
    color: #a3561f;
}

/* Boş durum */
.Announcements__Empty {
    text-align: center;
    padding: 80px 0;
    color: #9ca3af;
}

.Announcements__Empty i {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
    color: #d1d5db;
}

.Announcements__Empty p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 576px) {
    .Announcement__Item {
        flex-direction: column;
    }
    .Announcement__DateBox {
        flex-direction: row;
        gap: 10px;
        padding: 14px 20px;
        min-width: unset;
    }
    .DateBox__Day { font-size: 1.6rem; }
    .Announcement__Body { padding: 18px 20px; }
}

/* ================================================
   KEYNOTE SPEAKERS
   ================================================ */

.Speakers__Grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.Speaker__Card {
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 28px rgba(0,44,119,0.08);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.Speaker__Card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,44,119,0.13);
}

.Speaker__PhotoWrap {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.Speaker__Photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Speaker__PhotoPlaceholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #9ca3af;
}

.Speaker__Info { flex: 1; min-width: 0; }

.Speaker__Name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 6px;
}

.Speaker__Role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0 0 4px;
}

.Speaker__Institution {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 16px;
}

.Speaker__Bio {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
    margin-top: 6px;
}

/* ================================================
   COMMITTEES
   ================================================ */

.Committee__Group {
    margin-bottom: 56px;
}

.Committee__GroupTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.Committee__GroupTitle span {
    position: relative;
}

.Committee__GroupTitle span::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    margin-top: 6px;
    width: 100%;
}

.Committee__Members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.Committee__Member {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    box-shadow: 0 2px 10px rgba(0,44,119,0.07);
    transition: transform 0.2s ease;
}

.Committee__Member:hover {
    transform: translateX(4px);
}

.Member__Avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.Member__Details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.Member__Name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Member__Role {
    font-size: 0.82rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.Member__Institution {
    font-size: 0.82rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================================
   VENUE & GETTING TO ISTANBUL
   ================================================ */

/* Giriş metni — güzel kart */
.Venue__Intro {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 4px 28px rgba(0,44,119,0.08);
    margin-bottom: 36px;
    border-top: 4px solid var(--primary-color);
}

/* Mekan kartı */
.Venue__Block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,44,119,0.08);
    margin-bottom: 48px;
}

.Venue__ImageWrap {
    overflow: hidden;
    min-height: 280px;
}

.Venue__ImageWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Venue__Details {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Venue__Name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Venue__Name i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.Venue__Address {
    font-size: 1rem;
    line-height: 1.85;
    color: #4b5563;
    font-style: normal;
    padding: 16px 20px;
    background: #f8faff;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

/* Bölüm başlığı (Harita, Ulaşım) */
.Venue__Section {
    margin-bottom: 48px;
}

.Venue__SectionTitle {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Venue__SectionTitle i {
    color: var(--secondary-color);
}

/* Harita */
.Venue__MapEmbed {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.Venue__MapEmbed iframe {
    width: 100%;
    height: 440px;
    border: none;
    display: block;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .InnerPage__Header {
        padding: 52px 16px 60px;  /* extra side padding for safety */
    }

    .InnerPage__Title { font-size: 1.8rem; }
    .InnerPage__Subtitle { font-size: 0.92rem; margin-top: 10px; }

    /* Cover image: shorter on mobile */
    .InnerPage__Cover { max-height: 240px; }
    .InnerPage__CoverImg { max-height: 240px; }

    .InnerPage__Card {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .InnerPage__Body { padding: 36px 0 56px; }

    .Speaker__Card {
        flex-direction: column;
        gap: 24px;
    }

    .Speaker__PhotoWrap {
        width: 100%;
        height: 240px;
    }

    .Committee__Members {
        grid-template-columns: 1fr;
    }

    .Venue__Intro {
        padding: 26px 24px;
    }

    .Venue__Block {
        grid-template-columns: 1fr;
    }

    .Venue__ImageWrap {
        min-height: 220px;
    }

    .Venue__Details {
        padding: 28px 24px;
    }

    .Venue__MapEmbed iframe { height: 280px; }
}