/* Kongre sitesi — genel */
:root {
  --primary-900: #0f172a;
  --primary-700: #0d9488;
  --primary-600: #0f766e;
  --primary-500: #14b8a6;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --brand-800: #0d4a32;
  --brand-700: #126b45;
  --brand-50: #ecfdf3;
  --surface-0: #f1f5f9;
  --surface-1: #e8ecf1;
  --surface-2: #dfe5ec;
  --surface-3: #d4dce6;
  --text-body: #1e293b;
  --text-heading: #0f172a;
  --text-muted: #64748b;
  --border-subtle: #e2e8f0;
  --header-bg: #f1f5f9;
  --card-bg: #ffffff;
  --card-border: #dbe3ee;
  --shadow-dropdown: 0 10px 30px rgb(15 23 42 / 0.12);
  --nav-hover-bg: #f8fafc;
  --nav-active-bg: #f0fdfa;
  --eyebrow-bg: rgb(20 184 166 / 0.12);
  --eyebrow-border: rgb(20 184 166 / 0.2);
  --chip-bg: #f8fafc;
  --meta-bg: #f8fafc;
}

html {
  height: 100%;
  margin: 0;
  background: var(--surface-1);
}

body.site-body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--surface-1);
}

body.site-home .site-footer {
  margin-top: auto;
}

/* İç sayfalar: son bölüm uzar, footer hemen altında; ekran altında boşluk yok */
body.site-inner main.site-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

body.site-inner main.site-main > :last-child {
  flex: 1 0 auto;
}

body.site-inner .site-footer {
  flex-shrink: 0;
  margin-top: 0;
}

main.site-main {
  width: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
}

main.site-main > :first-child {
  margin-top: 0;
}

main.site-main > :last-child {
  margin-bottom: 0;
}

/* İç sayfa içerik alanı */
.site-page {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-3) 100%);
  padding: 2.5rem 0;
  margin: 0;
}

.site-page--tight {
  padding-bottom: 0;
}

.container-custom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.site-header {
  background: var(--header-bg);
  box-shadow: 0 1px 4px rgb(15 23 42 / 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e2e8f0;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: min(38vw, 260px);
  padding-top: 0.25rem;
  margin-top: 0.15rem;
}

.site-header__logo-img {
  display: block;
  width: auto;
  height: clamp(2.65rem, 4.5vw, 3.5rem);
  max-width: min(100%, 260px);
  object-fit: contain;
  object-position: left bottom;
}

/* Ana sayfa: renkli logo; iç sayfalar: beyaz/açık logo */
body.site-home .site-header__logo-img--on-dark {
  display: none;
}

body.site-inner .site-header__logo-img--default {
  display: none;
}

body.site-inner .site-header__logo-img--on-dark {
  display: block;
  /* Ayrı beyaz logo yoksa renkli logoyu koyu header’da okunaklı yap (footer ile aynı) */
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

/* Admin’den yüklenen gerçek açık logo — filtre uygulanmaz */
body.site-inner .site-header__logo-img--on-dark.site-header__logo-img--native-light {
  filter: none;
  opacity: 1;
}

.site-header__right {
  align-items: center;
  margin-left: auto;
  gap: 0.25rem;
}

.site-header__divider {
  width: 1px;
  height: 1.75rem;
  background: #d1d5db;
  margin: 0 0.75rem;
  flex-shrink: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.btn-header-outline,
.btn-header-primary {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 1.125rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 0.5rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.btn-header-outline i,
.btn-header-primary i {
  flex-shrink: 0;
  font-size: 0.8rem;
  opacity: 0.92;
}

.btn-header-outline {
  color: var(--brand-800);
  background: #fff;
  border: 1px solid rgb(15 74 50 / 0.2);
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.05);
}

.btn-header-outline:hover {
  color: var(--primary-700);
  background: var(--brand-50);
  border-color: rgb(13 148 136 / 0.45);
  box-shadow: 0 4px 12px rgb(13 148 136 / 0.12);
  transform: translateY(-1px);
}

.btn-header-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-800) 0%, #0d9488 100%);
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgb(13 148 136 / 0.28);
}

.btn-header-primary:hover {
  background: linear-gradient(135deg, var(--brand-700) 0%, #0f766e 100%);
  box-shadow: 0 6px 16px rgb(13 148 136 / 0.34);
  transform: translateY(-1px);
}

.btn-header-primary:active,
.btn-header-outline:active {
  transform: translateY(0);
}

.btn-header--block {
  width: 100%;
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
}

.site-top-bar {
  background: #002b32;
}

.countdown-box {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgb(255 255 255 / 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

@media (min-width: 640px) {
  .countdown-box {
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
  }
}

.countdown-box--seconds {
  background: rgb(245 158 11 / 0.2);
}

.countdown-num {
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 640px) {
  .countdown-num {
    font-size: 0.875rem;
  }
}

.countdown-num--pulse {
  animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.countdown-unit {
  font-size: 0.625rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1;
}

@media (min-width: 640px) {
  .countdown-unit {
    font-size: 0.75rem;
  }
}

.site-nav .nav-link {
  color: #1e3a2f;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.15s;
  white-space: nowrap;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: var(--brand-800);
}

.site-nav .nav-link--dropdown {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-nav .nav-link--dropdown.is-open {
  color: #0f766e;
}

.site-nav .nav-link--dropdown.is-open::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0;
  height: 2px;
  background: #0f766e;
  border-radius: 1px;
}

.site-nav .nav-link__chevron {
  font-size: 0.625rem;
  color: #64748b;
  transition: transform 0.2s ease;
}

.site-nav .nav-link__chevron.is-open {
  transform: rotate(180deg);
  color: #0f766e;
}

.nav-dropdown-panel {
  min-width: 13.5rem;
}

.nav-dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-dropdown, 0 10px 30px rgb(15 23 42 / 0.12));
  overflow: hidden;
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown__link:hover {
  background: var(--nav-hover-bg);
  color: #0f766e;
}

.nav-dropdown__link.is-active {
  background: var(--nav-active-bg);
  color: #0f766e;
  font-weight: 600;
}

.nav-dropdown__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  flex-shrink: 0;
  color: #0d9488;
  font-size: 0.875rem;
}

.nav-dropdown__icon--dot {
  font-size: 0.45rem;
}

.btn-accent {
  background: var(--accent-500);
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background 0.15s;
}

.btn-accent:hover {
  background: var(--accent-600);
}

.btn-primary-site {
  background: var(--primary-600);
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
}

/* Bölümler arası dalga geçişi */
.section-wave {
  position: relative;
  z-index: 5;
  display: block;
  width: 100%;
  margin-top: calc(-1 * clamp(44px, 6vw, 68px) + 1px);
  margin-bottom: calc(-1 * clamp(20px, 2.5vw, 32px));
  line-height: 0;
  pointer-events: none;
}

.section-wave__svg {
  display: block;
  width: 100%;
  height: clamp(44px, 6vw, 68px);
}

.section-wave path {
  fill: var(--wave-fill, #fff);
}

.site-footer {
  width: 100%;
  margin: 0;
  background: #020617;
  color: #e2e8f0;
}

.site-footer__main {
  position: relative;
  padding: 3.5rem 0 2.75rem;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

.site-footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.site-footer__glow--teal {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
  background: rgb(20 184 166 / 0.12);
}

.site-footer__glow--navy {
  width: 320px;
  height: 320px;
  right: -60px;
  bottom: -80px;
  background: rgb(15 118 110 / 0.08);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }
}

.site-footer__brand {
  max-width: 22rem;
}

.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.site-footer__logo {
  height: clamp(3.5rem, 6vw, 5rem);
  width: auto;
  max-width: min(100%, 340px);
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__tagline {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.site-footer__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgb(255 255 255 / 0.05);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 999px;
}

.site-footer__meta i {
  color: #5eead4;
  font-size: 0.7rem;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 0.45rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__btn--primary {
  color: #0f172a;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.site-footer__btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.site-footer__btn--ghost {
  color: #e2e8f0;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.04);
}

.site-footer__btn--ghost:hover {
  border-color: rgb(94 234 212 / 0.45);
  background: rgb(20 184 166 / 0.1);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.5rem;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-footer__social-link:hover {
  color: #fff;
  background: rgb(20 184 166 / 0.2);
  border-color: rgb(94 234 212 / 0.35);
}

.site-footer__heading {
  position: relative;
  margin: 0 0 1.1rem;
  padding-bottom: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #14b8a6, transparent);
  border-radius: 1px;
}

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

.site-footer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.875rem;
  color: #94a3b8;
  border-bottom: 1px solid rgb(255 255 255 / 0.04);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__link i {
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer__link:hover {
  color: #5eead4;
  padding-left: 0.25rem;
}

.site-footer__link:hover i {
  opacity: 1;
  transform: translateX(0);
}

.site-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  color: #cbd5e1;
  background: rgb(255 255 255 / 0.04);
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: 0.6rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

a.site-footer__contact-item:hover {
  background: rgb(20 184 166 / 0.08);
  border-color: rgb(20 184 166 / 0.2);
  color: #e2e8f0;
}

.site-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
  color: #5eead4;
  background: rgb(20 184 166 / 0.12);
  border-radius: 0.45rem;
}

.site-footer__contact-text {
  line-height: 1.5;
  padding-top: 0.2rem;
}

.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(0 0 0 / 0.25);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1.1rem 0;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  flex: 1 1 auto;
  min-width: 0;
}

.site-footer__copy strong {
  color: #94a3b8;
  font-weight: 700;
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
  flex-shrink: 0;
}

.site-footer__credit-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  white-space: nowrap;
}

.site-footer__credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fbbf24;
  text-decoration: none;
  background: rgb(0 0 0 / 0.35);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.45rem;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-footer__credit-badge:hover {
  color: #fde68a;
  background: rgb(245 158 11 / 0.12);
  border-color: rgb(251 191 36 / 0.35);
  transform: translateY(-1px);
}

.site-footer__credit-badge i {
  font-size: 0.7rem;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__copy {
    text-align: center;
  }

  .site-footer__credit {
    justify-content: flex-end;
    width: 100%;
  }
}

.page-hero {
  background: linear-gradient(135deg, #0f172a, #0d9488);
  color: #fff;
  padding: 3rem 0;
  margin-bottom: 0;
}

.page-hero__inner {
  text-align: center;
}

.page-hero__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.page-hero__subtitle {
  margin: 0.5rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: rgb(226 232 240 / 0.9);
}

.prose-congress p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #475569;
}

.card-announce {
  background: var(--card-bg);
  border-radius: 1rem;
  border: 1px solid var(--card-border);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.card-announce:hover {
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.08);
}

/* Ana sayfa — Kongre Hakkında */
.home-about {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgb(20 184 166 / 0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface-0) 0%, var(--surface-1) 100%);
  overflow: hidden;
}

.home-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(148 163 184 / 0.22) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
  pointer-events: none;
}

.home-about__header {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.home-about__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgb(20 184 166 / 0.12);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 999px;
}

.home-about__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}

.home-about__lead {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #64748b;
}

.home-about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 960px) {
  .home-about__grid {
    grid-template-columns: 1.45fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}

.home-about__card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.home-about__card--main {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 20px 50px rgb(15 23 42 / 0.08);
}

.home-about__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #f59e0b);
}

.home-about__card-inner {
  padding: 2rem 2rem 2.25rem;
}

@media (min-width: 640px) {
  .home-about__card-inner {
    padding: 2.25rem 2.5rem 2.5rem;
  }
}

.home-about__card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
}

.home-about__card-eyebrow i {
  font-size: 0.75rem;
  opacity: 0.9;
}

.home-about__congress-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.home-about__congress-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
}

.home-about__congress-meta i {
  flex-shrink: 0;
  width: 1.25rem;
  margin-top: 0.15rem;
  text-align: center;
  color: #0f766e;
  font-size: 0.9rem;
}

.home-about__card-title {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.home-about__card-text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

.home-about__meta {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 540px) {
  .home-about__meta {
    grid-template-columns: 1fr 1fr;
  }
}

.home-about__meta-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  background: var(--chip-bg);
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.home-about__meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  font-size: 1rem;
  color: #0f766e;
  background: rgb(20 184 166 / 0.12);
  border-radius: 0.5rem;
}

.home-about__meta-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.home-about__meta-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
}

.home-about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.home-about__link:hover {
  gap: 0.75rem;
  color: #0d9488;
}

.home-about__card--hybrid {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 0.15);
  box-shadow: 0 24px 48px rgb(15 118 110 / 0.35);
}

.home-about__hybrid-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0f766e 0%, #115e59 45%, #134e4a 100%);
}

.home-about__hybrid-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgb(251 191 36 / 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.home-about__hybrid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(135deg, transparent 30%, #000 100%);
  pointer-events: none;
}

.home-about__hybrid-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  min-height: 100%;
  padding: 1.75rem 1.75rem 2rem;
}

@media (min-width: 640px) {
  .home-about__hybrid-layout {
    grid-template-columns: 1fr 0.85fr;
    gap: 1rem 1.25rem;
    padding: 2rem 2rem 2.25rem;
    align-items: stretch;
  }
}

.home-about__hybrid-main {
  display: flex;
  flex-direction: column;
}

.home-about__hybrid-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.home-about__hybrid-badge {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #134e4a;
  background: #fcd34d;
  border-radius: 999px;
}

.home-about__hybrid-badge--muted {
  color: rgb(255 255 255 / 0.9);
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.2);
}

.home-about__hybrid-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 0.85rem;
  backdrop-filter: blur(8px);
}

.home-about__hybrid-title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
}

.home-about__hybrid-text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.88);
}

.home-about__hybrid-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-about__hybrid-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.92);
}

.home-about__hybrid-list i {
  width: 1.1rem;
  text-align: center;
  color: #fcd34d;
  flex-shrink: 0;
}

.home-about__hybrid-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.home-about__hybrid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #134e4a;
  text-decoration: none;
  background: #fff;
  border-radius: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-about__hybrid-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.15);
}

.home-about__hybrid-btn--ghost {
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.25);
}

.home-about__hybrid-btn--ghost:hover {
  background: rgb(255 255 255 / 0.18);
}

.home-about__hybrid-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.15);
}

@media (min-width: 640px) {
  .home-about__hybrid-visual {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    min-height: 12rem;
  }
}

.home-about__hybrid-watermark {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -55%);
  font-size: clamp(7rem, 14vw, 10rem);
  color: rgb(255 255 255 / 0.07);
  pointer-events: none;
}

@media (min-width: 640px) {
  .home-about__hybrid-watermark {
    display: block;
  }
}

.home-about__hybrid-stats {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-about__hybrid-stats {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
}

.home-about__hybrid-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.65rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.home-about__hybrid-stat > i {
  grid-row: 1 / -1;
  font-size: 1.1rem;
  color: #fcd34d;
}

.home-about__hybrid-stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.65);
}

.home-about__hybrid-stat-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

/* Ana sayfa — Katılım ücretleri */
.home-fees {
  position: relative;
  padding: 3.25rem 0 3.5rem;
  background:
    radial-gradient(ellipse 65% 50% at 0% 0%, rgb(20 184 166 / 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
}

.home-fees__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.35rem;
}

.home-fees__header-text {
  max-width: 36rem;
}

.home-fees__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.32rem 0.8rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgb(20 184 166 / 0.1);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 999px;
}

.home-fees__title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #0f172a;
}

.home-fees__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.home-fees__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
}

.home-fees__all-link:hover {
  gap: 0.65rem;
  color: #0d9488;
}

.home-fees__panel {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgb(15 23 42 / 0.08);
  background: #fff;
  box-shadow: 0 10px 36px rgb(15 23 42 / 0.06);
  overflow: hidden;
}

.home-fees__panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 55%, #5eead4 100%);
}

.home-fees__table-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid rgb(15 23 42 / 0.07);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.home-fees__table-head span:last-child {
  min-width: 5.5rem;
  text-align: right;
}

.home-fees__list {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
}

.home-fees__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.68rem 1.25rem;
  transition: background 0.12s ease;
}

.home-fees__row:nth-child(even) {
  background: rgb(248 250 252 / 0.85);
}

.home-fees__row:hover {
  background: rgb(20 184 166 / 0.05);
}

.home-fees__row-label {
  flex-shrink: 0;
  max-width: 62%;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
}

.home-fees__row-leader {
  flex: 1;
  min-width: 1.5rem;
  height: 1px;
  margin-bottom: 0.2rem;
  border-bottom: 1px dotted rgb(148 163 184 / 0.55);
}

.home-fees__row-price {
  flex-shrink: 0;
  min-width: 5.5rem;
  padding: 0.22rem 0.55rem;
  border-radius: 0.45rem;
  background: rgb(20 184 166 / 0.08);
  border: 1px solid rgb(20 184 166 / 0.14);
  font-size: 0.875rem;
  font-weight: 800;
  color: #0f766e;
  text-align: right;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.home-fees__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdfa 100%);
  border-top: 1px solid rgb(15 23 42 / 0.07);
}

.home-fees__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  max-width: 34rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.home-fees__note i {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #0f766e;
  font-size: 0.85rem;
}

.home-fees__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-fees__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.home-fees__btn--primary {
  background: var(--primary-600);
  color: #fff;
  box-shadow: 0 6px 16px rgb(15 118 110 / 0.2);
}

.home-fees__btn--primary:hover {
  background: var(--primary-700);
  color: #fff;
}

.home-fees__btn--ghost {
  border: 1px solid rgb(15 23 42 / 0.12);
  background: #fff;
  color: #334155;
}

.home-fees__btn--ghost:hover {
  border-color: rgb(20 184 166 / 0.35);
  color: #0f766e;
}

@media (min-width: 768px) {
  .home-fees__table-head {
    display: flex;
  }

  .home-fees__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.25rem 0;
  }

  .home-fees__row {
    padding: 0.65rem 1.15rem;
    border-bottom: 1px solid rgb(15 23 42 / 0.05);
  }

  .home-fees__row:nth-child(odd) {
    border-right: 1px solid rgb(15 23 42 / 0.05);
  }

  .home-fees__row:nth-last-child(-n + 2):nth-child(odd),
  .home-fees__row:last-child:nth-child(even) {
    border-bottom: none;
  }

  .home-fees__row:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
    border-bottom: none;
  }
}

@media (max-width: 575.98px) {
  .home-fees {
    padding: 2.5rem 0 2.75rem;
  }

  .home-fees__header {
    align-items: flex-start;
  }

  .home-fees__row {
    flex-wrap: wrap;
    padding: 0.62rem 1rem;
  }

  .home-fees__row-label {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .home-fees__row-leader {
    display: none;
  }

  .home-fees__row-price {
    margin-left: auto;
  }

  .home-fees__foot {
    flex-direction: column;
    align-items: stretch;
  }

  .home-fees__actions {
    width: 100%;
  }

  .home-fees__btn {
    flex: 1;
    justify-content: center;
  }
}

/* Ana sayfa — Duyurular */
.home-announcements {
  position: relative;
  padding: 4.5rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgb(20 184 166 / 0.08) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
  overflow: hidden;
}

.home-announcements__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.home-announcements__header-text {
  max-width: 36rem;
}

.home-announcements__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.85rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgb(20 184 166 / 0.1);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 999px;
}

.home-announcements__title {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
}

.home-announcements__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.home-announcements__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
}

.home-announcements__all-link:hover {
  gap: 0.75rem;
  color: #0d9488;
}

.home-announcements__body {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .home-announcements__body--has-items {
    grid-template-columns: 1.55fr 1fr;
    align-items: stretch;
  }
}

.home-announcements__main {
  display: grid;
  gap: 1rem;
}

/* 1 duyuru: büyük hero kart */
.home-announcements__main--solo {
  grid-template-columns: 1fr;
}

/* 2 duyuru: yan yana eşit kompakt kartlar */
@media (min-width: 640px) {
  .home-announcements__main--double {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* 3+ duyuru: ilki hero, diğerleri grid */
@media (min-width: 768px) {
  .home-announcements__main--many {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .home-announcements__main--many .home-announcements__card--featured {
    grid-column: 1 / -1;
  }
}

.home-announcements__card--compact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.15rem;
  align-items: start;
}

.home-announcements__compact-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  padding: 0.65rem 0.5rem;
  text-align: center;
  background: linear-gradient(155deg, #0f766e, #134e4a);
  border-radius: 0.75rem;
  color: #fff;
  box-shadow: 0 8px 20px rgb(15 118 110 / 0.25);
}

.home-announcements__compact-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.home-announcements__compact-month {
  margin-top: 0.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fcd34d;
}

.home-announcements__compact-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-announcements__compact-body .home-announcements__card-meta {
  margin-bottom: 0.5rem;
}

.home-announcements__compact-body .home-announcements__card-title {
  font-size: 1.0625rem;
}

.home-announcements__compact-body .home-announcements__card-text {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.home-announcements__card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-announcements__card:hover {
  border-color: rgb(20 184 166 / 0.35);
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.08);
  transform: translateY(-2px);
}

.home-announcements__card--featured {
  padding: 0;
  overflow: hidden;
  background: var(--card-bg);
  border-color: rgb(20 184 166 / 0.3);
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 24px 56px rgb(15 118 110 / 0.12);
}

.home-announcements__card--featured:hover {
  transform: none;
}

.home-announcements__featured-split {
  display: grid;
  min-height: 100%;
}

@media (min-width: 720px) {
  .home-announcements__featured-split {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.home-announcements__featured-body {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.5rem;
  border-left: 4px solid #14b8a6;
}

@media (min-width: 640px) {
  .home-announcements__featured-body {
    padding: 2rem 2rem 1.75rem;
  }
}

.home-announcements__featured-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  overflow: hidden;
}

@media (min-width: 720px) {
  .home-announcements__featured-visual {
    min-height: 100%;
  }
}

.home-announcements__featured-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, #0f766e 0%, #115e59 48%, #134e4a 100%);
}

.home-announcements__featured-visual-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.5;
}

.home-announcements__featured-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: clamp(5rem, 12vw, 7.5rem);
  color: rgb(255 255 255 / 0.08);
  pointer-events: none;
}

.home-announcements__featured-rings {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgb(251 191 36 / 0.22) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgb(255 255 255 / 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.home-announcements__date-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  text-align: center;
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.15);
}

.home-announcements__date-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.home-announcements__date-month {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fcd34d;
}

.home-announcements__date-year {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.75);
}

.home-announcements__featured-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.home-announcements__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgb(15 118 110 / 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-announcements__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgb(15 118 110 / 0.38);
}

.home-announcements__read--inline {
  margin-top: 0;
}

.home-announcements__card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.home-announcements__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #0f766e;
  background: rgb(20 184 166 / 0.12);
  border-radius: 0.75rem;
}

.home-announcements__card--featured .home-announcements__card-icon {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.25rem;
}

.home-announcements__card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.home-announcements__date {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
}

.home-announcements__pin {
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
}

.home-announcements__card-title {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-announcements__card--featured .home-announcements__card-title {
  font-size: 1.375rem;
}

.home-announcements__card-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.home-announcements__card-title a:hover {
  color: #0f766e;
}

.home-announcements__card-text {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.home-announcements__read {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  transition: gap 0.2s;
}

.home-announcements__read:hover {
  gap: 0.65rem;
}

.home-announcements__empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
  color: #64748b;
}

.home-announcements__empty i {
  font-size: 2rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.home-announcements__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.home-announcements__dates {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 1.15rem 1.1rem 1.1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgb(15 23 42 / 0.05);
}

.home-announcements__dates-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.home-announcements__dates-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
}

.home-announcements__dates-title i {
  font-size: 0.9rem;
  color: #0f766e;
}

.home-announcements__dates-all {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.home-announcements__dates-all:hover {
  color: #0d9488;
}

.home-announcements__dates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
}

.home-announcements__dates-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.7rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.home-announcements__dates-item.is-next {
  background: linear-gradient(90deg, #f0fdfa 0%, #fff 100%);
  border-color: rgb(20 184 166 / 0.35);
}

.home-announcements__dates-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 2.35rem;
  padding: 0.3rem 0.35rem;
  text-align: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
}

.home-announcements__dates-item.is-next .home-announcements__dates-badge {
  color: #fff;
  background: linear-gradient(155deg, #0f766e, #134e4a);
  border-color: transparent;
}

.home-announcements__dates-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.home-announcements__dates-mon {
  margin-top: 0.1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.home-announcements__dates-item.is-next .home-announcements__dates-mon {
  color: #fde68a;
}

.home-announcements__dates-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.home-announcements__dates-body strong {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.home-announcements__dates-body time {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.home-announcements__dates-tag {
  flex-shrink: 0;
  padding: 0.2rem 0.45rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
}

.home-announcements__aside-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem;
  color: #fff;
  background: linear-gradient(145deg, #0f766e 0%, #115e59 50%, #134e4a 100%);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgb(15 118 110 / 0.25);
}

.home-announcements__aside-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgb(251 191 36 / 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.home-announcements__aside-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 0.75rem;
}

.home-announcements__aside-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.home-announcements__aside-text {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.88);
}

.home-announcements__aside-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #134e4a;
  text-decoration: none;
  background: #fff;
  border-radius: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-announcements__aside-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.home-announcements__quicklinks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-announcements__quicklinks a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-announcements__quicklinks a:hover {
  border-color: rgb(20 184 166 / 0.35);
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
  transform: translateX(3px);
}

.home-announcements__quicklink-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #0f766e;
  background: rgb(20 184 166 / 0.1);
  border-radius: 0.65rem;
}

.home-announcements__quicklink-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.home-announcements__quicklink-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.home-announcements__quicklink-text small {
  font-size: 0.75rem;
  color: #64748b;
}

.home-announcements__quicklink-arrow {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: color 0.2s, transform 0.2s;
}

.home-announcements__quicklinks a:hover .home-announcements__quicklink-arrow {
  color: #0f766e;
  transform: translateX(2px);
}

/* Ana sayfa — Önemli Tarihler */
.home-dates {
  position: relative;
  padding: 5rem 0 5.5rem;
  overflow: hidden;
  isolation: isolate;
}

.home-dates__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgb(20 184 166 / 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(244 63 94 / 0.06) 0%, transparent 50%),
    linear-gradient(165deg, var(--surface-2) 0%, #f6f8fa 42%, #edf5f2 100%);
  pointer-events: none;
}

.home-dates__mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(15 118 110 / 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  opacity: 0.55;
}

.home-dates__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: homeDatesOrb 14s ease-in-out infinite alternate;
}

.home-dates__orb--teal {
  top: -8%;
  left: -5%;
  width: min(22rem, 40vw);
  height: min(22rem, 40vw);
  background: rgb(20 184 166 / 0.35);
}

.home-dates__orb--amber {
  top: 10%;
  right: -8%;
  width: min(18rem, 32vw);
  height: min(18rem, 32vw);
  background: rgb(251 191 36 / 0.28);
  animation-delay: -4s;
}

.home-dates__orb--rose {
  bottom: -12%;
  left: 35%;
  width: min(16rem, 28vw);
  height: min(16rem, 28vw);
  background: rgb(244 63 94 / 0.18);
  animation-delay: -7s;
}

@keyframes homeDatesOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(12px, -16px) scale(1.06); }
}

.home-dates__rings {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: clamp(14rem, 26vw, 22rem);
  height: clamp(14rem, 26vw, 22rem);
  border: 1px solid rgb(15 118 110 / 0.15);
  border-radius: 50%;
}

.home-dates__rings::before,
.home-dates__rings::after {
  content: '';
  position: absolute;
  border: 1px solid rgb(15 118 110 / 0.1);
  border-radius: 50%;
}

.home-dates__rings::before {
  inset: 1.5rem;
}

.home-dates__rings::after {
  inset: 3rem;
  border-color: rgb(251 191 36 / 0.15);
}

.home-dates__dots-float {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgb(20 184 166 / 0.35) 2px, transparent 2px),
    radial-gradient(circle, rgb(251 191 36 / 0.4) 1.5px, transparent 1.5px);
  background-size: 120px 120px, 80px 80px;
  background-position: 10% 20%, 70% 60%;
  opacity: 0.4;
  animation: homeDatesDotsDrift 20s linear infinite;
}

@keyframes homeDatesDotsDrift {
  from { background-position: 10% 20%, 70% 60%; }
  to { background-position: 14% 24%, 66% 56%; }
}

.home-dates__inner {
  position: relative;
  z-index: 1;
}

.home-dates__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
}

.home-dates__header-text {
  max-width: 34rem;
}

.home-dates__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9f1239;
  background: rgb(255 255 255 / 0.7);
  border: 1px solid rgb(244 63 94 / 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgb(244 63 94 / 0.08);
}

.home-dates__title {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
}

.home-dates__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.home-dates__all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
}

.home-dates__all-link:hover {
  gap: 0.75rem;
  color: #0d9488;
}

/* Masaüstü grid — kaydırma yok, kesilme yok */
.home-dates__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
}

@media (max-width: 899px) {
  .home-dates:not(.home-dates--single) .home-dates__grid {
    display: none;
  }
}

.home-dates__slider {
  display: none;
  position: relative;
  z-index: 1;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 899px) {
  .home-dates:not(.home-dates--single) .home-dates__slider {
    display: grid;
  }
}

@media (max-width: 599px) {
  .home-dates__slider .home-dates__nav {
    display: none;
  }
}

.home-dates__slider .home-dates__dots {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
}

.home-dates__slides {
  display: flex;
  will-change: transform;
}

.home-dates__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 2px;
}

.home-dates__slide .home-dates__card {
  width: 100%;
  flex: none;
}

.home-dates__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #0f766e;
  cursor: pointer;
  background: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgb(15 118 110 / 0.12);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.home-dates__nav:hover:not(:disabled) {
  color: #fff;
  background: #0f766e;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgb(15 118 110 / 0.3);
}

.home-dates__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.home-dates__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.home-dates__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.home-dates__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  cursor: pointer;
  background: rgb(20 184 166 / 0.25);
  border: none;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s, width 0.2s;
}

.home-dates__dot.is-active {
  width: 1.75rem;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  border-radius: 999px;
}

.home-dates__dot:hover:not(.is-active) {
  background: rgb(20 184 166 / 0.5);
  transform: scale(1.15);
}

.home-dates__grid .home-dates__card,
.home-dates__slide .home-dates__card {
  width: 100%;
  flex: none;
}

.home-dates__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 10.5rem;
  padding: 1.4rem 1.3rem 1.15rem;
  overflow: hidden;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(255 255 255 / 0.8);
  border-radius: 1.15rem;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.9) inset,
    0 8px 32px rgb(15 23 42 / 0.07);
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}

.home-dates__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #14b8a6, #f59e0b);
  opacity: 0.65;
}

.home-dates__card-shine {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, rgb(255 255 255 / 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.home-dates__card-index {
  position: absolute;
  bottom: 0.5rem;
  right: 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: rgb(15 23 42 / 0.04);
  pointer-events: none;
}

.home-dates__card:hover {
  transform: translateY(-5px);
  border-color: rgb(20 184 166 / 0.35);
  box-shadow: 0 20px 48px rgb(15 118 110 / 0.14);
}

.home-dates__card--active {
  background: linear-gradient(155deg, #0f172a 0%, #1e3a5f 55%, #134e4a 100%);
  border-color: rgb(255 255 255 / 0.12);
  box-shadow:
    0 0 0 1px rgb(20 184 166 / 0.3),
    0 24px 56px rgb(15 23 42 / 0.28);
}

.home-dates__card--active::before {
  height: 4px;
  opacity: 1;
  background: linear-gradient(90deg, #fcd34d, #14b8a6);
}

.home-dates__card--active .home-dates__card-index {
  color: rgb(255 255 255 / 0.06);
}

.home-dates__card--active:hover {
  transform: translateY(-6px);
}

.home-dates__card--past {
  opacity: 0.72;
  background: rgb(248 250 252 / 0.95);
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.04);
}

.home-dates__card--past::before {
  opacity: 0.35;
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.home-dates__card--past .home-dates__day,
.home-dates__card--past .home-dates__card-title {
  color: #64748b;
}

.home-dates__card--past .home-dates__month {
  color: #94a3b8;
}

.home-dates__card--past:hover {
  transform: none;
  opacity: 0.85;
}

.home-dates__card-date {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.home-dates__day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.home-dates__card--active .home-dates__day {
  color: #fff;
}

.home-dates__month {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e11d48;
}

.home-dates__card-title {
  margin: 0 0 auto;
  padding-bottom: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
}

.home-dates__card--active .home-dates__card-title {
  color: #fff;
}

.home-dates__card-full {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.home-dates__card-full i {
  font-size: 0.65rem;
  opacity: 0.7;
}

.home-dates__card--active .home-dates__card-full {
  color: rgb(255 255 255 / 0.55);
}

.home-dates__card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #134e4a;
  background: #fcd34d;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgb(251 191 36 / 0.35);
}

.home-dates__card-badge-pulse {
  width: 6px;
  height: 6px;
  background: #0f766e;
  border-radius: 50%;
  animation: homeDatesPulse 1.5s ease infinite;
}

@keyframes homeDatesPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Kongre Kurulları */
.committees {
  position: relative;
  padding: 5rem 0 5.25rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgb(20 184 166 / 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgb(15 23 42 / 0.04) 0%, transparent 55%),
    linear-gradient(180deg, var(--surface-3) 0%, var(--surface-2) 42%, var(--surface-0) 100%);
}

.committees--page {
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
}

.committees__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.committees__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(15 118 110 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 118 110 / 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 15%, transparent 78%);
}

.committees__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
}

.committees__orb--teal {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: rgb(20 184 166 / 0.14);
}

.committees__orb--gold {
  width: 240px;
  height: 240px;
  bottom: 10%;
  left: -40px;
  background: rgb(245 158 11 / 0.1);
}

.committees__orb--navy {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 20%;
  background: rgb(15 23 42 / 0.07);
}

.committees__rings {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  transform: translateX(-50%);
  border: 1px solid rgb(20 184 166 / 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgb(20 184 166 / 0.03), 0 0 0 96px rgb(15 23 42 / 0.02);
}

.committees__inner {
  position: relative;
  z-index: 1;
}

.committees__header {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.committees__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgb(20 184 166 / 0.1);
  border: 1px solid rgb(20 184 166 / 0.18);
  border-radius: 999px;
}

.committees__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}

.committees__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
}

.committees__stats {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin-top: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.05);
  overflow: hidden;
}

.committees__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 7rem;
  padding: 0.85rem 1.35rem;
}

.committees__stat + .committees__stat {
  border-left: 1px solid var(--border-subtle);
}

.committees__stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.committees__stat-label {
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.committees__stat--accent .committees__stat-value {
  color: #0f766e;
}

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

.committees__panel {
  padding: 1.35rem 1.35rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.05);
  backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
  .committees__panel {
    padding: 1.5rem 1.75rem 1.65rem;
  }
}

.committees__group-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.committees__group-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.committees__group-index {
  flex-shrink: 0;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.committees__group-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.9rem;
  color: #0f766e;
  background: rgb(20 184 166 / 0.1);
  border: 1px solid rgb(20 184 166 / 0.16);
  border-radius: 0.55rem;
}

.committees__group-title {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.committees__group-count {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  padding: 0.3rem 0.65rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.committees__featured-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .committees__featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.committees__member-btn {
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.committees__featured-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.05rem;
  background: var(--chip-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.committees__member-btn.committees__featured-card:hover,
.committees__member-btn.committees__featured-card:focus-visible {
  background: var(--card-bg);
  border-color: rgb(20 184 166 / 0.28);
  box-shadow: 0 12px 28px rgb(15 23 42 / 0.07);
  transform: translateY(-2px);
  outline: none;
}

.committees__member-btn.committees__grid-card {
  position: relative;
  padding: 0.85rem 0.95rem;
  background: var(--chip-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.65rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.committees__member-btn.committees__grid-card:hover,
.committees__member-btn.committees__grid-card:focus-visible {
  background: var(--card-bg);
  border-color: rgb(20 184 166 / 0.22);
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.06);
  outline: none;
}

.committees__roster-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: var(--card-bg);
  border: 0;
  transition: background 0.2s ease;
}

.committees__roster-btn:hover,
.committees__roster-btn:focus-visible {
  background: #f0fdfa;
  outline: none;
}

.committees__profile-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}

.committees__profile-hint--compact {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(20 184 166 / 0.1);
  color: #0f766e;
}

.committees__avatar {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
}

.committees__avatar-img,
.committees__avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.committees__avatar-initials {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0f4c5c;
  background: #fff;
  border: 2px solid #cbd5e1;
}

.committees__avatar--photo .committees__avatar-img {
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0, 0 8px 20px rgb(15 23 42 / 0.08);
}

.committees__featured-body {
  min-width: 0;
  padding-top: 0.1rem;
}

.committees__name {
  margin: 0 0 0.35rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.committees__role {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #334155;
}

.committees__institution {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.committees__grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .committees__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .committees__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .committees__panel--grid .committees__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.committees__grid-card .committees__name {
  font-size: 0.9rem;
}

.committees__grid-card .committees__institution {
  margin-top: 0.15rem;
}

.committees__roster {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #e8edf3;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f8fafc;
}

@media (min-width: 640px) {
  .committees__roster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .committees__panel--pills .committees__roster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.committees__roster-item {
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #eef2f6;
}

.committees__roster-item:last-child {
  border-bottom: none;
}

@media (min-width: 640px) {
  .committees__roster-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .committees__roster-item:not(:nth-child(2n)) {
    border-right: 1px solid #eef2f6;
  }
}

.committees__roster-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-600);
}

.committees__roster-name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
}

.committees__more-hint {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.committees__footer {
  margin-top: 2.75rem;
  text-align: center;
}

.committees__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-800);
  border: 1px solid var(--brand-800);
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgb(13 74 50 / 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.committees__cta:hover {
  background: #0a3d28;
  transform: translateY(-1px);
}

/* Kongre Kurulları — ana sayfa */
.committees--home {
  padding: 4rem 0 4.25rem;
}

.committees--home .committees__header {
  margin-bottom: 2.75rem;
}

.committees--home .committees__orb--teal {
  width: 320px;
  height: 320px;
  top: -90px;
  right: -60px;
  opacity: 0.65;
}

.committees--home .committees__orb--gold {
  width: 220px;
  height: 220px;
  opacity: 0.5;
}

.committees__lead--home {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.committees__stats--home {
  margin-top: 1.75rem;
}

.committees__home-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.committees__home-leadership,
.committees__home-councils {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px) {
  .committees__home-leadership,
  .committees__home-councils {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.committees__home-leader-panel,
.committees__home-council {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  box-shadow: 0 14px 36px rgb(15 23 42 / 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.committees__home-leader-panel:hover,
.committees__home-council:hover {
  border-color: rgb(20 184 166 / 0.22);
  box-shadow: 0 20px 44px rgb(15 23 42 / 0.1);
  transform: translateY(-3px);
}

.committees__home-leader-head,
.committees__home-council-head {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.9rem;
  border-bottom: 1px solid #f1f5f9;
}

.committees__home-leader-panel--honor .committees__home-leader-head {
  background: linear-gradient(135deg, rgb(255 251 235 / 0.98) 0%, rgb(255 255 255 / 0) 82%);
}

.committees__home-leader-panel--presidents .committees__home-leader-head {
  background: linear-gradient(135deg, rgb(240 253 250 / 0.98) 0%, rgb(255 255 255 / 0) 82%);
}

.committees__home-council--scientific .committees__home-council-head {
  background: linear-gradient(135deg, rgb(239 246 255 / 0.98) 0%, rgb(255 255 255 / 0) 82%);
}

.committees__home-council--organizing .committees__home-council-head {
  background: linear-gradient(135deg, rgb(248 250 252 / 0.98) 0%, rgb(255 255 255 / 0) 82%);
}

.committees__home-leader-index,
.committees__home-council-index {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: rgb(15 23 42 / 0.12);
}

.committees__home-leader-icon,
.committees__home-council-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border-radius: 0.75rem;
  box-shadow: 0 10px 22px rgb(15 118 110 / 0.24);
}

.committees__home-leader-panel--honor .committees__home-leader-icon {
  background: linear-gradient(145deg, #b45309, #f59e0b);
  box-shadow: 0 10px 22px rgb(180 83 9 / 0.24);
}

.committees__home-council--scientific .committees__home-council-icon {
  background: linear-gradient(145deg, #0369a1, #0ea5e9);
  box-shadow: 0 10px 22px rgb(3 105 161 / 0.24);
}

.committees__home-council--organizing .committees__home-council-icon {
  background: linear-gradient(145deg, #475569, #64748b);
  box-shadow: 0 10px 22px rgb(71 85 105 / 0.22);
}

.committees__home-leader-title,
.committees__home-council-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.committees__home-leader-count,
.committees__home-council-count {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.committees__home-leader-grid {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem 1.15rem;
}

@media (min-width: 640px) {
  .committees__home-leader-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.committees__home-leader-panel .committees__featured-card {
  height: 100%;
  padding: 0.95rem;
}

.committees__home-leader-panel .committees__avatar {
  width: 4.5rem;
  height: 4.5rem;
}

.committees__home-leader-panel .committees__name {
  font-size: 0.9375rem;
}

.committees__home-leader-panel .committees__role {
  font-size: 0.75rem;
  line-height: 1.45;
}

.committees__home-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem 1.1rem 0.35rem;
}

@media (min-width: 640px) {
  .committees__home-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.committees__home-mosaic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.55rem 0.35rem 0.5rem;
  text-align: center;
  background: rgb(248 250 252 / 0.85);
  border: 1px solid rgb(226 232 240 / 0.95);
  border-radius: 0.85rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.committees__home-mosaic-item:hover,
.committees__home-mosaic-item:focus-visible {
  background: #fff;
  border-color: rgb(20 184 166 / 0.28);
  box-shadow: 0 10px 22px rgb(15 23 42 / 0.07);
  transform: translateY(-2px);
  outline: none;
}

.committees__home-mosaic-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #ecfdf5, #e2e8f0);
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgb(226 232 240 / 0.95);
}

.committees__home-mosaic-avatar--photo {
  background: #fff;
}

.committees__home-mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.committees__home-mosaic-initials {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f766e;
}

.committees__home-mosaic-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.committees__home-mosaic-note {
  margin: 0;
  padding: 0 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.committees__home-council-foot {
  margin-top: auto;
  padding: 0.75rem 1.1rem 1rem;
  border-top: 1px solid #f1f5f9;
}

.committees__home-council-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-800);
  text-decoration: none;
  background: #ecfdf5;
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 0.55rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.committees__home-council-link:hover {
  color: #fff;
  background: var(--brand-800);
}

.committees--home .committees__footer {
  margin-top: 2.75rem;
}

.committees--home .committees__cta {
  padding: 0.9rem 1.6rem;
  font-size: 0.9375rem;
}

.committees__home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, rgb(248 250 252 / 0.65) 100%);
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 1.15rem;
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.85) inset,
    0 18px 40px rgb(15 23 42 / 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.committees__home-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.45) 0%, transparent 42%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.committees__home-card:hover {
  border-color: rgb(20 184 166 / 0.24);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 0.95) inset,
    0 26px 52px rgb(15 23 42 / 0.11);
  transform: translateY(-4px);
}

.committees__home-card:hover::after {
  opacity: 1;
}

.committees__home-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #14b8a6, #0f766e);
  z-index: 2;
}

.committees__home-card--honor .committees__home-card-accent {
  background: linear-gradient(180deg, #fbbf24, #b45309);
}

.committees__home-card--presidents .committees__home-card-accent {
  background: linear-gradient(180deg, #2dd4bf, #0f766e);
}

.committees__home-card--scientific .committees__home-card-accent {
  background: linear-gradient(180deg, #38bdf8, #0369a1);
}

.committees__home-card--organizing .committees__home-card-accent {
  background: linear-gradient(180deg, #94a3b8, #475569);
}

.committees__home-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 0.65rem 0.75rem;
  padding: 1.05rem 1.05rem 0.9rem 1.15rem;
  border-bottom: 1px solid rgb(241 245 249 / 0.95);
}

.committees__home-card--honor .committees__home-card-top {
  background: linear-gradient(135deg, rgb(255 251 235 / 0.98) 0%, rgb(255 255 255 / 0) 78%);
}

.committees__home-card--presidents .committees__home-card-top {
  background: linear-gradient(135deg, rgb(240 253 250 / 0.98) 0%, rgb(255 255 255 / 0) 78%);
}

.committees__home-card--scientific .committees__home-card-top {
  background: linear-gradient(135deg, rgb(239 246 255 / 0.98) 0%, rgb(255 255 255 / 0) 78%);
}

.committees__home-card--organizing .committees__home-card-top {
  background: linear-gradient(135deg, rgb(248 250 252 / 0.98) 0%, rgb(255 255 255 / 0) 78%);
}

.committees__home-card-index {
  grid-row: span 2;
  align-self: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: rgb(15 23 42 / 0.12);
}

.committees__home-card-watermark {
  position: absolute;
  top: 0.15rem;
  right: 0.35rem;
  font-size: 4.25rem;
  line-height: 1;
  color: rgb(15 23 42 / 0.035);
  pointer-events: none;
}

.committees__home-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border-radius: 0.75rem;
  box-shadow: 0 10px 22px rgb(15 118 110 / 0.28);
}

.committees__home-card--honor .committees__home-card-icon {
  background: linear-gradient(145deg, #b45309, #f59e0b);
  box-shadow: 0 10px 22px rgb(180 83 9 / 0.28);
}

.committees__home-card--scientific .committees__home-card-icon {
  background: linear-gradient(145deg, #0369a1, #0ea5e9);
  box-shadow: 0 10px 22px rgb(3 105 161 / 0.28);
}

.committees__home-card--organizing .committees__home-card-icon {
  background: linear-gradient(145deg, #475569, #64748b);
  box-shadow: 0 10px 22px rgb(71 85 105 / 0.24);
}

.committees__home-card-meta {
  min-width: 0;
  padding-top: 0.1rem;
}

.committees__home-card-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.committees__home-card-badge {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  background: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(226 232 240 / 0.95);
  border-radius: 999px;
}

.committees__home-card-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0.85rem 1rem 0.55rem 1.15rem;
}

.committees__home-card-body--spotlight {
  padding-top: 1rem;
}

.committees__home-spotlights {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.committees__home-spotlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.85rem 0.65rem 0.75rem;
  text-align: center;
  background: rgb(255 255 255 / 0.82);
  border: 1px solid rgb(226 232 240 / 0.9);
  border-radius: 0.85rem;
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.committees__home-spotlight:hover,
.committees__home-spotlight:focus-visible {
  background: #fff;
  border-color: rgb(20 184 166 / 0.28);
  box-shadow: 0 14px 28px rgb(15 23 42 / 0.08);
  transform: translateY(-2px);
  outline: none;
}

.committees__home-spotlight-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #ecfdf5, #e2e8f0);
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgb(226 232 240 / 0.95),
    0 12px 24px rgb(15 23 42 / 0.08);
}

.committees__home-spotlight-avatar--photo {
  background: #fff;
}

.committees__home-spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.committees__home-spotlight-initials {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f766e;
}

.committees__home-spotlight-name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.committees__home-spotlight-sub {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #64748b;
}

.committees__home-spotlight-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}

.committees__home-directory {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1100px) {
  .committees__home-card--scientific .committees__home-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.committees__home-directory-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  padding: 0.42rem 0.5rem;
  text-align: left;
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(241 245 249 / 0.95);
  border-radius: 0.6rem;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.committees__home-directory-item:hover,
.committees__home-directory-item:focus-visible {
  background: #fff;
  border-color: rgb(203 213 225 / 0.95);
  transform: translateY(-1px);
  outline: none;
}

.committees__home-directory-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  overflow: hidden;
  border-radius: 0.45rem;
  background: linear-gradient(145deg, #ecfdf5, #e2e8f0);
}

.committees__home-directory-avatar--photo {
  background: #fff;
}

.committees__home-directory-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.committees__home-directory-initials {
  font-size: 0.55rem;
  font-weight: 800;
  color: #0f766e;
}

.committees__home-directory-name {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

.committees__home-more-note {
  margin: 0.55rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.committees__home-card-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding: 0.75rem 1rem 0.9rem 1.15rem;
  border-top: 1px solid rgb(241 245 249 / 0.95);
  background: linear-gradient(180deg, rgb(255 255 255 / 0) 0%, rgb(248 250 252 / 0.92) 100%);
}

.committees__home-foot-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.committees__home-foot-ratio {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  white-space: nowrap;
}

.committees__home-stack {
  display: flex;
  align-items: center;
}

.committees__home-stack-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: -0.38rem;
  font-size: 0.55rem;
  font-weight: 800;
  color: #0f766e;
  background: #ecfdf5;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgb(15 23 42 / 0.08);
}

.committees__home-stack-avatar:first-child {
  margin-left: 0;
}

.committees__home-stack-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.7rem;
  margin-left: -0.38rem;
  padding: 0 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgb(15 118 110 / 0.25);
}

.committees__home-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.35rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f766e;
  text-decoration: none;
  background: rgb(236 253 245 / 0.85);
  border: 1px solid rgb(167 243 208 / 0.65);
  border-radius: 999px;
  transition: color 0.18s ease, gap 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.committees__home-card-link:hover {
  color: #0d9488;
  gap: 0.5rem;
  background: #ecfdf5;
  border-color: rgb(110 231 183 / 0.85);
}

.committees--home .committees__footer {
  margin-top: 1.85rem;
}

.committees--home .committees__cta {
  padding: 0.75rem 1.35rem;
  font-size: 0.875rem;
  box-shadow: 0 12px 28px rgb(13 74 50 / 0.22);
}

/* Konuşmacılar — ana sayfa özet */
.home-speakers-teaser {
  padding: 2.75rem 0 3rem;
  background: linear-gradient(180deg, #faf8f5 0%, var(--surface-0) 100%);
}

.home-speakers-teaser__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.home-speakers-teaser__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.home-speakers-teaser__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  white-space: nowrap;
}

.home-speakers-teaser__link:hover {
  color: var(--brand-800);
}

.home-speakers-teaser__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
  .home-speakers-teaser__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-speakers-teaser__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid #f0d4d4;
  border-radius: 0.85rem;
  box-shadow: 0 1px 0 rgb(15 23 42 / 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-speakers-teaser__card:hover {
  border-color: #e8b4b4;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
}

.home-speakers-teaser__photo {
  flex-shrink: 0;
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgb(240 212 212 / 0.9), 0 6px 16px rgb(240 180 180 / 0.35);
}

.home-speakers-teaser__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4.25rem;
  height: 4.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f766e;
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #f0d4d4;
  border-radius: 50%;
}

.home-speakers-teaser__body {
  min-width: 0;
}

.home-speakers-teaser__name,
.home-speakers-teaser__name-btn {
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  background: none;
  border: 0;
}

.home-speakers-teaser__name-btn {
  cursor: pointer;
}

.home-speakers-teaser__name-btn:hover .home-speakers-teaser__name {
  color: #0f766e;
}

.home-speakers-teaser__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.home-speakers-teaser__role {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

/* Kurul üyesi özgeçmiş modal */
body.committee-modal-open {
  overflow: hidden;
}

.committee-modal[hidden] {
  display: none !important;
}

.committee-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.committee-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.55);
  backdrop-filter: blur(4px);
}

.committee-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 1.125rem;
  box-shadow: 0 28px 60px rgb(15 23 42 / 0.22);
}

.committee-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  cursor: pointer;
}

.committee-modal__close:hover {
  color: var(--text-heading);
  border-color: var(--card-border);
}

.committee-modal__hero {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem 1.5rem 1.15rem;
  background: linear-gradient(135deg, var(--surface-0) 0%, rgb(20 184 166 / 0.12) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.committee-modal__avatar {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
}

.committee-modal__avatar-img,
.committee-modal__avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
}

.committee-modal__avatar-initials {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f4c5c;
  background: #fff;
  border: 2px solid #cbd5e1;
}

.committee-modal__avatar-img {
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0;
}

.committee-modal__intro {
  min-width: 0;
  padding-right: 2rem;
}

.committee-modal__committee {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
}

.committee-modal__name {
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-heading);
}

.committee-modal__role {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-body);
}

.committee-modal__institution {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.committee-modal__institution[hidden],
.committee-modal__role[hidden],
.committee-modal__committee[hidden],
.committee-modal__links[hidden] {
  display: none !important;
}

.committee-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.committee-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  background: var(--card-bg);
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 999px;
}

.committee-modal__body {
  padding: 0 1.5rem 1.5rem;
}

.committee-modal__bio-section {
  margin-top: 0.25rem;
}

.committee-modal__bio-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border-subtle);
}

.committee-modal__bio-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.9rem;
  color: #0f766e;
  background: rgb(20 184 166 / 0.12);
  border-radius: 0.5rem;
}

.committee-modal__bio-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.committee-modal__bio-panel {
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, var(--surface-0) 0%, var(--card-bg) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
}

.committee-modal__bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
}

.committee-modal__bio p {
  margin: 0 0 0.75rem;
}

.committee-modal__bio p:last-child {
  margin-bottom: 0;
}

.bio-content {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
}

.bio-content__lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-heading);
}

.bio-content__paragraph {
  margin: 0 0 0.85rem;
  text-align: justify;
  hyphens: auto;
}

.bio-content__paragraph:last-child,
.bio-content p:last-child {
  margin-bottom: 0;
}

.bio-content__heading {
  margin: 1.1rem 0 0.55rem;
  padding-left: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
  border-left: 3px solid rgb(20 184 166 / 0.55);
}

.bio-content__heading:first-child {
  margin-top: 0;
}

.bio-content__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.bio-content__list li {
  position: relative;
  margin: 0 0 0.5rem;
  padding-left: 1.35rem;
}

.bio-content__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: #14b8a6;
  border-radius: 50%;
  transform: translateY(-50%);
}

.bio-content--rich p {
  margin: 0 0 0.85rem;
  text-align: justify;
}

.bio-content--rich ul,
.bio-content--rich ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.bio-content--rich li {
  margin-bottom: 0.4rem;
}

.bio-content--rich strong,
.bio-content--rich b {
  font-weight: 700;
  color: var(--text-heading);
}

.bio-content a {
  font-weight: 600;
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.committee-modal__empty {
  margin: 1.15rem 0 0;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  font-style: italic;
  background: var(--surface-0);
  border: 1px dashed var(--border-subtle);
  border-radius: 0.75rem;
}

@media (max-width: 560px) {
  .committee-modal__hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .committee-modal__intro {
    padding-right: 0;
  }

  .committee-modal__links {
    justify-content: center;
  }
}

/* Ana sayfa — Paneller / Konuşmacılar / Atölyeler */
.home-panels,
.home-speakers,
.home-workshops {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.home-panels {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgb(20 184 166 / 0.09) 0%, transparent 58%),
    linear-gradient(180deg, var(--surface-0) 0%, var(--surface-1) 55%, var(--surface-2) 100%);
}

.home-panels--page {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-speakers {
  background:
    radial-gradient(ellipse 70% 45% at 80% 0%, rgb(99 102 241 / 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 100%, rgb(20 184 166 / 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 100%);
}

.home-workshops {
  background:
    radial-gradient(ellipse 75% 55% at 50% 0%, rgb(20 184 166 / 0.1) 0%, transparent 58%),
    linear-gradient(180deg, var(--surface-2) 0%, #edf3f1 50%, var(--surface-1) 100%);
  color: #1e293b;
  padding-bottom: 4rem;
  margin-bottom: 0;
}

.home-workshops__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
}

.home-workshops__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 15%, rgb(20 184 166 / 0.1) 0%, transparent 55%),
    linear-gradient(180deg, rgb(248 250 252 / 0.88) 0%, rgb(241 245 249 / 0.92) 100%);
}

.home-workshops--page {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.home-panels__bg,
.home-workshops__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-panels__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(15 118 110 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 118 110 / 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, #000 18%, transparent 78%);
}

.home-panels__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.home-panels__orb--teal {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -60px;
  background: rgb(20 184 166 / 0.12);
}

.home-panels__orb--navy {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: 5%;
  background: rgb(15 23 42 / 0.06);
}

.home-panels__rings {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 1px solid rgb(20 184 166 / 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgb(20 184 166 / 0.03);
}

.home-workshops__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(15 118 110 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 118 110 / 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}

.home-workshops__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.home-workshops__orb--amber {
  width: 380px;
  height: 380px;
  top: -100px;
  right: -60px;
  background: rgb(20 184 166 / 0.14);
}

.home-workshops__orb--coral {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -30px;
  background: rgb(15 118 110 / 0.1);
}

.home-workshops__stripe {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgb(15 23 42 / 0.03) 100%);
  pointer-events: none;
}

.home-panels__inner,
.home-speakers__inner,
.home-workshops__inner {
  position: relative;
  z-index: 3;
}

.home-panels__header {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.home-panels__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.04);
}

.home-panels__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #0f172a;
}

.home-panels__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
}

.home-panels__stats {
  display: inline-flex;
  margin-top: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.06);
  overflow: hidden;
}

.home-panels__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 6.5rem;
  padding: 0.8rem 1.25rem;
}

.home-panels__stat + .home-panels__stat {
  border-left: 1px solid var(--border-subtle);
}

.home-panels__stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.home-panels__stat-label {
  margin-top: 0.2rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.home-panels__grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 900px) {
  .home-panels__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .home-panels__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__card-head {
    padding: 0.95rem 1rem 0.85rem;
    gap: 0.65rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__card-icon {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.85rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__card-title {
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__card-index {
    font-size: 2rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__card-body {
    padding: 0.85rem 1rem 1rem;
    gap: 0.7rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__chair {
    padding: 0.7rem 0.8rem;
    gap: 0.65rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__avatar {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.72rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__person-name {
    font-size: 0.8125rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__person-role {
    font-size: 0.72rem;
  }

  .home-panels:not(.home-panels--page) .home-panels__profile-hint {
    font-size: 0.65rem;
  }
}

.home-panels__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  box-shadow: 0 18px 44px rgb(15 23 42 / 0.1);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-panels__card:hover {
  transform: translateY(-5px);
  border-color: rgb(20 184 166 / 0.28);
  box-shadow: 0 26px 52px rgb(15 23 42 / 0.11);
}

.home-panels__card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-800), var(--primary-500), #5eead4);
}

.home-panels__card-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgb(15 23 42 / 0.05);
  pointer-events: none;
  user-select: none;
}

.home-panels__card-head {
  display: flex;
  gap: 0.9rem;
  padding: 1.15rem 1.25rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.home-panels__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.95rem;
  color: #0f766e;
  background: rgb(20 184 166 / 0.12);
  border: 1px solid rgb(20 184 166 / 0.18);
  border-radius: 0.65rem;
}

.home-panels__card-head-text {
  min-width: 0;
}

.home-panels__card-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.home-panels__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.home-panels__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.home-panels__chip i {
  color: #0f766e;
  font-size: 0.7rem;
}

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

.home-panels__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f766e;
}

.home-panels__chair {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 55%, #f8fafc 100%);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 0.8rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.8);
}

.home-panels__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #0f4c5c;
  background: #fff;
  border: 2px solid rgb(20 184 166 / 0.25);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgb(15 118 110 / 0.12);
}

.home-panels__avatar--photo {
  display: block;
  object-fit: cover;
  padding: 0;
  font-size: 0;
  background: #0f172a;
}

.home-panels__person-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.home-panels__person-role {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.home-panels__speakers {
  flex: 1;
  padding: 0.85rem 0.95rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 0.8rem;
}

.home-panels__speakers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.home-panels__speakers-head .home-panels__label {
  margin-bottom: 0;
}

.home-panels__speaker-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f766e;
  background: #fff;
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 999px;
}

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

.home-panels__speaker-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-top: 1px solid #e8edf3;
}

.home-panels__speaker-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.home-panels__speaker-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 0.45rem;
  background: var(--primary-600);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgb(20 184 166 / 0.15);
}

.home-panels__topics {
  margin-bottom: 0.65rem;
}

.home-panels__label--inline {
  margin-bottom: 0.4rem;
}

.home-panels__topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-panels__topic {
  display: inline-flex;
  padding: 0.28rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f4c5c;
  background: rgb(20 184 166 / 0.1);
  border: 1px solid rgb(20 184 166 / 0.18);
  border-radius: 999px;
}

.home-panels__person-btn {
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.home-panels__person-btn.home-panels__chair {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 55%, #f8fafc 100%);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 0.8rem;
}

.home-panels__person-btn.home-panels__chair:hover,
.home-panels__person-btn.home-panels__chair:focus-visible {
  background: #fff;
  border-color: rgb(20 184 166 / 0.35);
  outline: none;
  box-shadow: 0 8px 20px rgb(15 118 110 / 0.1);
}

.home-panels__profile-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}

.home-panels__speaker-btn {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.35rem;
  border-radius: 0.5rem;
}

.home-panels__speaker-btn:hover,
.home-panels__speaker-btn:focus-visible {
  background: rgb(20 184 166 / 0.06);
  outline: none;
}

.home-panels__speaker-chevron {
  margin-left: auto;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: #94a3b8;
}

.home-panels__speaker-btn:hover .home-panels__speaker-chevron {
  color: #0f766e;
}

.home-panels__footer {
  margin-top: 2.75rem;
  text-align: center;
}

.home-panels__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-800);
  border-radius: 0.5rem;
  box-shadow: 0 10px 24px rgb(13 74 50 / 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-panels__cta:hover {
  background: #0a3d28;
  transform: translateY(-2px);
}

.home-panels__carousel .card-carousel__nav {
  color: var(--brand-800);
  border-color: rgb(13 74 50 / 0.25);
  box-shadow: 0 4px 16px rgb(13 74 50 / 0.12);
}

.home-panels__carousel .card-carousel__nav:hover:not(:disabled) {
  box-shadow: 0 8px 20px rgb(13 74 50 / 0.16);
}

.home-panels__carousel.card-carousel--autoplay .card-carousel__viewport::after {
  background: linear-gradient(90deg, rgb(13 74 50 / 0.12), rgb(20 184 166 / 0.5), rgb(13 74 50 / 0.12));
  background-size: 200% 100%;
}

@media (min-width: 992px) {
  .home-panels__carousel.card-carousel--static .card-carousel__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.home-panels__card--home.home-panels__card--carousel {
  border-radius: 0.875rem;
  box-shadow: 0 6px 20px rgb(15 23 42 / 0.06);
}

.home-panels__card--home.home-panels__card--carousel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgb(15 23 42 / 0.09);
}

.home-panels__card--carousel .home-panels__card-accent {
  height: 3px;
}

.home-panels__card-media {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.home-panels__card--carousel .home-panels__card-media {
  line-height: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.home-panels__poster-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  line-height: 0;
  border: none;
  cursor: zoom-in;
  background: #fff;
}

.home-panels__poster-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  vertical-align: top;
}

.home-panels__poster-zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgb(15 23 42 / 0.82) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.home-panels__poster-btn:hover .home-panels__poster-zoom,
.home-panels__poster-btn:focus-visible .home-panels__poster-zoom {
  opacity: 1;
}

.home-panels__poster-btn:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: -2px;
}

.home-panels__poster-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  font-size: 1.75rem;
  color: rgb(13 74 50 / 0.35);
  background: linear-gradient(135deg, #ecfdf5 0%, #e2e8f0 100%);
}

.home-panels__card-banner--carousel {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.55) 0%, rgb(15 23 42 / 0.08) 55%, transparent 100%);
  pointer-events: none;
}

.home-panels__card-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgb(255 255 255 / 0.92);
}

.home-panels__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgb(255 255 255 / 0.18);
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.home-panels__badge--speakers i {
  font-size: 0.55rem;
}

.home-panels__card-body--carousel {
  gap: 0.55rem;
  padding: 0.85rem 0.95rem 0.65rem;
}

.home-panels__card-title--carousel {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.35;
}

.home-panels__topic-list--carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-panels__topic-list--carousel .home-panels__topic {
  margin: 0;
  padding: 0.2rem 0.45rem;
  font-size: 0.625rem;
}

.home-panels__topic--more {
  color: #64748b;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.home-panels__carousel-chair {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #475569;
}

.home-panels__carousel-chair-label {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.home-panels__meta--carousel {
  margin-top: 0.15rem;
}

.home-panels__meta--carousel .home-panels__chip {
  padding: 0.2rem 0.45rem;
  font-size: 0.625rem;
}

.home-panels__card-foot {
  margin-top: auto;
  padding: 0 0.95rem 0.85rem;
}

.home-panels__foot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-800);
  text-decoration: none;
  background: #ecfdf5;
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 0.45rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.home-panels__foot-link:hover {
  color: #fff;
  background: var(--brand-800);
}

/* Ana sayfa — Atölyeler (site teal paleti) */
.home-workshops__header {
  max-width: 44rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.home-workshops__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  margin-bottom: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--card-bg);
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.05);
}

.home-workshops__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
}

.home-workshops__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
}

.home-workshops__stats {
  display: inline-flex;
  margin-top: 1.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.06);
}

.home-workshops__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 6.5rem;
  padding: 0.85rem 1.25rem;
}

.home-workshops__stat + .home-workshops__stat {
  border-left: 1px solid var(--border-subtle);
}

.home-workshops__stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.home-workshops__stat-label {
  margin-top: 0.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #78716c;
}

.home-workshops__stat--highlight .home-workshops__stat-value {
  color: #0d9488;
}

.home-workshops__grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .home-workshops__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .home-workshops__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.home-workshops__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-workshops__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgb(15 23 42 / 0.12);
}

.home-workshops__card-banner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.78) 0%, rgb(15 23 42 / 0.35) 72%, transparent 100%);
  pointer-events: none;
}

.home-workshops__card--almost .home-workshops__card-banner {
  background: linear-gradient(180deg, rgb(120 53 15 / 0.82) 0%, rgb(120 53 15 / 0.38) 72%, transparent 100%);
}

.home-workshops__card--full .home-workshops__card-banner {
  background: linear-gradient(180deg, rgb(127 29 29 / 0.82) 0%, rgb(127 29 29 / 0.38) 72%, transparent 100%);
}

.home-workshops__card-media {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.home-workshops__poster-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
  line-height: 0;
  border: none;
  cursor: zoom-in;
  background: #fff;
}

.home-workshops__poster-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.home-workshops__poster-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.home-workshops__poster-zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgb(15 23 42 / 0.82) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.home-workshops__poster-btn:hover .home-workshops__poster-zoom,
.home-workshops__poster-btn:focus-visible .home-workshops__poster-zoom {
  opacity: 1;
}

.home-workshops__poster-btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
}

.home-workshops__poster-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  font-size: 2.25rem;
  color: rgb(15 118 110 / 0.35);
  background: linear-gradient(135deg, #ecfdf5 0%, #e2e8f0 100%);
}

.home-workshops__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 0.85rem;
}

.home-workshops__card-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.home-workshops__card-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgb(255 255 255 / 0.85);
}

.home-workshops__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgb(0 0 0 / 0.2);
  border-radius: 999px;
}

.home-workshops__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 8px #86efac;
  animation: workshopPulse 1.8s ease infinite;
}

.home-workshops__card--almost .home-workshops__badge-dot {
  background: #fde68a;
  box-shadow: 0 0 8px #fde68a;
}

.home-workshops__card--full .home-workshops__badge-dot {
  background: #fca5a5;
  box-shadow: none;
  animation: none;
}

@keyframes workshopPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.home-workshops__card-main {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.15rem 0.85rem;
}

.home-workshops__ring-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 5.5rem;
}

.home-workshops__ring {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: conic-gradient(#14b8a6 0 var(--fill, 0%), #e2e8f0 var(--fill, 0%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgb(20 184 166 / 0.2);
}

.home-workshops__card--almost .home-workshops__ring {
  background: conic-gradient(#f59e0b 0 var(--fill), #e2e8f0 var(--fill) 100%);
}

.home-workshops__card--full .home-workshops__ring {
  background: conic-gradient(#dc2626 0 var(--fill), #e2e8f0 var(--fill) 100%);
}

.home-workshops__ring-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: #fff;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.1;
}

.home-workshops__ring-inner strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}

.home-workshops__ring-caption {
  margin-top: 0.4rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766e;
  text-align: center;
}

.home-workshops__card--almost .home-workshops__ring-caption {
  color: #b45309;
}

.home-workshops__card-content {
  min-width: 0;
  flex: 1;
}

.home-workshops__card-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.home-workshops__card-desc {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.home-workshops__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
}

.home-workshops__trainer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 0.65rem;
}

.home-workshops__trainer-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0f766e;
  background: linear-gradient(135deg, #ecfdf5, #ccfbf1);
  border-radius: 0.5rem;
}

.home-workshops__trainer-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.home-workshops__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.home-workshops__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
}

.home-workshops__chip i {
  color: #0d9488;
  font-size: 0.7rem;
}

.home-workshops__chip--online {
  color: #0369a1;
  background: #e0f2fe;
}

.home-workshops__chip--capacity {
  font-weight: 700;
}

.home-workshops__chip--capacity.home-workshops__chip--open {
  color: #0f766e;
  background: #ecfdf5;
}

.home-workshops__chip--capacity.home-workshops__chip--almost {
  color: #b45309;
  background: #fffbeb;
}

.home-workshops__chip--capacity.home-workshops__chip--full {
  color: #b91c1c;
  background: #fef2f2;
}

.home-workshops__card-foot {
  margin-top: auto;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-top: 1px dashed #e2e8f0;
}

.home-workshops__foot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-800);
  border-radius: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-workshops__foot-link:hover {
  background: #0a3d28;
  transform: translateY(-1px);
}

.home-workshops__foot-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
}

.home-workshops__foot-note--full {
  color: #b91c1c;
  background: #fef2f2;
}

.home-workshops__footer {
  margin-top: 2.75rem;
  text-align: center;
}

.home-workshops__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-800);
  border-radius: 0.5rem;
  box-shadow: 0 10px 24px rgb(13 74 50 / 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-workshops__cta:hover {
  background: #0a3d28;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .home-workshops__trainer {
    text-align: left;
  }

  .home-workshops__meta {
    justify-content: flex-start;
  }
}

/* Ana sayfa — atölye kartları (afiş tam genişlik) */
.home-workshops:not(.home-workshops--page) .home-workshops__header {
  margin-bottom: 1.75rem;
}

.home-workshops:not(.home-workshops--page) .home-workshops__lead {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.home-workshops:not(.home-workshops--page) .home-workshops__stats {
  margin-top: 1.15rem;
}

.home-workshops:not(.home-workshops--page) .home-workshops__grid {
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

/* Ana sayfa — atölye kaydırıcı */
.card-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}

.card-carousel__viewport {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.card-carousel--autoplay .card-carousel__viewport::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, rgb(15 118 110 / 0.15), rgb(15 118 110 / 0.55), rgb(15 118 110 / 0.15));
  background-size: 200% 100%;
  animation: cardCarouselProgress var(--carousel-autoplay-ms, 4s) linear infinite;
  pointer-events: none;
}

.home-speakers__carousel.card-carousel--autoplay .card-carousel__viewport::after {
  background: linear-gradient(90deg, rgb(91 33 182 / 0.12), rgb(91 33 182 / 0.5), rgb(91 33 182 / 0.12));
  background-size: 200% 100%;
}

@keyframes cardCarouselProgress {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-carousel--autoplay .card-carousel__viewport::after {
    display: none;
  }
}

.card-carousel--paused.card-carousel--autoplay .card-carousel__viewport::after {
  animation-play-state: paused;
}

.card-carousel__track {
  display: flex;
  gap: 0.85rem;
  will-change: transform;
}

.card-carousel__slide {
  flex-shrink: 0;
  min-width: 0;
}

.card-carousel__slide .home-workshops__card,
.card-carousel__slide .home-speakers__card,
.card-carousel__slide .home-panels__card--carousel {
  height: 100%;
}

.card-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: #0f766e;
  cursor: pointer;
  background: rgb(255 255 255 / 0.94);
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgb(15 118 110 / 0.12);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.card-carousel__nav:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgb(15 118 110 / 0.16);
}

.card-carousel__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.card-carousel--static {
  grid-template-columns: 1fr;
}

.card-carousel--static .card-carousel__nav {
  display: none;
}

.card-carousel--static .card-carousel__viewport {
  overflow: visible;
}

.card-carousel--static .card-carousel__track {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  transform: none !important;
}

@media (min-width: 640px) {
  .card-carousel--static .card-carousel__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .card-carousel--static .card-carousel__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.card-carousel--static .card-carousel__slide {
  width: auto !important;
  flex: none !important;
}

@media (max-width: 639px) {
  .card-carousel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card-carousel__nav {
    display: none;
  }
}

@media (min-width: 640px) and (max-width: 1119px) {
  .card-carousel__nav {
    width: 2.35rem;
    height: 2.35rem;
  }
}

@media (min-width: 640px) {
  .home-workshops:not(.home-workshops--page) .home-workshops__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .home-workshops:not(.home-workshops--page) .home-workshops__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.home-workshops__card--home {
  border-radius: 0.875rem;
  box-shadow: 0 6px 20px rgb(15 23 42 / 0.06);
}

.home-workshops__card--home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgb(15 23 42 / 0.09);
}

.home-workshops__card--home .home-workshops__card-media {
  height: auto;
  min-height: 0;
  padding: 0;
  line-height: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.home-workshops__card--home .home-workshops__poster-btn {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  line-height: 0;
  background: #fff;
}

.home-workshops__card--home .home-workshops__poster-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: unset;
  border-radius: 0;
  box-shadow: none;
  vertical-align: top;
}

.home-workshops__card--home .home-workshops__poster-placeholder {
  width: 100%;
  min-height: 10rem;
  height: auto;
  font-size: 1.75rem;
}

.home-workshops__card--home .home-workshops__card-banner {
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.55) 0%, rgb(15 23 42 / 0.08) 55%, transparent 100%);
}

.home-workshops__card--home .home-workshops__card-body {
  gap: 0.38rem;
  padding: 0.7rem 0.8rem 0.55rem;
}

.home-workshops__card-trainer {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: #64748b;
}

.home-workshops__card--home .home-workshops__card-trainer .home-workshops__trainer-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.52rem;
  font-weight: 800;
  color: #0f766e;
  background: linear-gradient(135deg, #ecfdf5, #ccfbf1);
  border-radius: 0.38rem;
}

.home-workshops__card--home .home-workshops__card-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 0.875rem;
  line-height: 1.33;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-workshops__card--home .home-workshops__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.home-workshops__card--home .home-workshops__chip {
  padding: 0.2rem 0.4rem;
  font-size: 0.625rem;
  line-height: 1.3;
}

.home-workshops__card--home .home-workshops__card-foot {
  padding: 0.48rem 0.75rem;
}

.home-workshops__card--home .home-workshops__foot-link {
  padding: 0.42rem 0.55rem;
  font-size: 0.75rem;
}

.home-workshops--page .home-workshops__card-media {
  aspect-ratio: auto;
  min-height: auto;
  padding: 0;
}

.home-workshops--page .home-workshops__poster-btn {
  display: block;
  min-height: auto;
}

.home-workshops--page .home-workshops__poster-img {
  width: 100%;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
}

.home-workshops--page .home-workshops__poster-frame {
  display: block;
  height: auto;
  padding: 0;
}

/* Ana sayfa — Konuşmacılar */
.home-speakers__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-speakers__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(15 118 110 / 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 118 110 / 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 15%, transparent 75%);
}

.home-speakers__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.home-speakers__orb--teal {
  width: 300px;
  height: 300px;
  top: -80px;
  right: 5%;
  background: rgb(20 184 166 / 0.14);
}

.home-speakers__orb--violet {
  width: 240px;
  height: 240px;
  bottom: 0;
  left: -40px;
  background: rgb(99 102 241 / 0.08);
}

.home-speakers__dots {
  position: absolute;
  top: 12%;
  left: 6%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgb(20 184 166 / 0.2) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}

.home-speakers__header {
  max-width: 44rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.home-speakers__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5b21b6;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(139 92 246 / 0.22);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.04);
}

.home-speakers__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: #0f172a;
}

.home-speakers__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
}

.home-speakers__stats {
  display: inline-flex;
  margin-top: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.06);
  overflow: hidden;
}

.home-speakers__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 6.5rem;
  padding: 0.8rem 1.25rem;
}

.home-speakers__stat + .home-speakers__stat {
  border-left: 1px solid var(--border-subtle);
}

.home-speakers__stat--accent .home-speakers__stat-value {
  color: #b45309;
}

.home-speakers__stat--accent .home-speakers__stat-label {
  color: #d97706;
}

.home-speakers__stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.home-speakers__stat-label {
  margin-top: 0.2rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
}

.home-speakers__lead {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.home-speakers__carousel .card-carousel__nav {
  color: #5b21b6;
  border-color: rgb(139 92 246 / 0.28);
  box-shadow: 0 4px 16px rgb(91 33 182 / 0.1);
}

.home-speakers__carousel .card-carousel__nav:hover:not(:disabled) {
  box-shadow: 0 8px 20px rgb(91 33 182 / 0.14);
}

/* Ana sayfa — konuşmacı kartları (atölye düzeni) */
.home-speakers__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-speakers__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgb(15 23 42 / 0.12);
}

.home-speakers__card--home {
  border-radius: 0.875rem;
  box-shadow: 0 6px 20px rgb(15 23 42 / 0.06);
}

.home-speakers__card--home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgb(15 23 42 / 0.09);
}

.home-speakers__card-banner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.78) 0%, rgb(15 23 42 / 0.35) 72%, transparent 100%);
  pointer-events: none;
}

.home-speakers__card--keynote .home-speakers__card-banner {
  background: linear-gradient(180deg, rgb(120 53 15 / 0.72) 0%, rgb(120 53 15 / 0.28) 72%, transparent 100%);
}

.home-speakers__card-media {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.home-speakers__poster-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 0;
  line-height: 0;
  border: none;
  cursor: zoom-in;
  background: #fff;
}

.home-speakers__poster-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.home-speakers__poster-zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgb(15 23 42 / 0.82) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.home-speakers__poster-btn:hover .home-speakers__poster-zoom,
.home-speakers__poster-btn:focus-visible .home-speakers__poster-zoom {
  opacity: 1;
}

.home-speakers__poster-btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
}

.home-speakers__poster-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  font-size: 2.25rem;
  color: rgb(91 33 182 / 0.35);
  background: linear-gradient(135deg, #f5f3ff 0%, #e2e8f0 100%);
}

.home-speakers__poster-initials {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-speakers__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.15rem 1.15rem 0.85rem;
}

.home-speakers__card-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgb(255 255 255 / 0.85);
}

.home-speakers__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgb(0 0 0 / 0.2);
  border-radius: 999px;
}

.home-speakers__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fde68a;
  box-shadow: 0 0 8px #fde68a;
  animation: workshopPulse 1.8s ease infinite;
}

.home-speakers__card--home .home-speakers__card-media {
  height: auto;
  min-height: 0;
  padding: 0;
  line-height: 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.home-speakers__card--home .home-speakers__poster-btn {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  line-height: 0;
  background: #fff;
}

.home-speakers__card--home .home-speakers__poster-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: unset;
  border-radius: 0;
  box-shadow: none;
  vertical-align: top;
}

.home-speakers__card--home .home-speakers__poster-placeholder {
  width: 100%;
  min-height: 10rem;
  height: auto;
  font-size: 1.75rem;
}

.home-speakers__card--home .home-speakers__card-banner {
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, rgb(15 23 42 / 0.55) 0%, rgb(15 23 42 / 0.08) 55%, transparent 100%);
}

.home-speakers__card--home .home-speakers__card-body {
  gap: 0.38rem;
  padding: 0.7rem 0.8rem 0.55rem;
}

.home-speakers__card--home .home-speakers__card-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.33;
  color: #0f172a;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-speakers__card-talk {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f766e;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-speakers__card-inst {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: #64748b;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.home-speakers__card-foot {
  margin-top: auto;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-top: 1px dashed #e2e8f0;
}

.home-speakers__card--home .home-speakers__card-foot {
  padding: 0.48rem 0.75rem;
}

.home-speakers__foot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--brand-800);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-speakers__card--home .home-speakers__foot-link {
  padding: 0.42rem 0.55rem;
  font-size: 0.75rem;
}

.home-speakers__foot-link:hover {
  background: #0a3d28;
  transform: translateY(-1px);
}

.home-speakers__footer {
  margin-top: 2.5rem;
  text-align: center;
}

.home-speakers__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--brand-800);
  border-radius: 0.5rem;
  box-shadow: 0 10px 24px rgb(13 74 50 / 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-speakers__cta:hover {
  background: #0a3d28;
  color: #fff;
  transform: translateY(-2px);
}

/* Footer — Sponsor kayan şerit */
.sponsor-band {
  border-top: none;
  padding: 2.75rem 0 2.25rem;
  background: #020617;
}

.sponsor-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sponsor-band__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.sponsor-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
  background: rgb(20 184 166 / 0.12);
  border: 1px solid rgb(20 184 166 / 0.22);
  border-radius: 999px;
}

.sponsor-band__title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #fff;
}

.sponsor-band__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
}

.sponsor-marquee {
  position: relative;
  --marquee-duration: 38s;
}

.sponsor-marquee__viewport {
  overflow: hidden;
  padding: 0.35rem 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.sponsor-marquee--no-edge-fade .sponsor-marquee__viewport {
  -webkit-mask-image: none;
  mask-image: none;
}

.sponsor-marquee__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: sponsorMarqueeScroll var(--marquee-duration) linear infinite;
  will-change: transform;
}

.sponsor-marquee__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.sponsor-marquee:hover .sponsor-marquee__track {
  animation-play-state: paused;
}

.sponsor-marquee__item {
  flex: 0 0 auto;
}

.sponsor-marquee__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.5rem;
  height: 4.5rem;
  padding: 0.65rem 1rem;
  background: rgb(15 23 42 / 0.45);
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 0.75rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.04);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sponsor-marquee__link:hover,
.sponsor-marquee__link:focus-visible {
  background: rgb(30 41 59 / 0.88);
  border-color: rgb(94 234 212 / 0.45);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgb(94 234 212 / 0.18),
    0 10px 24px rgb(0 0 0 / 0.35);
}

.sponsor-marquee__link:focus-visible {
  outline: 2px solid rgb(94 234 212 / 0.7);
  outline-offset: 2px;
}

.sponsor-marquee__logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: filter 0.32s ease, opacity 0.32s ease;
}

/* Varsayılan: orijinal renkler */
.sponsor-marquee__logo--color {
  filter: none;
  opacity: 0.92;
}

.sponsor-marquee__link:hover .sponsor-marquee__logo--color,
.sponsor-marquee__link:focus-visible .sponsor-marquee__logo--color {
  opacity: 1;
}

/* Eski stil: beyaz silüet (koyu footer) */
.sponsor-marquee__logo--mono {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.55;
}

.sponsor-marquee__link:hover .sponsor-marquee__logo--mono,
.sponsor-marquee__link:focus-visible .sponsor-marquee__logo--mono {
  filter: none;
  opacity: 1;
}

/* Zaten açık renkli logolar */
.sponsor-marquee__logo--light {
  filter: none;
  opacity: 0.88;
}

.sponsor-marquee__link:hover .sponsor-marquee__logo--light,
.sponsor-marquee__link:focus-visible .sponsor-marquee__logo--light {
  opacity: 1;
}

/* Beyaz arka planlı logolar — kart her zaman açık */
.sponsor-marquee__link--card {
  background: rgb(255 255 255 / 0.96);
  border-color: rgb(255 255 255 / 0.14);
}

.sponsor-marquee__logo--card {
  filter: none;
  opacity: 1;
}

.sponsor-marquee__fallback {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: #94a3b8;
  line-height: 1.25;
  opacity: 0.8;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.sponsor-marquee__link:hover .sponsor-marquee__fallback,
.sponsor-marquee__link:focus-visible .sponsor-marquee__fallback {
  color: #e2e8f0;
  opacity: 1;
}

/* Açık kart modu — hover’da arka plan aynı kalır, yalnızca çerçeve/gölge */
.sponsor-marquee__link--card:hover,
.sponsor-marquee__link--card:focus-visible {
  background: rgb(255 255 255 / 0.96);
  border-color: rgb(94 234 212 / 0.5);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgb(94 234 212 / 0.28),
    0 10px 24px rgb(0 0 0 / 0.3);
}

.sponsor-marquee__link--card:hover .sponsor-marquee__fallback,
.sponsor-marquee__link--card:focus-visible .sponsor-marquee__fallback {
  color: #334155;
}

@keyframes sponsorMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .sponsor-marquee__link {
    width: 9.5rem;
    height: 3.75rem;
    padding: 0.5rem 0.85rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .sponsor-marquee__track {
    animation-duration: calc(var(--marquee-duration) * 2);
  }
}

/* —— Tema değişkenleri (açık/koyu ortak) —— */
.home-about__title,
.home-announcements__title,
.home-dates__title,
.committees__title,
.home-panels__title,
.home-workshops__title,
.committees__group-title,
.committees__stat-value,
.home-about__card-title,
.home-announcements__card-title,
.home-dates__card-title,
.home-panels__card-title,
.home-workshops__card-title,
.home-panels__person-name,
.home-workshops__trainer-name {
  color: var(--text-heading);
}

.home-about__lead,
.home-announcements__lead,
.home-dates__lead,
.committees__lead,
.home-panels__lead,
.home-workshops__lead,
.home-about__card-text,
.home-announcements__card-text,
.home-announcements__card-text,
.home-panels__card-body,
.home-panels__person-role,
.home-workshops__card-desc,
.committees__stat-label,
.committees__group-count,
.home-about__meta-label {
  color: var(--text-muted);
}

.home-about__meta-value,
.home-announcements__date,
.home-panels__label,
.home-workshops__label {
  color: var(--text-body);
}

/* Mobil menü */
.site-nav-mobile {
  border-top: 1px solid var(--border-subtle);
  background: var(--header-bg);
}

.site-nav-mobile__group,
.site-nav-mobile__link {
  border-bottom: 1px solid var(--border-subtle);
}

.site-nav-mobile__toggle,
.site-nav-mobile__link {
  color: var(--text-body);
}

.site-nav-mobile__link.is-active,
.site-nav-mobile__toggle:hover {
  color: #0f766e;
}

.site-header__menu-btn {
  color: var(--text-body);
}

body.site-inner .about-page__main,
body.site-inner .site-page,
body.site-inner .committees--page,
body.site-inner .home-panels--page,
body.site-inner .home-workshops--page {
  margin-bottom: 0;
}

body.site-inner .site-header {
  background: linear-gradient(180deg, #0f2438 0%, #123d4a 100%);
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.25);
}

body.site-inner .site-header__inner {
  border-bottom-color: rgb(255 255 255 / 0.1);
}

body.site-inner .site-nav .nav-link {
  color: #e2e8f0;
}

body.site-inner .site-nav .nav-link:hover,
body.site-inner .site-nav .nav-link.is-active {
  color: #5eead4;
}

body.site-inner .site-nav .nav-link--dropdown.is-open {
  color: #5eead4;
}

body.site-inner .site-nav .nav-link--dropdown.is-open::after {
  background: #5eead4;
}

body.site-inner .site-nav .nav-link__chevron {
  color: rgb(148 163 184 / 0.9);
}

body.site-inner .site-nav .nav-link__chevron.is-open {
  color: #5eead4;
}

body.site-inner .btn-header-outline {
  color: #f8fafc;
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.28);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.06);
}

body.site-inner .btn-header-outline:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(94 234 212 / 0.55);
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.2);
}

body.site-inner .btn-header-primary {
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border-color: transparent;
  box-shadow: 0 2px 12px rgb(13 148 136 / 0.4);
}

body.site-inner .btn-header-primary:hover {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  box-shadow: 0 6px 18px rgb(13 148 136 / 0.45);
}

body.site-inner .site-header__menu-btn {
  color: #e2e8f0;
}

body.site-inner .site-header__divider {
  background: rgb(255 255 255 / 0.2);
}

body.site-inner main.site-main,
body.site-home main.site-main {
  background: transparent;
}

body.site-inner .page-hero,
body.site-inner .about-page__hero {
  margin-top: 0;
}

body.site-inner .site-nav-mobile {
  background: #123d4a;
  border-top-color: rgb(255 255 255 / 0.1);
}

body.site-inner .site-nav-mobile__link,
body.site-inner .site-nav-mobile__toggle {
  color: #e2e8f0;
  border-bottom-color: rgb(255 255 255 / 0.08);
}

/* Hakkımızda sayfası */
.about-page__hero {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  color: #fff;
  overflow: hidden;
}

.about-page__hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 50%, #0d9488 100%);
}

.about-page__hero-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(255 255 255 / 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.45;
}

.about-page__hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.32;
  pointer-events: none;
}

.about-page__hero-orb--teal {
  width: 320px;
  height: 320px;
  top: -100px;
  right: 8%;
  background: #2dd4bf;
}

.about-page__hero-orb--navy {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: 4%;
  background: #1e3a5f;
}

.about-page__hero-shell {
  position: relative;
  z-index: 1;
}

.about-page__hero-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Masaüstünde logo genişliği kadar boşluk — metin menü ile aynı hizada başlar */
.about-page__hero-logo-gap {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .about-page__hero-logo-gap {
    display: block;
    width: min(38vw, 260px);
    max-width: 260px;
  }
}

.about-page__hero-inner {
  flex: 1 1 0;
  min-width: 0;
  max-width: 44rem;
  text-align: left;
}

.about-page__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: rgb(226 232 240 / 0.75);
}

.about-page__crumb a {
  color: #99f6e4;
  text-decoration: none;
  transition: color 0.15s;
}

.about-page__crumb a:hover {
  color: #fff;
}

.about-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
}

.about-page__title {
  margin: 0 0 0.85rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: left;
}

.about-page__subtitle {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgb(226 232 240 / 0.9);
  text-align: left;
}

.about-page__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
}

.about-page__badge i {
  color: #5eead4;
  font-size: 0.8rem;
}

.about-page__highlights-band {
  position: relative;
  z-index: 2;
  margin-top: -1.75rem;
  padding: 0 0 2.5rem;
}

.about-page__highlights-band .container-custom {
  padding: 1.75rem 1.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 20px 48px rgb(15 23 42 / 0.1);
}

.about-page__band-head {
  margin-bottom: 1.25rem;
}

.about-page__band-eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
}

.about-page__band-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
}

.about-page__highlights {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .about-page__highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-page__highlight {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-0);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.about-page__highlight:hover {
  border-color: rgb(20 184 166 / 0.4);
  box-shadow: 0 10px 28px rgb(13 148 136 / 0.1);
  transform: translateY(-2px);
}

.about-page__highlight-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #0d9488, #0f766e);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgb(13 148 136 / 0.25);
}

.about-page__highlight-body {
  min-width: 0;
}

.about-page__highlight-title {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.about-page__highlight-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.about-page__main {
  padding: 2.5rem 0 3.5rem;
  margin-bottom: 0;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-3) 100%);
}

.about-page__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .about-page__layout {
    grid-template-columns: minmax(0, 1fr) min(20rem, 30%);
    gap: 2rem;
  }
}

.about-page__primary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}

.about-page__intro-card,
.about-page__section-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.05);
}

@media (min-width: 768px) {
  .about-page__intro-card,
  .about-page__section-card {
    padding: 2rem 2.25rem;
  }
}

.about-page__intro-head {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.about-page__intro-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
}

.about-page__prose {
  margin: 0;
}

.about-page__section-card {
  scroll-margin-top: 6rem;
}

.about-page__section-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.about-page__section-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--eyebrow-bg);
  border: 1px solid var(--eyebrow-border);
  color: #0d9488;
  font-size: 1rem;
}

.about-page__section-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
}

.about-page__section-body {
  color: var(--text-body);
}

.about-page__cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 100%);
  color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 12px 36px rgb(15 23 42 / 0.18);
}

@media (min-width: 768px) {
  .about-page__cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}

.about-page__cta-title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.about-page__cta-desc {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgb(226 232 240 / 0.88);
}

.about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.about-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.about-page__cta-btn--primary {
  color: #0f172a;
  background: #fff;
}

.about-page__cta-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.2);
}

.about-page__cta-btn--ghost {
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.25);
}

.about-page__cta-btn--ghost:hover {
  background: rgb(255 255 255 / 0.16);
  border-color: rgb(94 234 212 / 0.5);
}

.about-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-page__sidebar {
    position: sticky;
    top: 6rem;
  }
}

.about-page__side-card {
  padding: 1.25rem 1.35rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgb(15 23 42 / 0.05);
}

.about-page__side-title {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-page__side-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-page__side-link {
  display: block;
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.about-page__side-link:hover {
  color: #0f766e;
  background: var(--eyebrow-bg);
  border-left-color: #0d9488;
}

.about-page__congress-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, #0f172a, #134e4a);
  color: #fff;
  border: none;
  box-shadow: 0 12px 36px rgb(15 23 42 / 0.2);
}

.about-page__congress-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
}

.about-page__congress-title {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-page__congress-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgb(226 232 240 / 0.88);
}

.about-page__congress-meta {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: rgb(226 232 240 / 0.9);
}

.about-page__congress-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-page__congress-meta i {
  color: #5eead4;
  width: 1rem;
  margin-top: 0.15rem;
  text-align: center;
  flex-shrink: 0;
}

.about-page__congress-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-page__congress-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.about-page__congress-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.15);
}

.about-page__congress-cta--outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 0.35);
}

.about-page__congress-cta--outline:hover {
  background: rgb(255 255 255 / 0.1);
  box-shadow: none;
}

.about-page__quick-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-page__quick-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s;
}

.about-page__quick-link:hover {
  color: #0f766e;
  background: var(--eyebrow-bg);
}

.about-page__quick-link > i:first-child {
  width: 1.25rem;
  text-align: center;
  color: #0d9488;
}

.about-page__quick-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.15s;
}

.about-page__quick-link:hover .about-page__quick-arrow {
  transform: translateX(3px);
  color: #0d9488;
}

@media (max-width: 767px) {
  .about-page__hero {
    padding: 2.5rem 0 3rem;
  }

  .about-page__highlights-band {
    margin-top: -1rem;
  }

  .about-page__highlights-band .container-custom {
    padding: 1.25rem 1rem 1.5rem;
  }
}

/* Duyurular listesi */
.announcements-page {
  position: relative;
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

.announcements-page__panel {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.1);
}

@media (min-width: 768px) {
  .announcements-page__panel {
    padding: 2rem 2rem 2.25rem;
  }
}

.announcements-page__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.announcements-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--eyebrow-bg);
  border: 1px solid var(--eyebrow-border);
  border-radius: 999px;
}

.announcements-page__lead {
  max-width: 36rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcements-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.announcements-page__count {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.announcements-page__count-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.announcements-page__more {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.announcements-page__more-title {
  margin: 0 0 1.25rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

/* Öne çıkan duyuru */
.announcement-featured {
  margin-bottom: 0.5rem;
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.announcement-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgb(15 23 42 / 0.1);
}

.announcement-featured__link {
  display: grid;
  grid-template-columns: 1fr;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .announcement-featured__link {
    grid-template-columns: minmax(12rem, 34%) 1fr;
    min-height: 16rem;
  }
}

.announcement-featured__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 2rem;
  background: linear-gradient(145deg, #0f172a 0%, #0d4a32 50%, #0d9488 100%);
  overflow: hidden;
}

.announcement-featured__visual-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgb(255 255 255 / 0.12) 0%, transparent 45%),
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}

.announcement-featured__icon {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  color: rgb(255 255 255 / 0.35);
}

.announcement-featured__date-block {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.65rem;
  text-align: center;
  background: rgb(255 255 255 / 0.95);
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.announcement-featured__date-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #0f766e;
}

.announcement-featured__date-month {
  margin-top: 0.1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.announcement-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.35rem;
}

@media (min-width: 768px) {
  .announcement-featured__body {
    padding: 1.75rem 2rem;
  }
}

.announcement-featured__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.announcement-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  color: #b45309;
  background: #fef3c7;
  border-radius: 999px;
}

.announcement-featured__title {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.announcement-featured__excerpt {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.announcement-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.65rem 1.1rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #0d9488;
  border-radius: 999px;
  transition: background 0.15s;
}

.announcement-featured:hover .announcement-featured__cta {
  background: #0f766e;
}

.announcements-page__count {
  margin: 0;
  font-size: 0.9375rem;
  color: #64748b;
}

.announcements-page__count strong {
  color: #0f172a;
  font-weight: 700;
}

.announcements-page__view-toggle {
  display: inline-flex;
  padding: 0.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.04);
}

.announcements-page__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.announcements-page__view-btn:hover {
  color: #0f766e;
}

.announcements-page__view-btn.is-active {
  color: #fff;
  background: #0d9488;
}

.announcements-page__section + .announcements-page__section {
  margin-top: 2.5rem;
}

.announcements-page__section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}

.announcements-page__items--cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .announcements-page__items--cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .announcements-page__items--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.announcements-page__items--list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.announcements-page__items--cards .announcement-item__date {
  display: none;
}

.announcements-page__items--list .announcement-item__visual {
  display: none;
}

.announcements-page__items--list .announcement-item__accent {
  display: none;
}

body.site-inner .announcements-page {
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 40%, var(--surface-3) 100%);
}

.announcements-page__empty {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--card-bg);
  border: 1px dashed var(--card-border);
  border-radius: 1rem;
  color: #64748b;
}

.announcements-page__empty i {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #94a3b8;
}

/* Duyuru kartı / satır */
.announcement-item {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.announcement-item__accent {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #5eead4);
}

.announcement-item--pinned .announcement-item__accent {
  background: linear-gradient(90deg, #b45309, #f59e0b, #fcd34d);
}

.announcement-item__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.5rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #e2e8f0 100%);
}

.announcement-item__visual i {
  font-size: 1.75rem;
  color: #0d9488;
  opacity: 0.85;
}

.announcement-item:hover {
  transform: translateY(-3px);
  border-color: rgb(20 184 166 / 0.35);
  box-shadow: 0 16px 36px rgb(15 23 42 / 0.08);
}

.announcement-item--pinned {
  border-color: rgb(245 158 11 / 0.45);
  box-shadow: 0 0 0 1px rgb(245 158 11 / 0.12);
}

.announcement-item__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 1.15rem;
  color: inherit;
  text-decoration: none;
}

.announcement-item__link .announcement-item__date,
.announcement-item__link .announcement-item__body {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.announcement-item__link .announcement-item__body {
  padding-top: 0.85rem;
}

.announcements-page__items--list .announcement-item__link {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
}

.announcements-page__items--list .announcement-item:hover {
  transform: none;
}

.announcement-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4.25rem;
  padding: 0.65rem 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 0.65rem;
}

.announcements-page__items--list .announcement-item__date {
  margin-bottom: 0;
}

.announcement-item__date-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0f766e;
}

.announcement-item__date-month {
  margin-top: 0.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.announcement-item__date-year {
  font-size: 0.6875rem;
  color: #94a3b8;
}

.announcement-item__body {
  flex: 1;
  min-width: 0;
}

.announcement-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.65rem;
  font-size: 0.75rem;
  color: #64748b;
}

.announcement-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: #0d9488;
  background: rgb(20 184 166 / 0.12);
  border-radius: 0.4rem;
}

.announcement-item__badge {
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
  background: #fef3c7;
  border-radius: 999px;
}

.announcement-item__title {
  margin: 0 0 0.5rem;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.announcements-page__items--list .announcement-item__title {
  font-size: 1.125rem;
}

.announcement-item__excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.announcements-page__items--list .announcement-item__excerpt {
  margin-bottom: 0.5rem;
}

.announcement-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d9488;
}

.announcements-page__items--list .announcement-item__cta {
  margin-top: 0.35rem;
}

/* Kongre arşivi */
.archive-page {
  position: relative;
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

body.site-inner .archive-page {
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--surface-2) 40%, var(--surface-3) 100%);
}

.archive-page__panel {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.1);
}

@media (min-width: 768px) {
  .archive-page__panel {
    padding: 2rem 2rem 2.25rem;
  }
}

.archive-page__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.archive-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--eyebrow-bg);
  border: 1px solid var(--eyebrow-border);
  border-radius: 999px;
}

.archive-page__lead {
  max-width: 36rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #64748b;
}

.archive-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.archive-page__count {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.archive-page__count-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a;
}

.archive-page__view-toggle {
  display: inline-flex;
  padding: 0.25rem;
  background: var(--chip-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.65rem;
}

.archive-page__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.archive-page__view-btn.is-active {
  color: #fff;
  background: #0d9488;
}

.archive-page__more {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.archive-page__more-title {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.archive-page__items--grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .archive-page__items--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .archive-page__items--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.archive-page__items--list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.archive-page__empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: #64748b;
  border: 1px dashed var(--card-border);
  border-radius: 1rem;
}

.archive-page__empty i {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #94a3b8;
}

/* Güncel kongre — öne çıkan */
.archive-year-featured {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 0.5rem;
  border: 1px solid rgb(245 158 11 / 0.45);
  border-radius: 1.1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.08);
}

@media (min-width: 768px) {
  .archive-year-featured {
    grid-template-columns: minmax(11rem, 32%) 1fr;
    min-height: 15rem;
  }
}

.archive-year-featured__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  padding: 2rem;
  background: linear-gradient(145deg, #78350f 0%, #b45309 40%, #f59e0b 100%);
  overflow: hidden;
}

.archive-year-featured__visual-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgb(255 255 255 / 0.2) 0%, transparent 50%),
    linear-gradient(rgb(255 255 255 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

.archive-year-featured__year {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgb(255 255 255 / 0.9);
  text-shadow: 0 4px 20px rgb(0 0 0 / 0.2);
}

.archive-year-featured__date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.45rem 0.6rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.archive-year-featured__date-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #b45309;
}

.archive-year-featured__date-month {
  margin-top: 0.1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.archive-year-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.35rem;
}

@media (min-width: 768px) {
  .archive-year-featured__body {
    padding: 1.75rem 2rem;
  }
}

.archive-year-featured__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.archive-year-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
}

.archive-year-featured__badge--active {
  color: #b45309;
  background: #fef3c7;
}

.archive-year-featured__badge--hybrid {
  color: #0f766e;
  background: #f0fdfa;
}

.archive-year-featured__title {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.archive-year-featured__location,
.archive-year-featured__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin: 0 0 0.4rem;
  font-size: 0.875rem;
  color: #475569;
}

.archive-year-featured__location i,
.archive-year-featured__dates i {
  color: #0d9488;
}

.archive-year-featured__duration {
  color: #94a3b8;
}

.archive-year-featured__desc {
  margin: 0.5rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
}

.archive-year-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.65rem 1.1rem;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #0d9488;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s;
}

.archive-year-featured__cta:hover {
  background: #0f766e;
}

/* Arşiv yılı kartı */
.archive-year-item {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.archive-year-item:hover {
  transform: translateY(-3px);
  border-color: rgb(20 184 166 / 0.3);
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.08);
}

.archive-year-item__accent {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
}

.archive-year-item--active .archive-year-item__accent {
  background: linear-gradient(90deg, #b45309, #f59e0b);
}

.archive-year-item__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #e2e8f0 100%);
}

.archive-year-item__year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: rgb(15 118 110 / 0.35);
}

.archive-year-item__body {
  padding: 1rem 1.15rem 1.15rem;
}

.archive-page__items--list .archive-year-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.archive-page__items--list .archive-year-item:hover {
  transform: none;
}

.archive-page__items--list .archive-year-item__accent,
.archive-page__items--list .archive-year-item__visual {
  display: none;
}

.archive-year-item__year-badge {
  display: none;
}

.archive-page__items--list .archive-year-item__year-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 4.5rem;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0f766e;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border-right: 1px solid var(--border-subtle);
}

.archive-page__items--list .archive-year-item__body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
  padding: 1rem 1.25rem;
}

.archive-page__items--grid .archive-year-item__meta {
  margin-bottom: 0.65rem;
}

.archive-year-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.archive-page__items--list .archive-year-item__meta {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.archive-year-item__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.25rem;
  padding: 0.4rem 0.5rem;
  text-align: center;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.2);
  border-radius: 0.5rem;
}

.archive-year-item__date-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #0f766e;
}

.archive-year-item__date-month {
  margin-top: 0.1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
}

.archive-year-item__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.archive-year-item__chip--hybrid {
  color: #0f766e;
  background: #f0fdfa;
}

.archive-year-item__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.archive-page__items--list .archive-year-item__title {
  flex: 1 1 12rem;
  margin: 0;
  min-width: 10rem;
  font-size: 1.0625rem;
}

.archive-year-item__location,
.archive-year-item__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.archive-year-item__location i,
.archive-year-item__dates i {
  color: #0d9488;
  font-size: 0.75rem;
}

.archive-year-item__duration {
  padding-left: 0.25rem;
  color: #94a3b8;
}

.archive-page__items--list .archive-year-item__location {
  flex: 1 1 8rem;
}

.archive-page__items--list .archive-year-item__dates {
  flex: 0 0 auto;
  margin-left: auto;
}

/* Geçmiş kongreler */
.past-conference-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.past-conference-link:hover .archive-year-item,
.past-conference-link:focus-visible .archive-year-item {
  transform: translateY(-3px);
  border-color: rgb(20 184 166 / 0.3);
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.08);
}

.past-conference-link:focus-visible {
  outline: none;
}

.past-conference-link:focus-visible .archive-year-item {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.archive-year-item--past .archive-year-item__accent {
  background: linear-gradient(90deg, #334155, #64748b);
}

.archive-year-item--past .archive-year-item__visual {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.archive-year-item--past .archive-year-item__year {
  color: rgb(51 65 85 / 0.35);
}

.past-conference-item__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.85rem 0 0;
  padding: 0;
}

.past-conference-item__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 4.5rem;
  padding: 0.45rem 0.65rem;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 0.55rem;
}

.past-conference-item__stat dt {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.past-conference-item__stat dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f766e;
}

.past-conference-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
}

.past-conference-link:hover .past-conference-item__cta {
  color: #0d9488;
}

.archive-page__items--list .past-conference-item__stats {
  margin: 0;
}

.archive-page__items--list .past-conference-item__cta {
  margin: 0 0 0 auto;
}

.past-conference-show__breadcrumb {
  margin-bottom: 0.85rem;
}

.past-conference-show__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.85);
  text-decoration: none;
}

.past-conference-show__breadcrumb a:hover {
  color: #fff;
}

.past-conference-show__sep {
  margin: 0 0.35rem;
  opacity: 0.65;
}

.page-hero__subtitle i {
  margin-right: 0.35rem;
  opacity: 0.85;
}

.past-conference-show__panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.past-conference-show__stats {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .past-conference-show__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.past-conference-show__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
}

.past-conference-show__stat-value {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0f766e;
}

.past-conference-show__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.past-conference-show__stat--badge .past-conference-show__stat-value {
  font-size: 1.25rem;
}

.past-conference-show__intro {
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
}

.past-conference-show__intro p {
  margin: 0;
}

.past-conference-show__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.past-conference-show__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border, #e2e8f0);
  background: #fff;
  color: var(--color-primary, #4f6ef7);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.past-conference-show__download:hover {
  border-color: var(--color-primary, #4f6ef7);
  box-shadow: 0 2px 8px rgba(79, 110, 247, 0.12);
}

.past-conference-show__section {
  padding-top: 0.25rem;
  border-top: 1px solid var(--border-subtle);
}

.past-conference-show__section-head {
  margin-bottom: 1.15rem;
}

.past-conference-show__section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.past-conference-show__section-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.past-conference-show__section-meta {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.past-conference-show__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 2rem 1rem;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed var(--border-subtle);
  border-radius: 0.85rem;
}

.past-conference-show__empty i {
  font-size: 1.75rem;
  color: #94a3b8;
}

.past-conference-show__empty p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.past-conference-show__program {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.past-conference-show__day {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
}

.past-conference-show__day-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.past-conference-show__day-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 999px;
}

.past-conference-show__day-title {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.past-conference-show__day-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.past-conference-show__abstracts {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  overflow: hidden;
}

.past-conference-show__abstract {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
}

.past-conference-show__abstract:last-child {
  border-bottom: none;
}

.past-conference-show__abstract-title {
  flex: 1 1 14rem;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.past-conference-show__abstract-track {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 999px;
}

/* Çağrılı konuşmacılar */
.speakers-page {
  position: relative;
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

.speakers-page__panel {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.1);
}

@media (min-width: 768px) {
  .speakers-page__panel {
    padding: 2rem 2rem 2.25rem;
  }
}

.speakers-page__header.panels-page__header {
  flex-wrap: wrap;
}

.speakers-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .speakers-page__toolbar {
    width: auto;
    margin-left: auto;
  }
}

.speakers-page__count {
  margin: 0;
}

.speakers-page__view-toggle {
  display: inline-flex;
  padding: 0.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.04);
}

.speakers-page__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.speakers-page__view-btn:hover {
  color: #0f766e;
}

.speakers-page__view-btn.is-active {
  color: #0f766e;
  background: #f0fdfa;
}

.speakers-page__days {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.speakers-page__day-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
}

.speakers-page__day-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.speakers-page__day-title i {
  color: #0d9488;
}

.speakers-page__day-count {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.speakers-page__day-count-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f766e;
}

.speakers-page__grid {
  display: grid;
  gap: 1rem;
}

.speakers-page__items--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .speakers-page__items--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .speakers-page__items--cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .speakers-page__items--cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.speakers-page__items--list {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

/* Konuşmacı kartı / satırı */
.speaker-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.05);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.speaker-item:hover {
  border-color: rgb(20 184 166 / 0.35);
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.08);
}

.speaker-item--keynote {
  border-color: rgb(245 158 11 / 0.45);
}

.speaker-item__badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 2;
  padding: 0.15rem 0.45rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
}

.speaker-item__media {
  flex-shrink: 0;
}

.speaker-item__thumb {
  display: block;
  width: 100%;
  padding: 0;
  line-height: 0;
  cursor: zoom-in;
  background: #f8fafc;
  border: none;
}

.speaker-item__thumb:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: -2px;
}

.speaker-item__img {
  display: block;
  width: 100%;
  height: auto;
}

.speaker-item__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 7.5rem;
  padding: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.speaker-item__placeholder i {
  font-size: 1.35rem;
}

.speaker-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.55rem 0.6rem 0.65rem;
}

.speaker-item__name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.speaker-item__talk {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #475569;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speaker-item__inst {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.35;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.speaker-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.speaker-item__action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border-radius: 0.35rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.speaker-item__action--ghost {
  color: #64748b;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
}

.speaker-item__action--ghost:hover {
  color: #0f766e;
  border-color: rgb(20 184 166 / 0.4);
}

.speaker-item__action--bio {
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.35);
}

.speaker-item__action--bio:hover {
  color: #fff;
  background: #0d9488;
  border-color: #0d9488;
}

/* Liste görünümü — çok konuşmacı */
.speakers-page__items--list .speaker-item {
  flex-direction: row;
  align-items: stretch;
}

.speakers-page__items--list .speaker-item__media {
  width: 4.75rem;
}

.speakers-page__items--list .speaker-item__thumb,
.speakers-page__items--list .speaker-item__placeholder {
  height: 100%;
  min-height: 4.75rem;
}

.speakers-page__items--list .speaker-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.speakers-page__items--list .speaker-item__placeholder {
  min-height: 4.75rem;
}

.speakers-page__items--list .speaker-item__placeholder i {
  font-size: 1rem;
}

.speakers-page__items--list .speaker-item__body {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 0.55rem 0.75rem;
}

.speakers-page__items--list .speaker-item__name {
  flex: 1 1 12rem;
  font-size: 0.875rem;
}

.speakers-page__items--list .speaker-item__talk {
  flex: 1 1 100%;
  max-width: none;
  -webkit-line-clamp: 1;
  font-size: 0.75rem;
}

.speakers-page__items--list .speaker-item__inst {
  flex: 1 1 auto;
  -webkit-line-clamp: 1;
}

.speakers-page__items--list .speaker-item__actions {
  flex: 0 0 auto;
  margin-top: 0;
  margin-left: auto;
}

.speakers-page__items--list .speaker-item__action-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .speakers-page__items--list .speaker-item__talk {
    flex: 1 1 40%;
  }

  .speakers-page__items--list .speaker-item__inst {
    flex: 0 1 28%;
  }
}

/* Afiş büyütme (konuşmacı + panel) */
.poster-lightbox,
.speaker-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.poster-lightbox[hidden] {
  display: none !important;
}

.poster-lightbox__backdrop,
.speaker-lightbox__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  cursor: pointer;
  background: rgb(15 23 42 / 0.75);
  border: none;
}

.poster-lightbox__dialog,
.speaker-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(94vw, 36rem);
  max-height: 92vh;
}

.poster-lightbox__close,
.speaker-lightbox__close {
  position: absolute;
  top: -2.25rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #fff;
  cursor: pointer;
  background: rgb(255 255 255 / 0.15);
  border: none;
  border-radius: 999px;
}

.poster-lightbox__img,
.speaker-lightbox__img {
  display: block;
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 48px rgb(0 0 0 / 0.35);
}

body.poster-lightbox-open,
body.speaker-lightbox-open {
  overflow: hidden;
}

body.site-inner .speakers-page {
  flex: 1 0 auto;
}

/* Paneller — afiş listesi */
.panels-page {
  position: relative;
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

.panels-page__panel {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.1);
}

@media (min-width: 768px) {
  .panels-page__panel {
    padding: 2rem 2rem 2.25rem;
  }
}

.panels-page__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.panels-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--eyebrow-bg);
  border: 1px solid var(--eyebrow-border);
  border-radius: 999px;
}

.panels-page__lead {
  max-width: 42rem;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.panels-page__count {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.panels-page__count-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #0f766e;
}

/* Katılım ücretleri sayfası */
.fees-page {
  padding: 0 0 0;
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgb(20 184 166 / 0.08), transparent 55%),
    linear-gradient(180deg, var(--surface-1) 0%, #fff 28%, var(--surface-0) 100%);
}

.fees-page__wrap {
  max-width: 72rem;
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

.fees-page__intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.06);
}

.fees-page__intro-text {
  max-width: 42rem;
}

.fees-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: var(--eyebrow-bg);
  border: 1px solid var(--eyebrow-border);
  color: var(--primary-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fees-page__title {
  margin: 0 0 0.55rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-heading);
}

.fees-page__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.fees-page__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fees-page__stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 6.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border-subtle);
}

.fees-page__stat-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-600);
}

.fees-page__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fees-page__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1100px) {
  .fees-page__grid {
    grid-template-columns: minmax(0, 1fr) 20rem;
  }
}

.fees-page__main {
  min-width: 0;
}

.fees-page__aside {
  min-width: 0;
}

.fees-aside-card {
  padding: 1.35rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0 18px 40px rgb(15 23 42 / 0.08);
}

.fees-aside-card--sticky {
  position: sticky;
  top: 6.5rem;
}

.fees-aside-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-600);
}

.fees-aside-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-heading);
}

.fees-aside-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.fees-aside-steps {
  list-style: none;
  margin: 1.15rem 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.fees-aside-steps__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-body);
}

.fees-aside-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: var(--primary-600);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.fees-aside-card__actions {
  display: grid;
  gap: 0.65rem;
}

.fees-aside-card__hint {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.fees-aside-card__hint i {
  margin-top: 0.15rem;
  color: var(--primary-600);
}

.fees-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.15rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.fees-page__btn--block {
  width: 100%;
}

.fees-page__btn--primary {
  background: var(--primary-600);
  color: #fff;
}

.fees-page__btn--primary:hover {
  background: var(--primary-700);
  color: #fff;
  transform: translateY(-1px);
}

.fees-page__btn--ghost {
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  background: #fff;
}

.fees-page__btn--ghost:hover {
  border-color: rgb(20 184 166 / 0.35);
  color: var(--primary-700);
}

.fees-page__btn--light {
  background: #fff;
  color: var(--primary-700);
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.12);
}

.fees-page__btn--light:hover {
  color: var(--primary-800);
  transform: translateY(-1px);
}

.fees-page__cta-band {
  margin-top: 0.5rem;
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 52%, #14b8a6 100%);
}

.fees-page__cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.fees-page__cta-copy h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: #fff;
}

.fees-page__cta-copy p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.9);
}

.fees-catalog {
  display: grid;
  gap: 1.35rem;
}

.fees-block {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgb(15 23 42 / 0.05);
}

.fees-block--soft {
  background: linear-gradient(180deg, #fff 0%, #fffbeb 100%);
  border-color: #fde68a;
}

.fees-block__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.fees-block__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--eyebrow-bg);
  color: var(--primary-600);
  font-size: 1.1rem;
}

.fees-block__icon--amber {
  background: #fef3c7;
  color: #b45309;
}

.fees-block__icon--violet {
  background: #ede9fe;
  color: #6d28d9;
}

.fees-block__title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fees-block__lead {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.fees-tier-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fees-block--schedule {
  background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.fees-schedule-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fees-schedule-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid rgb(15 23 42 / 0.06);
  background: #fff;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fees-schedule-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.09);
}

.fees-schedule-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
}

.fees-schedule-card__price {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-700);
}

@media (max-width: 1199.98px) {
  .fees-schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .fees-schedule-grid {
    grid-template-columns: 1fr;
  }
}

.fees-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.35rem 1.2rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.fees-tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgb(15 23 42 / 0.08);
}

.fees-tier--featured {
  border-color: rgb(20 184 166 / 0.45);
  background: linear-gradient(180deg, #fff 0%, #ecfdf5 100%);
  box-shadow: 0 16px 36px rgb(13 148 136 / 0.12);
}

.fees-tier--free {
  border-color: rgb(16 185 129 / 0.35);
}

.fees-tier__ribbon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fees-tier__tag {
  align-self: flex-start;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fees-tier__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: rgb(20 184 166 / 0.12);
  color: var(--primary-600);
  font-size: 1.15rem;
}

.fees-tier--participant .fees-tier__icon {
  background: rgb(99 102 241 / 0.12);
  color: #4f46e5;
}

.fees-tier--student .fees-tier__icon {
  background: rgb(245 158 11 / 0.14);
  color: #d97706;
}

.fees-tier__name {
  margin: 0.15rem 0 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fees-tier__price {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--primary-600);
}

.fees-tier--free .fees-tier__price {
  color: #059669;
}

.fees-tier__price-note {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.fees-tier__desc {
  margin: 0.35rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(226 232 240 / 0.9);
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.fees-discount-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fees-discount-card {
  padding: 1rem 1rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgb(253 230 138 / 0.8);
  background: rgb(255 255 255 / 0.72);
}

.fees-discount-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.55rem;
  border-radius: 0.65rem;
  background: #fef3c7;
  color: #b45309;
}

.fees-discount-card__title {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fees-discount-card__detail {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #92400e;
}

.fees-addon-grid {
  display: grid;
  gap: 0.75rem;
}

.fees-addon-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: #f8fafc;
}

.fees-addon-card--muted {
  opacity: 0.72;
}

.fees-addon-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: #6d28d9;
  font-size: 1rem;
}

.fees-addon-card__type {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.fees-addon-card__title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fees-addon-card__desc {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.fees-addon-card__price {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-600);
  white-space: nowrap;
}

.fees-addon-card__price--muted {
  color: #94a3b8;
}

.fees-info-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgb(20 184 166 / 0.25);
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 100%);
}

.fees-info-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--primary-600);
}

.fees-info-panel__title {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-heading);
}

.fees-info-panel__list {
  margin: 0;
  padding-left: 1.1rem;
  color: #0f766e;
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .fees-tier-grid {
    grid-template-columns: 1fr;
  }

  .fees-discount-grid {
    grid-template-columns: 1fr;
  }

  .fees-aside-card--sticky {
    position: static;
  }

  .fees-page__intro {
    padding: 1.25rem 1.15rem;
  }
}

@media (min-width: 992px) and (max-width: 1099.98px) {
  .fees-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .fees-discount-grid {
    grid-template-columns: 1fr;
  }
}

.panels-page__empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #64748b;
}

.panels-page__empty i {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #94a3b8;
}

.panels-page__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.panels-page__list.home-panels__grid {
  grid-template-columns: 1fr;
}

.panels-page__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Paneller — program sayfası içinde gömülü blok */
.panels-catalog--embedded {
  scroll-margin-top: 5.5rem;
  margin-top: -1.25rem;
  padding-bottom: 0.5rem;
  overflow: visible;
}

body.site-inner .panels-catalog--embedded {
  flex: 1 0 auto;
}

.panels-catalog__shell--embedded {
  position: relative;
  padding: 1.5rem 1.35rem 1.65rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.15rem;
  box-shadow: 0 16px 36px rgb(15 23 42 / 0.07);
}

@media (min-width: 768px) {
  .panels-catalog__shell--embedded {
    padding: 1.75rem 1.75rem 2rem;
  }
}

.panels-catalog__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.panels-catalog__title {
  flex: 1 1 100%;
  margin: 0.25rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.panel-item[id^='panel-'] {
  scroll-margin-top: 6.5rem;
}

.program-page__panels-jump {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.35);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.program-page__panels-jump:hover {
  color: #fff;
  background: #0f766e;
}


.panel-poster {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.panel-poster__thumb {
  position: relative;
  display: block;
  width: 100%;
  max-height: 13.5rem;
  padding: 0;
  overflow: hidden;
  line-height: 0;
  cursor: zoom-in;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  border-radius: 0.45rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

@media (min-width: 640px) {
  .panel-poster__thumb {
    max-height: 15rem;
  }
}

.panel-poster__thumb:hover {
  border-color: rgb(20 184 166 / 0.4);
  box-shadow: 0 6px 16px rgb(15 23 42 / 0.1);
}

.panel-poster__thumb:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.panel-poster__img {
  display: none;
}

.panel-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
}

.panel-item--split {
  display: grid;
  grid-template-columns: minmax(9.5rem, 44%) minmax(0, 1fr);
  align-items: stretch;
}

@media (min-width: 640px) {
  .panel-item--split {
    grid-template-columns: minmax(12rem, 17.5rem) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .panel-item--split {
    grid-template-columns: minmax(14rem, 21rem) minmax(0, 1fr);
  }
}

.panel-item__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.65rem;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-right: 1px solid var(--border-subtle);
}

.panel-item__poster-btn {
  display: block;
  width: 100%;
  padding: 0;
  line-height: 0;
  cursor: zoom-in;
  background: none;
  border: none;
  border-radius: 0.3rem;
}

.panel-item__poster-btn:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.panel-item__poster-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
}

.panel-item__zoom {
  margin: 0.35rem 0 0;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0d9488;
}

.panel-item__zoom i {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.75rem;
}

.panel-item__media--empty {
  justify-content: center;
}

.panel-item__media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 10rem;
  padding: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: #94a3b8;
}

.panel-item__media-placeholder i {
  font-size: 1.5rem;
  color: #cbd5e1;
}

.panel-item__body {
  min-width: 0;
}

.panel-item .panel-detail-card {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.panel-item--split .home-panels__card-head {
  padding: 0.75rem 0.85rem 0.55rem;
}

.panel-item--split .home-panels__card-body {
  gap: 0.55rem;
  padding: 0 0.85rem 0.85rem;
}

.panel-item--split .home-panels__card-icon {
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
}

.panel-item--split .home-panels__card-title {
  font-size: 0.9375rem;
  line-height: 1.32;
}

@media (min-width: 640px) {
  .panel-item--split .home-panels__card-title {
    font-size: 1rem;
  }
}

.panel-item--split .home-panels__topics {
  margin-bottom: 0.4rem;
}

.panel-item--split .home-panels__topic {
  padding: 0.2rem 0.45rem;
  font-size: 0.6875rem;
}

.panel-item--split .home-panels__meta {
  gap: 0.35rem;
}

.panel-item--split .home-panels__chip {
  padding: 0.2rem 0.45rem;
  font-size: 0.6875rem;
}

.panel-item--split .home-panels__chair {
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
}

.panel-item--split .home-panels__avatar {
  width: 2.15rem;
  height: 2.15rem;
  font-size: 0.65rem;
}

.panel-item--split .home-panels__person-name {
  font-size: 0.8125rem;
}

.panel-item--split .home-panels__person-role {
  font-size: 0.6875rem;
}

.panel-item--split .home-panels__profile-hint {
  display: none;
}

.panel-item--split .home-panels__speakers {
  padding: 0.55rem 0.65rem;
}

.panel-item--split .home-panels__speakers-head {
  margin-bottom: 0.4rem;
}

.panel-item--split .home-panels__speakers-head .home-panels__label {
  font-size: 0.5625rem;
}

.panel-item--split .home-panels__speaker-count {
  min-width: 1.15rem;
  height: 1.15rem;
  font-size: 0.625rem;
}

.panel-item--split .home-panels__speaker-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem 0.5rem;
  max-height: 11.5rem;
  overflow-y: auto;
  overscroll-behavior: auto;
}

.panels-catalog--embedded .panel-item--split .home-panels__speaker-list {
  max-height: none;
  overflow-y: visible;
}

@media (min-width: 400px) {
  .panel-item--split .home-panels__speaker-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.panel-item--split .home-panels__speaker-list li {
  padding: 0;
  border-top: none;
}

.panel-item--split .home-panels__speaker-btn {
  gap: 0.4rem;
  width: 100%;
  padding: 0.3rem 0.15rem;
  text-align: left;
}

.panel-item--split .home-panels__speaker-dot {
  width: 5px;
  height: 5px;
  margin-top: 0.35rem;
}

.panel-item--split .home-panels__speaker-btn .home-panels__person-name {
  font-size: 0.75rem;
  line-height: 1.3;
}

.panel-item--split .home-panels__speaker-btn .home-panels__person-role {
  font-size: 0.625rem;
  line-height: 1.25;
}

.panel-item--split .home-panels__speaker-chevron {
  font-size: 0.6rem;
  opacity: 0.45;
}

@media (min-width: 640px) {
  .panel-poster__img {
    min-height: 15rem;
  }
}

.panel-poster__caption {
  padding: 0.5rem 0.15rem 0;
}

.panel-poster__title {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

@media (min-width: 640px) {
  .panel-poster__title {
    font-size: 0.8125rem;
  }
}

.panel-poster__caption .panel-poster__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  color: #64748b;
}

.panel-poster__zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #0d9488;
}

.panel-poster__people {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
}

.panel-poster__people {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
}

.panel-poster__people summary {
  cursor: pointer;
  font-weight: 600;
  color: #0f766e;
}

.panel-poster__people-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.panel-poster__person-btn {
  display: block;
  width: 100%;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  text-align: left;
  color: #334155;
  background: none;
  border: none;
  cursor: pointer;
}

.panel-poster__person-btn:hover {
  color: #0d9488;
}

.panel-poster__person-role {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

body.site-inner .panels-page {
  flex: 1 0 auto;
}

body.site-inner .workshops-page {
  flex: 1 0 auto;
}

.workshops-page .workshops-page__list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .workshops-page .workshops-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .workshops-page .workshops-page__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.workshops-page .panel-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.workshops-page .panel-item--split {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
}

.workshops-page .panel-item__media {
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border-right: none;
  border-bottom: 1px solid var(--border-subtle);
  background: #e2e8f0;
}

.workshops-page .panel-item__media--has-poster {
  background: #fff;
}

.workshops-page .panel-item__poster-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  line-height: 0;
  border: none;
  border-radius: 0;
  cursor: zoom-in;
  background: #fff;
}

.workshops-page .panel-item__poster-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  vertical-align: top;
}

.workshops-page .panel-item__poster-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgb(15 23 42 / 0.82) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.workshops-page .panel-item__poster-btn:hover .panel-item__poster-overlay,
.workshops-page .panel-item__poster-btn:focus-visible .panel-item__poster-overlay {
  opacity: 1;
}

.workshops-page .panel-item__poster-btn:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: -2px;
}

.workshops-page .panel-item__media-placeholder {
  min-height: 14rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.workshops-page .panel-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.workshops-page .panel-item .workshop-detail-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.workshops-page .workshop-detail-card .home-panels__card-index {
  display: none;
}

.workshops-page .panel-item--split .workshop-detail-card .home-panels__card-head {
  padding: 0.9rem 1rem 0.75rem;
}

.workshops-page .panel-item--split .workshop-detail-card .home-panels__card-body {
  padding: 0 1rem 1rem;
}

.workshops-page .panel-item--split .workshop-detail-card .home-panels__card-body {
  flex: 1;
}

.workshops-page .workshop-detail-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.workshops-page .workshop-detail-card__hint {
  font-size: 0.72rem;
  line-height: 1.4;
}

.workshops-page .workshop-detail-card__guest-btns {
  flex-direction: column;
}

.workshops-page .workshop-detail-card__btn {
  justify-content: center;
  width: 100%;
}

.workshops-page .panels-page__count-num {
  color: #b45309;
}

.workshop-item .home-panels__card-accent {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.workshop-detail-card__desc {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
}

.workshop-detail-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.workshop-detail-card__capacity {
  padding: 0.65rem 0.75rem;
  background: #fffbeb;
  border: 1px solid rgb(245 158 11 / 0.25);
  border-radius: 0.55rem;
}

.workshop-detail-card__capacity-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.workshop-detail-card__capacity-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.workshop-detail-card__ring {
  flex-shrink: 0;
}

.workshop-detail-card__capacity-label {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.workshop-detail-card__remaining {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #b45309;
}

.workshop-detail-card__limited {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #c2410c;
}

.workshop-detail-card__limited i {
  margin-right: 0.25rem;
}

.workshop-detail-card__limited--solo {
  margin: 0;
}

.home-panels__chip--online {
  color: #0369a1;
  background: #e0f2fe;
}

.home-panels__chip--price {
  color: #b45309;
  background: #fffbeb;
}

.workshop-detail-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.workshop-detail-card__guest-note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.workshop-detail-card__guest-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.workshop-detail-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.workshop-detail-card__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #d97706, #ea580c);
}

.workshop-detail-card__btn--primary:hover {
  background: linear-gradient(135deg, #b45309, #c2410c);
}

.workshop-detail-card__btn--outline {
  color: #b45309;
  background: #fff;
  border: 1px solid rgb(245 158 11 / 0.45);
}

.workshop-detail-card__btn--outline:hover {
  background: #fffbeb;
}

.workshop-detail-card__btn--disabled {
  color: #94a3b8;
  background: #f1f5f9;
  cursor: not-allowed;
}

.workshop-detail-card__hint {
  margin: 0;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.panel-item--split .workshop-detail-card .home-panels__card-head {
  padding: 0.75rem 0.85rem 0.55rem;
}

.panel-item--split .workshop-detail-card .home-panels__card-body {
  padding: 0 0.85rem 0.85rem;
}

.speakers-page .speakers-page__list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .speakers-page .speakers-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .speakers-page .speakers-page__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

.speakers-page .panel-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.speakers-page .panel-item--split {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
}

.speakers-page .panel-item__media {
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  border-right: none;
  border-bottom: 1px solid var(--border-subtle);
  background: #e2e8f0;
}

.speakers-page .panel-item__media--has-poster {
  background: #fff;
}

.speakers-page .panel-item__poster-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  line-height: 0;
  border: none;
  border-radius: 0;
  cursor: zoom-in;
  background: #fff;
}

.speakers-page .panel-item__poster-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  vertical-align: top;
}

.speakers-page .panel-item__poster-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgb(15 23 42 / 0.82) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.speakers-page .panel-item__poster-btn:hover .panel-item__poster-overlay,
.speakers-page .panel-item__poster-btn:focus-visible .panel-item__poster-overlay {
  opacity: 1;
}

.speakers-page .panel-item__poster-btn:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: -2px;
}

.speakers-page .panel-item__media-placeholder {
  min-height: 14rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.speakers-page .panel-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.speakers-page .panel-item .speaker-detail-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.speakers-page .speaker-detail-card .home-panels__card-index {
  display: none;
}

.speakers-page .panel-item--split .speaker-detail-card .home-panels__card-head {
  padding: 0.9rem 1rem 0.75rem;
}

.speakers-page .panel-item--split .speaker-detail-card .home-panels__card-body {
  padding: 0 1rem 1rem;
  flex: 1;
}

.speakers-page .panels-page__count-num {
  color: #0d9488;
}

.speaker-item .home-panels__card-accent {
  background: linear-gradient(90deg, #0d9488, #6366f1);
}

.speaker-detail-card__talk {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
}

.speaker-detail-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.speaker-detail-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #6366f1);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.speaker-detail-card__btn:hover {
  background: linear-gradient(135deg, #0f766e, #4f46e5);
}

.speakers-page__day + .speakers-page__day {
  margin-top: 2rem;
}

/* Kongre program akışı */
.program-page {
  position: relative;
  padding: 0 0 1.75rem;
  margin-top: -2.5rem;
  overflow: visible;
}

.program-page__shell {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.08);
}

@media (min-width: 768px) {
  .program-page__shell {
    padding: 2rem 2rem 2.25rem;
  }
}

.program-page__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.program-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--eyebrow-bg);
  border: 1px solid var(--eyebrow-border);
  border-radius: 999px;
}

.program-page__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
}

.program-page__stat {
  margin: 0;
}

.program-page__stat dd {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.program-page__stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0f766e;
}

.program-page__hint {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.program-filters {
  margin-bottom: 1.5rem;
}

.program-filters__bar {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgb(15 23 42 / 0.04);
}

@media (min-width: 768px) {
  .program-filters__bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.25rem;
    padding: 1.1rem 1.2rem;
  }
}

.program-filters__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.85rem;
  flex: 1;
  min-width: 0;
}

@media (min-width: 640px) {
  .program-filters__fields {
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  }
}

@media (min-width: 1100px) {
  .program-filters__fields {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.program-filters__field {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.program-filters__field--search {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .program-filters__field--search {
    grid-column: auto;
  }
}

@media (min-width: 1100px) {
  .program-filters__field--search {
    grid-column: span 1;
  }
}

.program-filters__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.program-filters__label i {
  font-size: 0.7rem;
  color: #0f766e;
}

.program-filters__control {
  position: relative;
  display: block;
}

.program-filters__select,
.program-filters__input {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 2rem 0.5rem 0.7rem;
  font-size: 0.875rem;
  font-family: inherit;
  font-weight: 500;
  color: #0f172a;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.6rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  appearance: none;
}

.program-filters__select {
  cursor: pointer;
}

.program-filters__select:hover,
.program-filters__input:hover {
  border-color: rgb(20 184 166 / 0.45);
}

.program-filters__select:focus,
.program-filters__input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(20 184 166 / 0.15);
}

.program-filters__chevron {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  font-size: 0.65rem;
  color: #94a3b8;
  pointer-events: none;
  transform: translateY(-50%);
}

.program-filters__control--search .program-filters__input {
  padding-left: 2.35rem;
}

.program-filters__search-icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
  pointer-events: none;
  transform: translateY(-50%);
}

.program-filters__control--search:focus-within .program-filters__search-icon {
  color: #0f766e;
}

.program-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}

.program-filters__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.program-filters__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgb(13 148 136 / 0.28);
}

.program-filters__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(13 148 136 / 0.35);
}

.program-filters__btn--ghost {
  color: #475569;
  background: #fff;
  border-color: #e2e8f0;
}

.program-filters__btn--ghost:hover {
  color: #0f766e;
  border-color: rgb(20 184 166 / 0.4);
  background: #f0fdfa;
}

.program-filters__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.program-page__empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #64748b;
}

.program-page__empty i {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #94a3b8;
}

.program-page__days {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.program-day {
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.04);
}

.program-day__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  color: #fff;
  background: linear-gradient(105deg, #0f172a 0%, #134e4a 55%, #0f766e 100%);
}

.program-day__index {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 0.45rem;
}

.program-day__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.program-day__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.program-day__date {
  font-weight: 600;
}

.program-day__note {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.8;
}

.program-day__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgb(255 255 255 / 0.15);
  border-radius: 999px;
}

.program-flow {
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
}

.program-flow__row {
  display: grid;
  grid-template-columns: 4.25rem 2rem minmax(0, 1fr);
  gap: 0 0.85rem;
  align-items: stretch;
  padding: 0 1rem;
}

.program-flow__row:not(:last-child) .program-flow__rail::after {
  position: absolute;
  top: 1.85rem;
  bottom: 0;
  left: 50%;
  width: 2px;
  content: '';
  background: linear-gradient(180deg, rgb(20 184 166 / 0.35) 0%, rgb(20 184 166 / 0.08) 100%);
  transform: translateX(-50%);
}

.program-flow__time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.85rem 0;
  text-align: right;
}

.program-flow__time-start {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f766e;
}

.program-flow__time-end {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.6875rem;
  line-height: 1.2;
  color: #94a3b8;
}

.program-flow__rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0.85rem 0;
}

.program-flow__node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.5625rem;
  color: #fff;
  background: #0d9488;
  border-radius: 999px;
  box-shadow: 0 0 0 4px #fff;
}

.program-flow__row--break .program-flow__node,
.program-flow__row--lunch .program-flow__node {
  background: #94a3b8;
}

.program-flow__row--social .program-flow__node,
.program-flow__row--gala .program-flow__node {
  background: #d97706;
}

.program-flow__row--opening .program-flow__node,
.program-flow__row--closing .program-flow__node {
  background: #1d4ed8;
}

.program-flow__card {
  min-width: 0;
  padding: 0.75rem 0;
  border-top: 1px solid rgb(241 245 249 / 0.9);
}

.program-flow__row:first-child .program-flow__card {
  border-top: none;
}

.program-flow__card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.25rem;
}

.program-flow__chip {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 0.25rem;
}

.program-flow__row--gala .program-flow__chip,
.program-flow__row--social .program-flow__chip {
  color: #b45309;
  background: #fffbeb;
}

.program-flow__room {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

.program-flow__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.program-flow__speaker {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.program-flow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgb(226 232 240 / 0.85);
}

.program-flow__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.15rem;
  padding: 0.35rem 0.75rem 0.35rem 0.45rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.program-flow__action-btn:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.program-flow__action-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  font-size: 0.75rem;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}

.program-flow__action-label {
  white-space: nowrap;
}

.program-flow__action-chevron {
  flex-shrink: 0;
  margin-left: 0.1rem;
  font-size: 0.65rem;
  opacity: 0.75;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.program-flow__action-btn--detail {
  color: #0f766e;
  background: #f0fdfa;
  border-color: rgb(20 184 166 / 0.35);
}

.program-flow__action-btn--detail .program-flow__action-icon {
  color: #0f766e;
  background: rgb(255 255 255 / 0.75);
}

.program-flow__action-btn--detail:hover {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.22);
  transform: translateY(-1px);
}

.program-flow__action-btn--detail:hover .program-flow__action-icon {
  color: #fff;
  background: rgb(255 255 255 / 0.2);
}

.program-flow__action-btn--live {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 4px 12px rgb(13 148 136 / 0.25);
}

.program-flow__action-btn--live .program-flow__action-icon {
  color: #fff;
  background: rgb(255 255 255 / 0.18);
}

.program-flow__action-btn--live:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  border-color: #14b8a6;
  box-shadow: 0 6px 18px rgb(13 148 136 / 0.32);
  transform: translateY(-1px);
}

.program-flow__action-btn--live:hover .program-flow__action-chevron {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Program session detail */
.program-session-page {
  margin-top: -2.5rem;
  padding-bottom: 3.5rem;
}

.program-session-hero {
  position: relative;
  padding: 1.5rem 0 1.75rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 38%, #f8fafc 100%);
  border-bottom: 1px solid rgb(20 184 166 / 0.2);
}

.program-session-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgb(20 184 166 / 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(15 118 110 / 0.08), transparent 50%);
  pointer-events: none;
}

.program-session-hero__inner {
  position: relative;
  z-index: 1;
}

.program-session-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.program-session-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0f766e;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.program-session-breadcrumb__link:hover {
  color: #0d9488;
}

.program-session-breadcrumb__sep {
  color: #94a3b8;
}

.program-session-breadcrumb__current {
  color: #64748b;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-session-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.program-session-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #334155;
  background: rgb(255 255 255 / 0.85);
  border: 1px solid rgb(226 232 240 / 0.95);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.program-session-chip i {
  font-size: 0.7rem;
  color: #0f766e;
}

.program-session-chip--type {
  color: #0f766e;
  background: #f0fdfa;
  border-color: rgb(20 184 166 / 0.35);
}

.program-session-chip--mode {
  color: #1e40af;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.program-session-chip--mode i {
  color: #2563eb;
}

.program-session-chip--hall i {
  color: #b45309;
}

.program-session-chip__muted {
  font-weight: 500;
  color: #94a3b8;
}

.program-session-hero__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.program-session-hero__moderator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
}

.program-session-hero__moderator i {
  color: #0f766e;
}

.program-session-hero__moderator strong {
  color: #0f172a;
  font-weight: 700;
}

.program-session-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.program-session-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.program-session-btn:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.program-session-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.8rem;
  border-radius: 50%;
}

.program-session-btn__external {
  font-size: 0.7rem;
  opacity: 0.85;
}

.program-session-btn--calendar {
  color: #0f766e;
  background: #fff;
  border-color: rgb(20 184 166 / 0.4);
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.06);
}

.program-session-btn--calendar .program-session-btn__icon {
  color: #0f766e;
  background: #f0fdfa;
}

.program-session-btn--calendar:hover {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 6px 18px rgb(13 148 136 / 0.28);
  transform: translateY(-1px);
}

.program-session-btn--calendar:hover .program-session-btn__icon {
  color: #fff;
  background: rgb(255 255 255 / 0.2);
}

.program-session-btn--live {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.3);
}

.program-session-btn--live .program-session-btn__icon {
  background: rgb(255 255 255 / 0.18);
}

.program-session-btn--live:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 8px 22px rgb(13 148 136 / 0.35);
  transform: translateY(-1px);
}

.program-session-btn--ghost {
  color: #475569;
  background: #fff;
  border-color: #e2e8f0;
}

.program-session-btn--ghost:hover {
  color: #0f766e;
  border-color: rgb(20 184 166 / 0.4);
  background: #f8fafc;
}

.program-session-btn--block {
  width: 100%;
}

.program-session-body {
  padding-top: 1.5rem;
}

.program-session-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .program-session-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
    gap: 1.75rem;
  }
}

.program-session-block {
  margin-bottom: 1.35rem;
  padding: 1.25rem 1.35rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.05);
}

.program-session-block__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.program-session-block__title i {
  color: #0f766e;
  font-size: 0.9rem;
}

.program-session-prose {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.program-session-block--about {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.program-session-detail {
  display: grid;
  gap: 1.35rem;
}

.program-session-detail__subtitle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-session-detail__subtitle i {
  font-size: 0.8rem;
}

.program-session-detail__subtitle--speakers {
  color: #6d28d9;
}

.program-session-detail__agenda {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.program-session-detail__agenda-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid #f1f5f9;
}

.program-session-detail__agenda-item:first-child {
  border-top: none;
}

.program-session-detail__agenda-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 0.5rem;
}

.program-session-detail__agenda-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #334155;
  padding-top: 0.2rem;
}

.program-session-detail__speaker-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-session-detail__speaker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #7c3aed;
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.04);
}

.program-session-detail__speaker-avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #5b21b6;
  background: #f3e8ff;
  border-radius: 50%;
}

.program-session-detail__speaker-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.program-session-detail__speaker-name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.program-session-detail__speaker-role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.program-session-speakers-showcase__grid {
  display: grid;
  gap: 1rem;
}

.program-session-speaker-card {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.05);
}

.program-session-speaker-card__media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.program-session-speaker-card__photo {
  width: 6.5rem;
  height: 6.5rem;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
}

.program-session-speaker-card__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  height: 6.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #5b21b6;
  background: linear-gradient(145deg, #f3e8ff 0%, #ede9fe 100%);
  border: 2px solid #ddd6fe;
  border-radius: 0.75rem;
}

.program-session-speaker-card__name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.program-session-speaker-card__role {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
}

.program-session-speaker-card__inst {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.program-session-speaker-card__talk {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #475569;
}

.program-session-speaker-card__bio {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.program-session-speaker-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.65rem;
}

.program-session-speaker-card__btn,
.program-session-speaker-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: transparent;
}

.program-session-speaker-card__btn {
  color: #6d28d9;
}

.program-session-speaker-card__link {
  color: #0f766e;
}

.program-session-workshop__trainer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  color: #334155;
}

@media (max-width: 640px) {
  .program-session-speaker-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .program-session-speaker-card__media {
    justify-content: center;
  }

  .program-session-speaker-card__inst {
    justify-content: center;
  }
}

.program-session-speakers {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-session-speaker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.program-session-speaker__avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 50%;
}

.program-session-speaker__body {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.program-session-speaker__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.program-session-speaker__role {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: capitalize;
}

.program-session-presentations {
  display: grid;
  gap: 0.65rem;
}

.program-session-presentation {
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #0d9488;
  border-radius: 0.65rem;
}

.program-session-presentation__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.program-session-presentation__summary {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.presentation-schedule {
  display: grid;
  gap: 0.75rem;
}

.presentation-schedule__hall,
.presentation-schedule__chair {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #334155;
}

.presentation-schedule__hall i {
  margin-right: 0.35rem;
  color: #0d9488;
}

.presentation-schedule__chair strong {
  font-weight: 700;
  color: #0f172a;
}

.presentation-schedule__list {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.presentation-schedule__item {
  display: grid;
  gap: 0.35rem;
}

.presentation-schedule__item-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}

.presentation-schedule__time {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #c2410c;
  white-space: nowrap;
}

.presentation-schedule__badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #166534;
  background: #dcfce7;
  border-radius: 999px;
}

.presentation-schedule__badge--online {
  color: #1d4ed8;
  background: #dbeafe;
}

.presentation-schedule__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
}

.presentation-schedule__authors {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #c2410c;
}

.presentation-schedule__presenter {
  font-weight: 700;
}

.program-session-aside {
  position: relative;
}

@media (min-width: 960px) {
  .program-session-aside {
    position: sticky;
    top: 5.5rem;
  }
}

.program-session-card {
  padding: 1.15rem 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.07);
}

.program-session-card__title {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.program-session-facts {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.program-session-fact {
  display: grid;
  gap: 0.15rem;
}

.program-session-fact dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
}

.program-session-fact dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #0f172a;
}

.program-session-fact__sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.program-session-card__actions {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 960px) {
  .program-session-card__actions .program-session-btn--calendar {
    display: none;
  }
}

.program-session-chip--status {
  font-weight: 700;
}

.program-session-chip--status-upcoming {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.program-session-chip--status-upcoming i {
  color: #d97706;
}

.program-session-chip--status-live {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.program-session-chip--status-live i {
  color: #10b981;
  animation: program-session-pulse 1.4s ease-in-out infinite;
}

.program-session-chip--status-ended {
  color: #475569;
  background: #f1f5f9;
  border-color: #e2e8f0;
}

.program-session-chip--status-ended i {
  color: #94a3b8;
}

.program-session-chip--panel {
  color: #7c3aed;
  text-decoration: none;
  background: #f5f3ff;
  border-color: #ddd6fe;
}

.program-session-chip--panel i {
  color: #7c3aed;
}

.program-session-chip--join {
  gap: 0.4rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border: 1px solid #0f766e;
  box-shadow: 0 2px 10px rgb(15 118 110 / 0.25);
}

button.program-session-chip--join {
  font-family: inherit;
  font-size: inherit;
}

.program-session-chip--join-login {
  color: #0f766e;
  text-decoration: none;
  background: #f0fdfa;
  border-color: #99f6e4;
  box-shadow: none;
}

.program-session-chip--join-login:hover {
  color: #fff;
  background: #0f766e;
}

.program-session-chip--join-locked {
  color: #64748b;
  cursor: default;
  background: #f1f5f9;
  border-color: #e2e8f0;
  box-shadow: none;
}

.program-bildiri-hall__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-start;
  justify-content: space-between;
}

.program-bildiri-hall__head-main {
  min-width: 0;
  flex: 1 1 12rem;
}

.program-bildiri-hall__live {
  flex-shrink: 0;
}

.program-bildiri-hall__join {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.45rem 0.85rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: var(--brand-800);
  border: 1px solid var(--brand-800);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgb(13 74 50 / 0.18);
  transition: background 0.15s ease, transform 0.15s ease;
}

button.program-bildiri-hall__join {
  font-family: inherit;
}

.program-bildiri-hall__join:hover {
  color: #fff;
  background: var(--brand-700);
  border-color: var(--brand-700);
  transform: translateY(-1px);
}

.program-bildiri-hall__join--login {
  color: var(--brand-800);
  background: var(--brand-50);
  border-color: rgb(18 107 69 / 0.25);
  box-shadow: none;
}

.program-bildiri-hall__join--login:hover {
  color: #fff;
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.program-session-chip--panel:hover {
  color: #5b21b6;
  background: #ede9fe;
}

@keyframes program-session-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.program-session-quickfacts {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.program-session-quickfact {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.program-session-quickfact__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 0.5rem;
}

.program-session-quickfact__icon--mode {
  color: #2563eb;
  background: #eff6ff;
}

.program-session-quickfact__icon--hall {
  color: #b45309;
  background: #fffbeb;
}

.program-session-quickfact__body {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.program-session-quickfact__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.program-session-quickfact__value {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

.program-session-quickfact__sub {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
}

.program-session-panel {
  margin-bottom: 1.35rem;
}

.program-session-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
}

.program-session-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-session-panel__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
}

.program-session-panel__catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.3);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}

.program-session-panel__catalog-link:hover {
  color: #fff;
  background: #0f766e;
}

.program-session-panel__card {
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.08);
}

.program-session-panel__description {
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid #e2e8f0;
}

.program-session-panel__description-title {
  margin: 0.75rem 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.home-panels__topics--solo {
  padding: 0.65rem 0.85rem 0;
}

.program-session-live {
  scroll-margin-top: 5.5rem;
  margin-bottom: 1.35rem;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgb(20 184 166 / 0.22);
  border-radius: 1.1rem;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.06);
}

.program-session-live__head {
  padding: 1.1rem 1.25rem 0.35rem;
  border-bottom: 1px solid rgb(226 232 240 / 0.8);
}

.program-session-live__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-session-live__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.program-session-live--stream {
  padding: 1.15rem 1.25rem 1.25rem;
}

.program-session-live__stream-desc {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  color: #64748b;
}

.program-session-live--pending {
  background: #fffbeb;
  border-color: #fde68a;
}

.program-session-online-pending {
  padding: 0 1.4rem 1.25rem;
}

.program-session-online-pending__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.program-session-online-pending__admin {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #92400e;
  background: rgb(255 255 255 / 0.7);
  border: 1px solid #fde68a;
  border-radius: 0.5rem;
}

.program-session-btn--outline {
  color: #0f766e;
  background: #fff;
  border: 1px solid rgb(20 184 166 / 0.45);
  box-shadow: none;
}

.program-session-btn--outline:hover {
  background: #f0fdfa;
}

/* Çevrimiçi oturum — erişim kısıtlı kartı */
.program-session-live--locked {
  background: linear-gradient(145deg, #f0fdfa 0%, #fff 42%, #f8fafc 100%);
  border-color: rgb(20 184 166 / 0.32);
  box-shadow: 0 14px 36px rgb(15 23 42 / 0.07);
}

.program-session-live-locked {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 1.4rem 1.1rem;
}

.program-session-live-locked__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  border-radius: 1rem;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(145deg, #14b8a6 0%, #0d9488 55%, #0f766e 100%);
  box-shadow: 0 10px 24px rgb(13 148 136 / 0.28);
}

.program-session-live-locked__content {
  min-width: 0;
}

.program-session-live--locked .program-session-live__head {
  display: none;
}

.program-session-live--locked .program-session-live__eyebrow {
  margin-bottom: 0.35rem;
  color: #0d9488;
  letter-spacing: 0.12em;
}

.program-session-live--locked .program-session-live__title {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.program-session-live-locked__lead {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.program-session-live-locked__criteria {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.program-session-live-locked__criteria li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #334155;
}

.program-session-live-locked__criteria i {
  flex-shrink: 0;
  margin-top: 0.12rem;
  font-size: 0.8rem;
  color: #0d9488;
}

.program-session-live-locked__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.4rem 1.2rem;
  background: rgb(248 250 252 / 0.92);
  border-top: 1px solid rgb(226 232 240 / 0.95);
}

.program-session-live-locked__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.program-session-live-locked__btn:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.program-session-live-locked__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 4px 16px rgb(13 148 136 / 0.28);
}

.program-session-live-locked__btn--primary:hover {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 8px 22px rgb(13 148 136 / 0.32);
  transform: translateY(-1px);
}

.program-session-live-locked__btn--secondary {
  color: #0f766e;
  background: #fff;
  border-color: rgb(20 184 166 / 0.35);
}

.program-session-live-locked__btn--secondary:hover {
  color: #0d9488;
  background: #f0fdfa;
  border-color: #0d9488;
}

@media (max-width: 540px) {
  .program-session-live-locked {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .program-session-live-locked__badge {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.05rem;
  }

  .program-session-live-locked__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .program-session-live-locked__btn {
    width: 100%;
  }
}

.program-flow__row--break .program-flow__card,
.program-flow__row--lunch .program-flow__card {
  opacity: 0.92;
}

.program-flow__row--break .program-flow__title,
.program-flow__row--lunch .program-flow__title {
  font-weight: 600;
  color: #475569;
}

.program-page__actions {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-subtle);
}

.program-page__actions-title {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.program-page__actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 540px) {
  .program-page__actions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .program-page__actions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.program-page__action-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgb(20 184 166 / 0.35);
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, background 0.15s;
}

.program-page__action-btn:hover {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  border-color: #0d9488;
  box-shadow: 0 8px 22px rgb(13 148 136 / 0.28);
  transform: translateY(-1px);
}

.program-page__action-btn:hover .program-page__action-icon {
  color: #fff;
  background: rgb(255 255 255 / 0.2);
}

.program-page__action-btn:hover .program-page__action-label,
.program-page__action-btn:hover .program-page__action-chevron {
  color: #fff;
}

.program-page__action-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  font-size: 0.9rem;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 0.45rem;
  transition: background 0.15s, color 0.15s;
}

.program-page__action-label {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  transition: color 0.15s;
}

.program-page__action-chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #94a3b8;
  transition: color 0.15s, transform 0.15s;
}

.program-page__action-btn:hover .program-page__action-chevron {
  transform: translateX(2px);
}

body.site-inner .program-page {
  flex: 1 0 auto;
}

/* Program — çok günlü düzen, gün sekmeleri, kompakt akış */
.program-page__body {
  display: block;
}

.program-page__body--split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .program-page__body--split {
    grid-template-columns: minmax(11.5rem, 14rem) minmax(0, 1fr);
    gap: 1.5rem 1.75rem;
  }
}

.program-page__content {
  min-width: 0;
}

.program-page__aside {
  position: sticky;
  top: 4.75rem;
  z-index: 4;
  padding: 0.85rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 8px 22px rgb(15 23 42 / 0.05);
}

@media (max-width: 1023px) {
  .program-page__aside {
    top: 3.75rem;
    margin: 0 -0.15rem;
    padding: 0.65rem 0.75rem;
  }
}

.program-page__aside-title {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.program-day-nav {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
  .program-day-nav {
    flex-direction: column;
    overflow: visible;
  }
}

.program-day-nav__btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.55rem 0.65rem;
  align-items: center;
  flex: 0 0 auto;
  min-width: min(100%, 13.5rem);
  padding: 0.55rem 0.65rem;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

@media (max-width: 1023px) {
  .program-day-nav__btn {
    min-width: 10.5rem;
  }
}

.program-day-nav__btn:hover {
  border-color: rgb(20 184 166 / 0.45);
}

.program-day-nav__btn.is-active,
.program-day-nav__btn[aria-selected='true'] {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0f766e 100%);
  border-color: #0f766e;
  box-shadow: 0 8px 20px rgb(15 118 110 / 0.22);
}

.program-day-nav__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 0.4rem;
}

.program-day-nav__btn.is-active .program-day-nav__num,
.program-day-nav__btn[aria-selected='true'] .program-day-nav__num {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

.program-day-nav__text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.program-day-nav__date {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.program-day-nav__label {
  overflow: hidden;
  font-size: 0.6875rem;
  line-height: 1.3;
  color: #64748b;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-day-nav__btn.is-active .program-day-nav__date,
.program-day-nav__btn.is-active .program-day-nav__label,
.program-day-nav__btn[aria-selected='true'] .program-day-nav__date,
.program-day-nav__btn[aria-selected='true'] .program-day-nav__label {
  color: rgb(255 255 255 / 0.92);
}

.program-day-nav__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 999px;
}

.program-day-nav__btn.is-active .program-day-nav__count,
.program-day-nav__btn[aria-selected='true'] .program-day-nav__count {
  color: #fff;
  background: rgb(255 255 255 / 0.16);
}

.program-download-card {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding: 0.85rem 0.9rem;
  background: linear-gradient(145deg, #0f766e 0%, #134e4a 52%, #0f172a 100%);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgb(15 118 110 / 0.22);
  color: #fff;
}

.program-download-card--compact {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .program-download-card {
    margin-top: 1rem;
  }
}

.program-download-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.15rem;
  background: rgb(255 255 255 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 0.65rem;
}

.program-download-card__eyebrow {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.72);
}

.program-download-card__title {
  margin: 0.15rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.program-download-card__desc {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.82);
}

.program-download-card__meta {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #ecfdf5;
  background: rgb(255 255 255 / 0.12);
  border-radius: 999px;
}

.program-download-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.62rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  background: #fff;
  border: none;
  border-radius: 0.55rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.program-download-card__btn:hover {
  color: #0d9488;
  background: #f0fdfa;
  box-shadow: 0 6px 18px rgb(15 23 42 / 0.16);
  transform: translateY(-1px);
}

.program-download-card--compact {
  grid-template-columns: 1fr;
  align-items: start;
}

.program-download-card--compact .program-download-card__actions {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .program-download-card--compact {
    grid-template-columns: 1fr;
  }
}

.program-filters--sticky {
  position: sticky;
  top: 3.65rem;
  z-index: 3;
  margin-bottom: 1rem;
  padding-top: 0.15rem;
  padding-bottom: 0.35rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.98) 70%, rgb(255 255 255 / 0));
}

@media (min-width: 768px) {
  .program-filters--sticky {
    top: 4.25rem;
  }
}

@media (min-width: 1024px) {
  .program-page__body--split .program-filters--sticky {
    top: 0;
    position: relative;
    padding-top: 0;
    background: transparent;
  }
}

.program-page__days {
  gap: 1rem;
}

.program-day[data-program-day-panel] .program-day__head {
  position: sticky;
  top: 3.65rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .program-day[data-program-day-panel] .program-day__head {
    top: 4.25rem;
  }
}

@media (min-width: 1024px) {
  .program-page__body--split .program-day[data-program-day-panel] .program-day__head {
    top: 0;
    position: relative;
  }
}

.program-flow__row {
  grid-template-columns: 3.85rem 1.65rem minmax(0, 1fr);
  gap: 0 0.65rem;
  padding: 0 0.85rem;
}

.program-flow__time {
  padding: 0.6rem 0;
}

.program-flow__rail {
  padding: 0.6rem 0;
}

.program-flow__row:not(:last-child) .program-flow__rail::after {
  top: 1.55rem;
}

.program-flow__card {
  padding: 0.55rem 0;
}

.program-flow__title {
  font-size: 0.9375rem;
  line-height: 1.4;
}

.program-flow__speaker {
  font-size: 0.78125rem;
}

.program-flow__actions {
  gap: 0.35rem;
  margin-top: 0.45rem;
  padding-top: 0;
  border-top: none;
}

.program-flow__action-btn {
  min-height: 1.85rem;
  padding: 0.2rem 0.55rem 0.2rem 0.35rem;
  font-size: 0.75rem;
}

.program-flow__action-icon {
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.6875rem;
}

.program-flow__row--break,
.program-flow__row--lunch {
  opacity: 0.95;
}

.program-flow__row--break .program-flow__time,
.program-flow__row--lunch .program-flow__time,
.program-flow__row--break .program-flow__rail,
.program-flow__row--lunch .program-flow__rail,
.program-flow__row--break .program-flow__card,
.program-flow__row--lunch .program-flow__card {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.program-flow__row--break .program-flow__title,
.program-flow__row--lunch .program-flow__title {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .program-flow__row {
    grid-template-columns: 5rem 2.25rem minmax(0, 1fr);
    gap: 0 1.15rem;
    padding: 0 1.25rem;
  }

  .program-flow__title {
    font-size: 1rem;
  }
}

/* Program — saat blokları & kompakt ajanda */
.program-day__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #f8fafc 100%);
  border-bottom: 1px solid #dbeafe;
}

.program-hour-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  min-width: 0;
}

.program-hour-jump__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.28rem 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgb(20 184 166 / 0.35);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
}

.program-hour-jump__btn:hover {
  color: #fff;
  background: #0f766e;
  border-color: #0f766e;
  transform: translateY(-1px);
}

.program-day__toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.program-day__toggle {
  padding: 0.32rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.program-day__toggle:hover {
  color: #0f766e;
  border-color: rgb(20 184 166 / 0.45);
}

.program-agenda {
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
  background: #f8fafc;
}

.program-agenda--dense {
  padding: 0.65rem;
}

.program-hour {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.04);
}

.program-hour.is-open {
  border-color: rgb(20 184 166 / 0.35);
  box-shadow: 0 10px 24px rgb(15 118 110 / 0.1);
}

.program-hour__head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.65rem 0.85rem;
  align-items: center;
  width: 100%;
  padding: 0.7rem 0.85rem;
  text-align: left;
  cursor: pointer;
  background: linear-gradient(90deg, #fff 0%, #f8fafc 100%);
  border: none;
  transition: background 0.15s;
}

.program-hour__head:hover {
  background: linear-gradient(90deg, #f0fdfa 0%, #ecfeff 100%);
}

.program-hour.is-open .program-hour__head {
  color: #fff;
  background: linear-gradient(105deg, #0f172a 0%, #134e4a 52%, #0f766e 100%);
}

.program-hour__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 0.45rem;
}

.program-hour.is-open .program-hour__badge {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

.program-hour__label {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.program-hour__time {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.program-hour.is-open .program-hour__time {
  color: #fff;
}

.program-hour__range {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.6875rem;
  color: #64748b;
}

.program-hour.is-open .program-hour__range {
  color: rgb(255 255 255 / 0.82);
}

.program-hour__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 999px;
}

.program-hour.is-open .program-hour__count {
  color: #fff;
  background: rgb(255 255 255 / 0.16);
}

.program-hour__chevron {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.program-hour.is-open .program-hour__chevron {
  color: #fff;
  transform: rotate(180deg);
}

.program-hour__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e2e8f0;
}

.program-agenda__row {
  display: grid;
  grid-template-columns: 4.1rem 1.55rem minmax(0, 1fr) auto;
  gap: 0.45rem 0.65rem;
  align-items: center;
  padding: 0.45rem 0.75rem 0.45rem 0.65rem;
  border-bottom: 1px solid #f1f5f9;
  border-left: 3px solid #0d9488;
  transition: background 0.12s ease;
}

.program-agenda__row:last-child {
  border-bottom: none;
}

.program-agenda__row:hover {
  background: linear-gradient(90deg, rgb(240 253 250 / 0.85) 0%, #fff 100%);
}

.program-agenda__row--session {
  border-left: 3px solid #0d9488;
}

.program-agenda__row--panel {
  border-left: 3px solid #7c3aed;
}

.program-agenda__row--workshop {
  border-left: 3px solid #2563eb;
}

.program-agenda__row--opening,
.program-agenda__row--closing {
  border-left: 3px solid #1d4ed8;
}

.program-agenda__row--social,
.program-agenda__row--gala {
  border-left: 3px solid #d97706;
}

.program-agenda__row--break,
.program-agenda__row--lunch,
.program-agenda__row--minor {
  border-left: 3px solid #94a3b8;
  background: #f8fafc;
}

.program-agenda__time {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-align: right;
}

.program-agenda__time-start {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: #0f766e;
}

.program-agenda__time-end {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.625rem;
  line-height: 1.1;
  color: #94a3b8;
}

.program-agenda__type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 1.45rem;
  height: 1.45rem;
  font-size: 0.625rem;
  color: #fff;
  background: #0d9488;
  border-radius: 999px;
}

.program-agenda__type-label {
  display: none;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.program-agenda__row--panel .program-agenda__type { background: #7c3aed; }
.program-agenda__row--workshop .program-agenda__type { background: #2563eb; }
.program-agenda__row--social .program-agenda__type,
.program-agenda__row--gala .program-agenda__type { background: #d97706; }
.program-agenda__row--break .program-agenda__type,
.program-agenda__row--lunch .program-agenda__type { background: #94a3b8; }

.program-agenda__body {
  min-width: 0;
}

.program-agenda__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.program-agenda__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

.program-agenda__row--minor .program-agenda__title {
  font-weight: 600;
  color: #475569;
}

.program-agenda__room {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.08rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
}

.program-agenda__speaker {
  margin: 0.12rem 0 0;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #64748b;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-agenda__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}

.program-agenda__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.18rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.program-agenda__link--detail {
  color: #0f766e;
  background: #f0fdfa;
  border-color: rgb(20 184 166 / 0.35);
}

.program-agenda__link--detail:hover {
  color: #fff;
  background: #0f766e;
}

.program-agenda__link--live {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.program-agenda__link--live:hover {
  filter: brightness(1.05);
}

@media (max-width: 720px) {
  .program-agenda__row {
    grid-template-columns: 3.6rem 1.35rem minmax(0, 1fr);
    padding: 0.5rem 0.65rem;
  }

  .program-agenda__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 0.15rem;
  }

  .program-agenda__speaker {
    white-space: normal;
  }
}

@media (min-width: 992px) {
  .program-agenda__row {
    grid-template-columns: 4.5rem auto minmax(0, 1fr) auto;
    gap: 0.55rem 0.85rem;
    padding: 0.5rem 0.9rem;
  }

  .program-agenda__type {
    width: auto;
    min-height: 1.5rem;
    padding: 0.2rem 0.5rem 0.2rem 0.4rem;
  }

  .program-agenda__type-label {
    display: inline;
  }

  .program-agenda__title {
    font-size: 0.9375rem;
  }
}

/* —— Member registration (/kayit) —— */
.auth-register {
  flex: 1 0 auto;
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, #f8f4ef 0%, #f3ede6 48%, #efe8df 100%);
}

.auth-register__wrap {
  display: flex;
  justify-content: center;
}

.auth-register__card {
  width: 100%;
  max-width: 34rem;
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1.25rem;
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 18px 48px rgb(15 23 42 / 0.08);
}

.auth-register__head {
  margin-bottom: 1.5rem;
  text-align: center;
}

.auth-register__title {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
}

.auth-register__subtitle {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #64748b;
}

.auth-register__alert {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.65rem;
}

.auth-register__alert-list {
  margin: 0;
  padding-left: 1.1rem;
}

.auth-register__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-register__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-register__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.auth-register__req {
  color: #e11d48;
}

.auth-register__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 0.65rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-register__input::placeholder {
  color: #94a3b8;
}

.auth-register__input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15);
}

.phone-field__row {
  display: flex;
  gap: 0.55rem;
  align-items: stretch;
}

.phone-field__code {
  flex: 0 0 7.25rem;
  min-width: 7.25rem;
  padding-right: 1.75rem;
}

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

.auth-modal__field .phone-field__code {
  flex-basis: 6.5rem;
  min-width: 6.5rem;
}

.mprof-field .phone-field__row {
  margin-top: 0.35rem;
}

.auth-register__select {
  appearance: none;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
}

.auth-register__hint {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.auth-register__check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #475569;
  cursor: pointer;
}

.auth-register__check input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #e07a5f;
}

.auth-register__check--inline {
  margin: -0.15rem 0 0;
}

.auth-register__member-box {
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.auth-register__member-help {
  margin: 0.5rem 0 0 1.65rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.auth-register__legal {
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.auth-register__legal-intro {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: #64748b;
}

.auth-register__legal-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}

.auth-register__legal-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #e8edf2;
}

.auth-register__legal-list li:last-child {
  border-bottom: none;
}

.auth-register__legal-list a {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0d9488;
  text-decoration: none;
}

.auth-register__legal-list a::before {
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 400;
  color: #94a3b8;
  content: "\f15c";
}

.auth-register__legal-list a:hover {
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#tc-field.is-muted .auth-register__input,
#auth-tc-field.is-muted .auth-modal__input,
#profile-tc-field.is-muted .mprof-input {
  opacity: 0.55;
  background: #f8fafc;
}

.citizenship-fields {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-register__password {
  position: relative;
}

.auth-register__password .auth-register__input {
  padding-right: 2.75rem;
}

.auth-register__pw-toggle {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #94a3b8;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0.35rem;
  transform: translateY(-50%);
  transition: color 0.15s;
}

.auth-register__pw-toggle:hover {
  color: #475569;
}

.auth-register__pricing {
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgb(13 148 136 / 0.22);
  border-radius: 0.75rem;
}

.auth-register__pricing-title {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766e;
}

.auth-register__pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0;
}

.auth-register__pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.auth-register__pricing-row dt {
  margin: 0;
  color: #475569;
}

.auth-register__pricing-row dd {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
}

.auth-register__pricing-row--discount dd {
  color: #0f766e;
}

.auth-register__pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.75rem 0 0;
  padding-top: 0.65rem;
  font-size: 0.9375rem;
  border-top: 1px dashed rgb(13 148 136 / 0.25);
}

.auth-register__pricing-total strong {
  font-size: 1.125rem;
  color: #0f766e;
}

.auth-register__pricing-note {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}

.auth-register__submit {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #e8896f 0%, #e07a5f 45%, #d46b52 100%);
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 8px 22px rgb(224 122 95 / 0.35);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.auth-register__submit:hover {
  filter: brightness(1.03);
  box-shadow: 0 10px 26px rgb(224 122 95 / 0.42);
  transform: translateY(-1px);
}

.auth-register__footer {
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  font-size: 0.875rem;
  text-align: center;
  color: #64748b;
  border-top: 1px solid #e8edf3;
}

.auth-register__footer a {
  margin-left: 0.25rem;
  font-weight: 700;
  color: #e07a5f;
  text-decoration: none;
}

.auth-register__footer a:hover {
  text-decoration: underline;
}

body.site-inner .auth-register {
  flex: 1 0 auto;
}

@media (min-width: 640px) {
  .auth-register__card {
    padding: 2.25rem 2rem 2rem;
  }
}

/* —— Auth modal (giriş / kayıt popup) —— */
body.auth-modal-open {
  overflow: hidden;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.55);
  backdrop-filter: blur(3px);
}

.auth-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 58rem;
  max-height: min(94vh, 58rem);
  overflow: hidden;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 28px 80px rgb(15 23 42 / 0.28);
}

.auth-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #64748b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.auth-modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.auth-modal__aside {
  position: relative;
  display: none;
  flex-direction: column;
  padding: 0;
  color: var(--text-heading);
  background: #f3f6f7;
  min-height: 0;
  overflow: hidden;
  border-right: 1px solid rgb(15 43 50 / 0.06);
}

.auth-modal__aside-bg {
  position: absolute;
  inset: 0;
  background-color: #f3f6f7;
  background-image: url('../images/auth/aside-pattern.png');
  background-repeat: repeat;
  background-position: center;
  background-size: 420px auto;
  opacity: 0.95;
  pointer-events: none;
}

.auth-modal__aside-accent {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-800) 0%, #0d9488 55%, #5eead4 100%);
  pointer-events: none;
}

.auth-modal__aside-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  min-height: 0;
  padding: 2rem 1.65rem 1.85rem 1.85rem;
}

.auth-modal__congress {
  padding-bottom: 0.25rem;
}

.auth-modal__congress-eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.65rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: rgb(255 255 255 / 0.82);
  border: 1px solid rgb(15 118 110 / 0.12);
  border-radius: 999px;
}

.auth-modal__congress-eyebrow i {
  font-size: 0.75rem;
  opacity: 0.9;
}

.auth-modal__congress-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--text-heading);
}

.auth-modal__congress-meta {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.auth-modal__congress-meta li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-body);
}

.auth-modal__congress-meta i {
  flex-shrink: 0;
  width: 1rem;
  margin-top: 0.12rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--primary-600);
}

.auth-modal__aside-cta {
  flex-shrink: 0;
}

.auth-modal__aside-card {
  padding: 1.15rem 1.2rem 1.25rem;
  background: rgb(255 255 255 / 0.9);
  border: 1px solid rgb(15 43 50 / 0.08);
  border-radius: 0.75rem;
  box-shadow:
    0 1px 2px rgb(15 43 50 / 0.04),
    0 12px 32px rgb(15 43 50 / 0.06);
  backdrop-filter: blur(10px);
}

.auth-modal__aside-title {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
}

.auth-modal__aside-text {
  margin: 0.55rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.auth-modal__aside-btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.72rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand-800) 0%, #0d9488 100%);
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.auth-modal__aside-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgb(13 148 136 / 0.32);
}

.auth-modal__main {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 2.75rem 1.25rem 1.25rem;
  overflow: hidden;
}

.auth-modal__panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.auth-modal__panel > .auth-modal__head,
.auth-modal__panel > .auth-modal__alert,
.auth-modal__panel > .auth-modal__social,
.auth-modal__panel > .auth-modal__divider {
  flex-shrink: 0;
}

.auth-modal__head {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1rem;
}

.auth-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
  color: var(--primary-700);
  background: var(--nav-active-bg);
  border-radius: 999px;
}

.auth-modal__title {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.auth-modal__alert {
  margin-bottom: 0.85rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.8125rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
}

.auth-modal__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  transition: background 0.15s, border-color 0.15s;
}

.auth-modal__social:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.auth-modal__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4285f4;
  background: #fff;
  border-radius: 0.2rem;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.auth-modal__divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
}

.auth-modal__divider::before,
.auth-modal__divider::after {
  flex: 1;
  height: 1px;
  content: '';
  background: #e2e8f0;
}

.auth-modal__form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 0;
}

.auth-modal__form--register {
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.auth-modal__panel--register {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.auth-modal__form--register .auth-modal__fields {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: 0.15rem;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.auth-modal__form--register .auth-modal__fields::-webkit-scrollbar {
  width: 6px;
}

.auth-modal__form--register .auth-modal__fields::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.auth-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-modal__panel--register .auth-modal__head {
  margin-bottom: 0.65rem;
}

.auth-modal__panel--register .auth-modal__divider {
  margin: 0.5rem 0;
}

.auth-modal__panel--register .auth-modal__field {
  gap: 0.2rem;
}

.auth-modal__panel--register .auth-modal__input,
.auth-modal__panel--register .auth-modal__select {
  min-height: 2.15rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.8125rem;
}

.auth-modal__panel--register .auth-modal__member-box {
  padding: 0.55rem 0.65rem;
}

.auth-modal__panel--register .auth-modal__member-help {
  margin-top: 0.35rem;
  font-size: 0.7rem;
}

.auth-modal__check--compact {
  margin: 0.1rem 0;
}

.auth-modal__panel--register .auth-modal__form-footer {
  flex-shrink: 0;
  margin-top: 0;
  padding: 0.75rem 0 0.15rem;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -10px 24px rgb(255 255 255 / 0.92);
}

.auth-modal__form-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.85rem;
  margin-top: 0.5rem;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
}

.auth-modal__form--register .auth-modal__submit {
  margin-top: 0;
}

.auth-modal__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.auth-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.auth-modal__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
}

.auth-modal__input {
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid #d5dde8;
  border-radius: 0.45rem;
}

.auth-modal__input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px var(--eyebrow-bg);
}

.auth-modal__select {
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
}

.auth-modal__password {
  position: relative;
}

.auth-modal__password .auth-modal__input {
  padding-right: 2.5rem;
}

.auth-modal__pw-toggle {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  padding: 0.25rem;
  color: #94a3b8;
  cursor: pointer;
  background: transparent;
  border: none;
  transform: translateY(-50%);
}

.auth-modal__check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
  cursor: pointer;
}

.auth-modal__check input {
  margin-top: 0.15rem;
  accent-color: var(--primary-700);
}

.auth-modal__check--terms a {
  font-weight: 600;
  color: var(--primary-700);
  text-decoration: underline;
}

.auth-modal__member-box {
  padding: 0.75rem 0.85rem;
  background: var(--nav-active-bg);
  border: 1px solid var(--eyebrow-border);
  border-radius: 0.65rem;
}

.auth-modal__hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.auth-modal__member-help {
  margin: 0.45rem 0 0 1.65rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.auth-modal__submit {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: var(--brand-800);
  border: 1px solid var(--brand-800);
  border-radius: 0.5rem;
  transition: background 0.15s, border-color 0.15s;
}

.auth-modal__submit:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.site-header__actions button.btn-header-outline,
.site-header__actions button.btn-header-primary {
  font: inherit;
  cursor: pointer;
}

@media (min-width: 768px) {
  .auth-modal__grid {
    grid-template-columns: minmax(0, 34%) minmax(0, 66%);
  }

  .auth-modal__aside {
    display: flex;
  }

  .auth-modal__aside-inner {
    padding: 2.25rem 1.75rem;
  }

  .auth-modal__congress-title {
    font-size: 1.25rem;
  }

  .auth-modal__main {
    padding: 2.75rem 1.75rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .auth-modal {
    padding: 0.5rem;
    align-items: flex-end;
  }

  .auth-modal__dialog {
    max-height: 94vh;
    border-radius: 1rem 1rem 0 0;
  }

  .auth-modal__field-row {
    grid-template-columns: 1fr;
  }
}

/* —— Legal document popup (üyelik / gizlilik) —— */
.legal-doc-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.legal-doc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.6);
  backdrop-filter: blur(2px);
}

.legal-doc-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 40rem;
  max-height: min(88vh, 42rem);
  overflow: hidden;
  background: #fff;
  border-radius: 0.85rem;
  box-shadow: 0 24px 64px rgb(15 23 42 / 0.3);
}

.legal-doc-modal__head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-doc-modal__title {
  margin: 0;
  padding-right: 0.5rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
}

.legal-doc-modal__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #64748b;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.legal-doc-modal__body {
  flex: 1;
  min-height: 0;
  padding: 1rem 1.25rem;
  overflow-y: auto;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body);
  scrollbar-width: thin;
}

.legal-doc-modal__body .legal-doc {
  font-size: 0.8125rem;
  line-height: 1.65;
}

.legal-doc-modal__body .legal-doc__meta {
  padding: 0.65rem 0.85rem;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: #f8fafc;
  border-left: 3px solid var(--primary-600);
  border-radius: 0 0.35rem 0.35rem 0;
}

.legal-doc-modal__body .legal-doc__part {
  margin: 1.35rem 0 0.65rem;
  padding-bottom: 0.35rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-800);
  border-bottom: 1px solid rgb(15 43 50 / 0.1);
}

.legal-doc-modal__body .legal-doc h2:not(.legal-doc__part) {
  margin: 1rem 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-heading);
}

.legal-doc-modal__body .legal-doc p {
  margin: 0 0 0.7rem;
  text-align: justify;
}

.legal-doc-modal__body .legal-doc__definitions {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid rgb(15 43 50 / 0.08);
  border-radius: 0.5rem;
}

.legal-doc-modal__body .legal-doc__definitions dt {
  margin-top: 0.55rem;
  font-weight: 700;
  color: var(--text-heading);
}

.legal-doc-modal__body .legal-doc__definitions dt:first-child {
  margin-top: 0;
}

.legal-doc-modal__body .legal-doc__definitions dd {
  margin: 0.15rem 0 0;
  padding-left: 0;
  color: var(--text-body);
}

.legal-doc-modal__body .legal-doc__table {
  width: 100%;
  margin: 0.5rem 0 1rem;
  font-size: 0.75rem;
  border-collapse: collapse;
}

.legal-doc-modal__body .legal-doc__table th,
.legal-doc-modal__body .legal-doc__table td {
  padding: 0.5rem 0.55rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgb(15 43 50 / 0.1);
}

.legal-doc-modal__body .legal-doc__table th {
  font-weight: 700;
  color: var(--text-heading);
  background: #f1f5f9;
}

.legal-doc-modal__body .legal-doc__table tbody tr:nth-child(even) {
  background: rgb(248 250 252 / 0.8);
}

.legal-doc-modal__body .legal-doc__olist {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc-modal__body .legal-doc__olist li {
  margin-bottom: 0.35rem;
}

.legal-doc-modal__body .legal-doc__note {
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
  background: #fffbeb;
  border-radius: 0.35rem;
}

.legal-doc-modal__body .legal-doc__footer {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

.legal-doc-modal__body .legal-doc a {
  color: var(--primary-700);
  text-decoration: underline;
}

.legal-doc-modal__body h2,
.legal-doc-modal__body h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  color: var(--text-heading);
}

.legal-doc-modal__body p {
  margin: 0 0 0.75rem;
}

.legal-doc-modal__empty {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-doc-modal__foot {
  flex-shrink: 0;
  padding: 0.85rem 1.25rem 1.15rem;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
}

.legal-doc-modal__hint {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.legal-doc-modal__confirm {
  width: 100%;
  min-height: 2.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: var(--brand-800);
  border: 1px solid var(--brand-800);
  border-radius: 0.5rem;
}

.legal-doc-modal__confirm:hover:not(:disabled) {
  background: var(--brand-700);
  border-color: var(--brand-700);
}

.legal-doc-modal__confirm.is-disabled,
.legal-doc-modal__confirm:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.auth-modal__legal-block {
  margin-bottom: 0.35rem;
  padding: 0.7rem 0.8rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.auth-modal__panel--register .auth-modal__legal-block {
  margin-bottom: 0.25rem;
}

.auth-modal__legal-intro {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #64748b;
}

.auth-modal__legal-intro i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

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

.auth-modal__legal-item {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e8edf2;
}

.auth-modal__legal-item:last-child {
  border-bottom: none;
}

.auth-modal__legal-item.is-done .auth-modal__legal-link {
  color: #0f766e;
}

.auth-modal__legal-item.is-done .auth-modal__legal-link i {
  color: #059669;
}

.auth-modal__legal-status {
  flex-shrink: 0;
  color: #059669;
  font-size: 0.8125rem;
}

.auth-modal__submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.auth-modal__legal-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  min-width: 0;
  padding: 0.1rem 0;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0d9488;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.12s;
}

.auth-modal__legal-link i {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.auth-modal__legal-link span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-modal__legal-link:hover {
  color: #0f766e;
}

.auth-modal__legal-link:hover span {
  text-decoration-thickness: 2px;
}

.auth-modal__check--terms {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}

.auth-modal__check--terms span {
  font-weight: 500;
}

/* —— İletişim sayfası —— */
.contact-page {
  padding: 2.75rem 0 3.5rem;
}

.contact-page__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-page__alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.65rem;
}

.contact-page__alert--success {
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.contact-page__alert i {
  margin-top: 0.1rem;
  font-size: 1.1rem;
}

.contact-page__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.75rem;
  }
}

.contact-page__info-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #f3f6f7;
  border: 1px solid rgb(15 43 50 / 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.06);
}

.contact-page__info-bg {
  position: absolute;
  inset: 0;
  background-color: #f3f6f7;
  background-image: url('../images/auth/aside-pattern.png');
  background-repeat: repeat;
  background-position: center;
  background-size: 420px auto;
  opacity: 0.9;
  pointer-events: none;
}

.contact-page__info-accent {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-800) 0%, #0d9488 55%, #5eead4 100%);
  pointer-events: none;
}

.contact-page__info-inner {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem 1.85rem 1.65rem;
}

.contact-page__eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: rgb(255 255 255 / 0.85);
  border: 1px solid rgb(15 118 110 / 0.12);
  border-radius: 999px;
}

.contact-page__info-title {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
}

.contact-page__lead {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

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

.contact-channel {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgb(15 43 50 / 0.07);
}

.contact-channel:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-channel__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.95rem;
  color: var(--primary-700);
  background: #fff;
  border: 1px solid rgb(15 118 110 / 0.15);
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgb(15 43 50 / 0.05);
}

.contact-channel__icon--wa {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  padding-top: 0.15rem;
}

.contact-channel__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-channel__value {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-heading);
  text-decoration: none;
  word-break: break-word;
}

a.contact-channel__value:hover {
  color: var(--primary-700);
}

.contact-channel__value--text {
  font-weight: 500;
}

.contact-page__social {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgb(15 43 50 / 0.08);
}

.contact-page__social-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-page__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-page__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.9rem;
  color: var(--brand-800);
  background: #fff;
  border: 1px solid rgb(15 43 50 / 0.1);
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.contact-page__social-btn:hover {
  color: #fff;
  background: var(--brand-800);
  transform: translateY(-1px);
}

.contact-page__form-card {
  height: 100%;
  padding: 1.75rem 1.5rem 1.85rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.07);
}

.contact-page__form-head {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-page__form-title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
}

.contact-page__form-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  gap: 1rem;
}

.contact-form__row--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-form__row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
}

.contact-form__req {
  color: #dc2626;
}

.contact-form__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-body);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.contact-form__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgb(20 184 166 / 0.15);
}

.contact-form__input.is-invalid {
  border-color: #f87171;
  background: #fef2f2;
}

.contact-form__textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form__error {
  margin: 0;
  font-size: 0.75rem;
  color: #dc2626;
}

.contact-form__submit {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.35rem;
  padding: 0.7rem 1.25rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand-800) 0%, #0d9488 100%);
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.contact-form__submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 20px rgb(13 148 136 / 0.34);
  transform: translateY(-1px);
}

.contact-form__submit i {
  font-size: 0.85rem;
}

/* —— İletişim: kongre yeri —— */
.contact-congress {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgb(255 255 255 / 0.92);
  border: 1px solid rgb(15 118 110 / 0.18);
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgb(15 43 50 / 0.05);
}

.contact-congress--banner {
  margin-bottom: 0;
  padding: 1.35rem 1.4rem;
  background: linear-gradient(135deg, var(--brand-800) 0%, #0d9488 100%);
  border: none;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgb(13 148 136 / 0.22);
  color: #fff;
}

.contact-congress__label {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-700);
}

.contact-congress--banner .contact-congress__label {
  color: rgb(255 255 255 / 0.8);
}

.contact-congress__title {
  margin: 0 0 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
}

.contact-congress--banner .contact-congress__title {
  font-size: 1.2rem;
  color: #fff;
}

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

.contact-congress__meta li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-body);
}

.contact-congress--banner .contact-congress__meta li {
  color: rgb(255 255 255 / 0.92);
}

.contact-congress__meta i {
  flex-shrink: 0;
  width: 1rem;
  margin-top: 0.12rem;
  text-align: center;
  color: var(--primary-600);
}

.contact-congress--banner .contact-congress__meta i {
  color: #99f6e4;
}

.contact-congress--has-map.contact-congress--banner {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .contact-congress--has-map.contact-congress--banner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

.contact-congress--has-map:not(.contact-congress--banner) .contact-congress__map-wrap {
  margin-top: 1rem;
}

.contact-congress__map-wrap {
  overflow: hidden;
  border-radius: 0.65rem;
  background: #e2e8f0;
  box-shadow: inset 0 0 0 1px rgb(15 43 50 / 0.08);
}

.contact-congress--banner .contact-congress__map-wrap {
  min-height: 220px;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);
}

.contact-congress__map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

@media (min-width: 900px) {
  .contact-congress--banner .contact-congress__map-wrap iframe {
    min-height: 100%;
  }

  .contact-congress--has-map.contact-congress--banner .contact-congress__map-wrap {
    min-height: 240px;
  }
}

.contact-page__wrap > .contact-congress--banner {
  margin-top: 1.25rem;
}

/* —— Önemli tarihler (iletişim şeridi + sayfa) —— */
.page-dates-strip {
  padding: 1.35rem 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgb(15 43 50 / 0.06);
}

.page-dates-strip__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.page-dates-strip__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
}

.page-dates-strip__title i {
  font-size: 0.95rem;
  color: var(--primary-600);
}

.page-dates-strip__lead {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.page-dates-strip__link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-700);
  text-decoration: none;
}

.page-dates-strip__link:hover {
  color: var(--primary-600);
}

.page-dates-strip__list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .page-dates-strip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .page-dates-strip__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-dates-strip__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.page-dates-strip__item.is-next {
  background: #f0fdfa;
  border-color: rgb(13 148 136 / 0.35);
  box-shadow: 0 0 0 1px rgb(13 148 136 / 0.08);
}

.page-dates-strip__item.is-past {
  opacity: 0.72;
}

.page-dates-strip__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3rem;
  padding: 0.35rem 0.45rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgb(15 118 110 / 0.15);
  border-radius: 0.5rem;
}

.page-dates-strip__day {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-700);
}

.page-dates-strip__month {
  margin-top: 0.15rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-dates-strip__item-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
}

.page-dates-strip__item-desc {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.page-dates-strip__badge,
.page-dates-strip__countdown {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.page-dates-strip__badge {
  color: #fff;
  background: var(--primary-600);
}

.page-dates-strip__countdown {
  color: var(--primary-800);
  background: rgb(20 184 166 / 0.15);
}

/* Önemli Tarihler sayfası */
.page-dates {
  position: relative;
  padding: 2.75rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #f8fafc 100%);
}

.page-dates__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-dates__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 12% 18%, rgb(13 148 136 / 0.08) 0%, transparent 42%),
    radial-gradient(circle at 88% 8%, rgb(245 158 11 / 0.07) 0%, transparent 38%),
    linear-gradient(rgb(148 163 184 / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(148 163 184 / 0.04) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
}

.page-dates__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
}

.page-dates__orb--teal {
  top: -4rem;
  right: 8%;
  width: 18rem;
  height: 18rem;
  background: rgb(13 148 136 / 0.14);
}

.page-dates__orb--amber {
  bottom: 10%;
  left: -4rem;
  width: 14rem;
  height: 14rem;
  background: rgb(245 158 11 / 0.1);
}

.page-dates__shell {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.page-dates__intro {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  text-align: center;
}

.page-dates__summary {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .page-dates__summary {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.page-dates__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid rgb(226 232 240 / 0.95);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 43 50 / 0.05);
}

.page-dates__stat--next {
  border-color: rgb(13 148 136 / 0.28);
  background: linear-gradient(145deg, #fff 0%, rgb(240 253 250 / 0.9) 100%);
  box-shadow: 0 12px 32px rgb(13 148 136 / 0.1);
}

.page-dates__stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-dates__stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
}

.page-dates__stat--next .page-dates__stat-value {
  font-size: 1rem;
}

.page-dates__stat-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

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

.page-dates__item {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0 1rem;
  padding-bottom: 1rem;
}

.page-dates__item:last-child {
  padding-bottom: 0;
}

.page-dates__item:last-child .page-dates__rail::after {
  display: none;
}

.page-dates__rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 1.35rem;
}

.page-dates__rail::after {
  content: "";
  position: absolute;
  top: 2.1rem;
  bottom: -1rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgb(13 148 136 / 0.35), rgb(203 213 225 / 0.5));
}

.page-dates__dot {
  position: relative;
  z-index: 1;
  width: 0.85rem;
  height: 0.85rem;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #94a3b8;
  box-shadow: 0 0 0 2px rgb(148 163 184 / 0.35);
}

.page-dates__item.is-next .page-dates__dot {
  width: 1rem;
  height: 1rem;
  background: var(--primary-600);
  box-shadow: 0 0 0 4px rgb(13 148 136 / 0.2);
}

.page-dates__item.is-upcoming .page-dates__dot {
  background: #0d9488;
  box-shadow: 0 0 0 2px rgb(13 148 136 / 0.25);
}

.page-dates__card {
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgb(15 43 50 / 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-dates__card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgb(15 43 50 / 0.08);
}

.page-dates__item.is-next .page-dates__card {
  border-color: rgb(13 148 136 / 0.35);
  box-shadow: 0 14px 36px rgb(13 148 136 / 0.14);
}

.page-dates__item.is-past .page-dates__card {
  background: rgb(248 250 252 / 0.92);
}

.page-dates__item.is-past .page-dates__card-title,
.page-dates__item.is-past .page-dates__date-day {
  color: #64748b;
}

.page-dates__card-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.page-dates__date-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 3.75rem;
  padding: 0.55rem 0.65rem;
  text-align: center;
  background: linear-gradient(155deg, var(--brand-800, #0f4c5c), #0d9488);
  border-radius: 0.75rem;
  color: #fff;
}

.page-dates__item.is-past .page-dates__date-badge {
  background: linear-gradient(155deg, #94a3b8, #cbd5e1);
}

.page-dates__date-day {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-dates__date-month {
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
}

.page-dates__card-main {
  min-width: 0;
  flex: 1;
}

.page-dates__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.4rem;
}

.page-dates__type {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #0f766e;
  background: rgb(204 251 241 / 0.65);
  border-radius: 999px;
}

.page-dates__type i {
  font-size: 0.625rem;
  opacity: 0.9;
}

.page-dates__pill {
  padding: 0.18rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.page-dates__pill--next {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.page-dates__pill--past {
  color: #64748b;
  background: #e2e8f0;
}

.page-dates__card-title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-heading);
}

.page-dates__card-when {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.page-dates__card-when time {
  font-weight: 500;
  color: #475569;
}

.page-dates__card-relative {
  color: var(--primary-700);
  font-weight: 600;
}

.page-dates__card-desc {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
  border-top: 1px solid #f1f5f9;
}

.page-dates__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-800, #0f4c5c) 0%, #0d9488 100%);
  border-radius: 1.1rem;
  color: #fff;
  box-shadow: 0 16px 40px rgb(13 148 136 / 0.22);
}

@media (min-width: 768px) {
  .page-dates__cta {
    flex-direction: row;
    align-items: center;
    padding: 1.35rem 1.5rem;
  }
}

.page-dates__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.25rem;
  background: rgb(255 255 255 / 0.14);
  border-radius: 0.75rem;
}

.page-dates__cta-body {
  flex: 1;
  min-width: 0;
}

.page-dates__cta-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.page-dates__cta-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.88);
}

.page-dates__cta-btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f4c5c;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  border-radius: 0.65rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-dates__cta-btn:hover {
  color: #0f4c5c;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
}

.page-dates__empty {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.75rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgb(15 43 50 / 0.04);
}

.page-dates__empty-icon {
  font-size: 2.25rem;
  color: #94a3b8;
}

.page-dates__empty-title {
  margin: 0.85rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.page-dates__empty-hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Konaklama */
body.site-inner .accommodation-page {
  flex: 1 0 auto;
}

.accommodation-page__intro {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.accommodation-page__legacy {
  margin-bottom: 1.5rem;
}

.accommodation-page__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .accommodation-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.accommodation-hotel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.accommodation-hotel:hover {
  border-color: rgb(13 148 136 / 0.25);
  box-shadow: 0 16px 36px rgb(15 23 42 / 0.1);
}

.accommodation-hotel--featured {
  border-color: rgb(13 148 136 / 0.35);
  box-shadow: 0 12px 32px rgb(13 148 136 / 0.12);
}

.accommodation-hotel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  background: linear-gradient(135deg, #0f4c5c 0%, #0d9488 55%, #14b8a6 100%);
}

.accommodation-hotel__image {
  width: 100%;
  height: 7rem;
  object-fit: cover;
}

.accommodation-hotel__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.35rem;
  color: #fff;
  background: rgb(255 255 255 / 0.15);
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 0.85rem;
}

.accommodation-hotel__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem 1.25rem;
}

.accommodation-hotel__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.accommodation-hotel__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.accommodation-hotel__name {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-heading);
}

.accommodation-hotel__badge {
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--brand-50);
  border: 1px solid rgb(13 148 136 / 0.2);
  border-radius: 999px;
}

.accommodation-hotel__stars {
  display: flex;
  gap: 0.15rem;
  margin: 0;
  font-size: 0.75rem;
  color: #d97706;
}

.accommodation-hotel__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accommodation-hotel__meta li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.accommodation-hotel__meta i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #0f766e;
}

.accommodation-hotel__discount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--brand-50);
  border: 1px dashed rgb(13 148 136 / 0.3);
  border-radius: 0.65rem;
}

.accommodation-hotel__code-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.accommodation-hotel__code {
  padding: 0.2rem 0.5rem;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 700;
  color: #134e4a;
  background: #fff;
  border: 1px solid rgb(13 148 136 / 0.25);
  border-radius: 0.35rem;
}

.accommodation-hotel__discount-note {
  flex: 1 1 100%;
  font-size: 0.8125rem;
  color: #475569;
}

@media (min-width: 480px) {
  .accommodation-hotel__discount-note {
    flex: 1 1 auto;
  }
}

.accommodation-hotel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.accommodation-hotel__action {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgb(13 148 136 / 0.22);
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.accommodation-hotel__action:hover {
  color: #fff;
  background: var(--primary-600);
  border-color: var(--primary-600);
}

.accommodation-page__note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.accommodation-page__note i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #0f766e;
}

.accommodation-page__note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.accommodation-page__cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.accommodation-page__cta-btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #0f4c5c, #0d9488);
  border-radius: 0.65rem;
  box-shadow: 0 8px 20px rgb(13 148 136 / 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}

.accommodation-page__cta-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgb(13 148 136 / 0.35);
}

.accommodation-page__wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accommodation-page__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding-bottom: 0.5rem;
}

.accommodation-tips__heading {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accommodation-tips__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .accommodation-tips__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.accommodation-tip {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  height: 100%;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
}

.accommodation-tip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  font-size: 1rem;
  color: #0f766e;
  background: var(--brand-50);
  border-radius: 0.65rem;
}

.accommodation-tip__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accommodation-tip__text {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.accommodation-tip__link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.accommodation-tip__link:hover {
  color: var(--primary-700);
}

.accommodation-page__venue-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accommodation-page__venue-title i {
  color: #0f766e;
}

.accommodation-page__wrap > .contact-congress--banner {
  margin-top: 0;
}

.accommodation-social {
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(145deg, #fffbeb 0%, #fff 55%);
  border: 1px solid #fde68a;
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgb(180 83 9 / 0.08);
}

.accommodation-social__head {
  margin-bottom: 1.1rem;
}

.accommodation-social__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.45rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accommodation-social__title i {
  color: #b45309;
}

.accommodation-social__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #78350f;
}

.accommodation-social__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.accommodation-social__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
}

.accommodation-social__item--gala {
  border-color: #fcd34d;
  box-shadow: 0 4px 16px rgb(217 119 6 / 0.1);
}

.accommodation-social__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #b45309, #d97706);
  border-radius: 0.65rem;
}

.accommodation-social__body {
  flex: 1;
  min-width: 0;
}

.accommodation-social__chip {
  display: inline-block;
  margin-bottom: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
}

.accommodation-social__name {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accommodation-social__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.accommodation-social__meta span {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

.accommodation-social__meta i {
  color: #b45309;
}

.accommodation-social__footer {
  margin: 1rem 0 0;
  text-align: center;
}

.accommodation-social__link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b45309;
  text-decoration: none;
}

.accommodation-social__link:hover {
  color: #92400e;
}

/* Sosyal program */
body.site-inner .social-program-page {
  flex: 1 0 auto;
}

.social-program-page {
  padding-bottom: 3rem;
}

.social-program-page__wrap {
  margin-top: -2.5rem;
}

.social-program-page__shell {
  position: relative;
  z-index: 2;
}

.social-program-page__eyebrow {
  color: #b45309;
  background: #fffbeb;
  border-color: #fcd34d;
}

.social-program-page__lead {
  max-width: 42rem;
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.social-program-page__top {
  align-items: flex-start;
}

.social-program-day__head {
  border-left-color: #d97706;
}

.social-program-day__index {
  color: #b45309;
  background: #fffbeb;
  border-color: #fcd34d;
}

.social-program-page .program-flow__row--social .program-flow__node,
.social-program-page .program-flow__row--gala .program-flow__node {
  background: linear-gradient(135deg, #b45309, #d97706);
  border-color: #fbbf24;
}

.social-program-page .program-flow__row--social .program-flow__chip,
.social-program-page .program-flow__row--gala .program-flow__chip {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.social-program-page__note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
}

.social-program-page__note i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #b45309;
}

.social-program-page__note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #78350f;
}

/* —— Kayıt ve ödeme (/kayit-ve-odeme) —— */
body.site-inner .registration-page {
  flex: 1 0 auto;
}

.registration-page {
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

.registration-page__wrap {
  position: relative;
  z-index: 2;
}

.registration-page__alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.registration-page__alert--success {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.registration-page__alert--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.registration-page__alert i {
  margin-top: 0.1rem;
}

.registration-steps {
  margin-bottom: 1.5rem;
}

.registration-steps__list {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgb(15 43 50 / 0.06);
  overflow: hidden;
}

.registration-steps__item {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  background: #fff;
}

.registration-steps__item--active {
  color: #0f766e;
  background: var(--brand-50);
}

.registration-steps__item--next {
  color: #64748b;
}

.registration-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  background: rgb(15 43 50 / 0.06);
}

.registration-steps__item--active .registration-steps__num {
  color: #fff;
  background: #0d9488;
}

.registration-page__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .registration-page__grid {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.registration-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registration-summary {
  padding: 1.35rem 1.25rem;
  color: #fff;
  background: linear-gradient(145deg, #0f4c5c 0%, #0d9488 55%, #14b8a6 100%);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgb(13 148 136 / 0.25);
}

.registration-summary__eyebrow {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.75);
}

.registration-summary__congress {
  margin: 0 0 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.registration-summary__date {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1.1rem;
  font-size: 0.8125rem;
  color: rgb(255 255 255 / 0.85);
}

.registration-summary__lines {
  margin: 0 0 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.15);
}

.registration-summary__line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
}

.registration-summary__line dt {
  color: rgb(255 255 255 / 0.8);
}

.registration-summary__line dd {
  margin: 0;
  font-weight: 600;
}

.registration-summary__line--discount dd {
  color: #fde68a;
}

.registration-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.registration-summary__total span {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.85);
}

.registration-summary__total strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.registration-summary__note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.65);
}

.registration-profile {
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
}

.registration-profile__title {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.registration-profile__name {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.registration-profile__meta {
  margin: 0 0 0.2rem;
  font-size: 0.875rem;
  color: #64748b;
}

.registration-profile__badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--brand-50);
  border-radius: 999px;
}

.registration-profile__hint {
  margin: 0.65rem 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #94a3b8;
}

.registration-profile__link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.registration-profile__link:hover {
  color: #0d9488;
}

.registration-form-card {
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.08);
}

@media (min-width: 768px) {
  .registration-form-card {
    padding: 2rem 2rem 1.75rem;
  }
}

.registration-form-card__eyebrow {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.28rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f766e;
  background: var(--brand-50);
  border: 1px solid rgb(13 148 136 / 0.2);
  border-radius: 999px;
}

.registration-form-card__title {
  margin: 0 0 0.4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
}

.registration-form-card__lead {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.registration-form__section {
  margin: 0 0 1.25rem;
  padding: 0;
  border: 0;
}

.registration-form__legend {
  margin-bottom: 0.75rem;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}

.registration-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.registration-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}

.registration-form__select,
.registration-form__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 0.65rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.registration-form__select {
  appearance: none;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  cursor: pointer;
}

.registration-form__select:focus,
.registration-form__input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15);
}

.registration-participation {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .registration-participation {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.registration-participation__option {
  cursor: pointer;
}

.registration-participation__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.registration-participation__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  padding: 1rem 0.75rem;
  text-align: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 0.85rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.registration-participation__input:checked + .registration-participation__card {
  background: var(--brand-50);
  border-color: #0d9488;
  box-shadow: 0 8px 24px rgb(13 148 136 / 0.15);
}

.registration-participation__input:focus-visible + .registration-participation__card {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.registration-participation__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  color: #0f766e;
  background: #fff;
  border-radius: 0.65rem;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.06);
}

.registration-participation__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}

.registration-participation__desc {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #64748b;
}

.registration-participation__check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  color: #0d9488;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
}

.registration-participation__input:checked + .registration-participation__card .registration-participation__check {
  opacity: 1;
  transform: scale(1);
}

.registration-form__discount {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.registration-form__discount i {
  color: #94a3b8;
}

.registration-form__discount .registration-form__input {
  flex: 1;
  min-height: 2.5rem;
  padding-left: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.registration-form__discount .registration-form__input:focus {
  box-shadow: none;
}

.registration-form__error {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #dc2626;
}

.registration-form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.registration-form__submit {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0f4c5c, #0d9488);
  border: 0;
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px rgb(13 148 136 / 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.registration-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgb(13 148 136 / 0.4);
}

.registration-form__cancel {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
}

.registration-form__cancel:hover {
  color: #0f766e;
}

/* —— Bildiri gönderimi (/bildiri-gonderimi) —— */
body.site-inner .abs-page {
  flex: 1 0 auto;
}

.abs-hero {
  padding: 1.5rem 0 1.25rem;
  color: #fff;
  background: linear-gradient(125deg, #042f35 0%, #0f4c5c 50%, #0d9488 100%);
}
.abs-hero__inner { display: flex; flex-direction: column; gap: 0.35rem; }
.abs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin: 0;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.7);
}
.abs-breadcrumb a { color: #99f6e4; text-decoration: none; font-weight: 600; }
.abs-breadcrumb a:hover { color: #fff; }
.abs-hero__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

.abs-page { padding: 0 0 4rem; margin-top: -0.75rem; }
.abs-page__wrap { position: relative; z-index: 2; }
.abs-alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}
.abs-alert--error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; }
.abs-alert ul { margin: 0; padding-left: 1.1rem; }

.abs-shell {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .abs-shell { grid-template-columns: 16.5rem minmax(0, 1fr); gap: 1.5rem; }
}

.abs-aside { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 1024px) { .abs-aside { position: sticky; top: 1rem; } }

.abs-usercard {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 0.85rem;
  box-shadow: 0 6px 20px rgb(15 43 50 / 0.06);
}
.abs-usercard__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-radius: 0.65rem;
}
.abs-usercard__name { margin: 0; font-size: 0.875rem; font-weight: 700; color: #0f172a; }
.abs-usercard__meta { margin: 0.1rem 0 0; font-size: 0.75rem; color: #64748b; }
.abs-usercard__edit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 0.45rem;
  text-decoration: none;
}
.abs-usercard__edit:hover { color: #0d9488; background: #ecfdf5; }

.abs-sidecard {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgb(15 43 50 / 0.04);
}
.abs-sidecard__title {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}
.abs-sidecard__title i { color: #0d9488; font-size: 0.875rem; }

.abs-dates { margin: 0; padding: 0; list-style: none; }
.abs-dates li {
  display: grid;
  gap: 0.1rem;
  padding: 0.45rem 0;
  border-top: 1px solid #f1f5f9;
}
.abs-dates li:first-child { border-top: 0; padding-top: 0; }
.abs-dates time { font-size: 0.6875rem; font-weight: 700; color: #0d9488; text-transform: uppercase; letter-spacing: 0.04em; }
.abs-dates span { font-size: 0.8125rem; color: #475569; line-height: 1.35; }

.abs-checklist { margin: 0; padding: 0; list-style: none; }
.abs-checklist li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}
.abs-checklist li + li { margin-top: 0.45rem; }
.abs-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  background: #0d9488;
  border-radius: 50%;
}

.abs-main {
  padding: 1.35rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 12px 36px rgb(15 43 50 / 0.07);
}

.abs-form__block {
  margin: 0 0 1.75rem;
  padding: 0 0 1.75rem;
  border: none;
  border-bottom: 1px solid #f1f5f9;
}
.abs-form__block:last-of-type { border-bottom: 0; }
.abs-form__block--legal { padding-bottom: 0; margin-bottom: 0; }

.abs-legal-lead {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.abs-upload-grid {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .abs-upload-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.abs-dropzone--poster .abs-dropzone__inner i {
  color: #7c3aed;
}

.abs-legal-consents {
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.abs-legal-consents__intro {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: #64748b;
}

.abs-legal-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
}

.abs-legal-item {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e8edf2;
}

.abs-legal-item:last-child {
  border-bottom: none;
}

.abs-legal-item.is-done .abs-legal-link {
  color: #0f766e;
}

.abs-legal-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  min-width: 0;
  padding: 0.1rem 0;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0d9488;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}

.abs-legal-link::before {
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 400;
  color: #94a3b8;
  content: "\f15c";
}

.abs-legal-link:hover {
  color: #0f766e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.abs-legal-status {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: #059669;
}

.abs-legal-consents .abs-check {
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0.55rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
  background: transparent;
  border: none;
  border-top: 1px solid #e2e8f0;
  border-radius: 0;
}

.abs-legal-consents .abs-check span {
  font-weight: 500;
}

.abs-btn--primary:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.abs-form__legend {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}
.abs-form__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: #0d9488;
  border-radius: 0.4rem;
}

.abs-hint--block { margin: 0 0 1rem; }
.abs-author-row {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}
.abs-author-row__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.abs-check--inline { margin-left: auto; }
.abs-btn--xs { padding: 0.25rem 0.5rem; font-size: 0.8125rem; }

.abs-type-grid { display: grid; gap: 0.65rem; }
@media (min-width: 640px) { .abs-type-grid { grid-template-columns: 1fr 1fr; } }

.abs-type {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  transition: border-color 0.12s, background 0.12s;
}
.abs-type:hover { border-color: #99f6e4; }
.abs-type--on { border-color: #0d9488; background: #f0fdfa; }
.abs-type__input { position: absolute; opacity: 0; pointer-events: none; }
.abs-type__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.9375rem;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 0.55rem;
}
.abs-type__text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.abs-type__text strong { font-size: 0.875rem; color: #0f172a; }
.abs-type__text span { font-size: 0.75rem; line-height: 1.4; color: #64748b; }

.abs-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.abs-row--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .abs-row--2 { grid-template-columns: 1fr 1fr; } }
.abs-row .abs-field:last-child { margin-bottom: 0; }

.abs-field { margin-bottom: 1rem; }
.abs-label {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}
.abs-label abbr { color: #dc2626; text-decoration: none; }
.abs-lang {
  display: inline-flex;
  padding: 0.05rem 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  color: #fff;
  background: #0f766e;
  border-radius: 0.2rem;
}
.abs-lang--en { background: #1e3a5f; }

.abs-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.abs-input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.12);
}
.abs-input--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748b' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  background-size: 1.2rem;
  padding-right: 2rem;
}
.abs-input--area { min-height: 7rem; resize: vertical; line-height: 1.55; }

.abs-hint { display: flex; justify-content: space-between; margin: 0.3rem 0 0; font-size: 0.75rem; color: #94a3b8; }
.abs-count { font-weight: 600; color: #64748b; }
.abs-count--ok { color: #059669; }
.abs-count--warn { color: #d97706; }

.abs-dropzone { display: block; cursor: pointer; }
.abs-dropzone__input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.abs-dropzone__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px dashed #cbd5e1;
  border-radius: 0.75rem;
  transition: border-color 0.12s, background 0.12s;
}
.abs-dropzone:hover .abs-dropzone__inner,
.abs-dropzone:focus-within .abs-dropzone__inner {
  border-color: #0d9488;
  background: #f0fdfa;
}
.abs-dropzone__inner i { font-size: 1.5rem; color: #0d9488; }
.abs-dropzone__inner strong { font-size: 0.875rem; color: #0f172a; }
.abs-dropzone__inner span { font-size: 0.8125rem; color: #64748b; }

.abs-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #334155;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
}
.abs-check input { flex-shrink: 0; margin-top: 0.15rem; accent-color: #0d9488; }
.abs-check a { font-weight: 600; color: #0d9488; }

.abs-form__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.abs-btn {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background 0.12s, transform 0.12s;
}
.abs-btn--primary {
  color: #fff;
  background: #0d9488;
  box-shadow: 0 6px 16px rgb(13 148 136 / 0.28);
}
.abs-btn--primary:hover { background: #0f766e; transform: translateY(-1px); }
.abs-btn--ghost { color: #475569; background: #fff; border: 1px solid #cbd5e1; }
.abs-btn--ghost:hover { border-color: #0d9488; color: #0f766e; }

/* legacy abstract-page (yedek) */
body.site-inner .abstract-page {
  flex: 1 0 auto;
}

.abstract-page {
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

.abstract-page__wrap {
  position: relative;
  z-index: 2;
}

.abstract-page__alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.abstract-page__alert--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.abstract-page__alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.abstract-page__intro {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.abstract-page__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d9488;
}

.abstract-page__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.abstract-page__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .abstract-page__grid {
    grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.abstract-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abstract-dates {
  padding: 1.15rem 1.1rem;
  background: #0f172a;
  border-radius: 1rem;
  color: #e2e8f0;
  box-shadow: 0 12px 32px rgb(15 23 42 / 0.2);
}

.abstract-dates__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

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

.abstract-dates__item {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgb(148 163 184 / 0.15);
}

.abstract-dates__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.abstract-dates__item time {
  font-size: 0.75rem;
  font-weight: 600;
  color: #5eead4;
}

.abstract-dates__item span {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.abstract-guidelines {
  padding: 1.1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgb(15 43 50 / 0.05);
}

.abstract-guidelines__title {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.abstract-guidelines__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.abstract-guidelines__list li + li {
  margin-top: 0.4rem;
}

.abstract-profile {
  padding: 1.1rem 1.1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
}

.abstract-profile__title {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

.abstract-profile__name {
  margin: 0 0 0.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.abstract-profile__meta,
.abstract-profile__email {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.abstract-profile__email {
  margin-top: 0.35rem;
  font-weight: 600;
  color: #0f766e;
}

.abstract-profile__link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
}

.abstract-profile__link:hover {
  color: #0f766e;
}

.abstract-page__main {
  min-width: 0;
}

.abstract-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.abstract-form__section {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgb(15 43 50 / 0.06);
}

.abstract-form__section--legal {
  background: #f8fafc;
}

.abstract-form__legend {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.abstract-form__legend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  color: #0d9488;
  background: var(--brand-50);
  border-radius: 0.5rem;
}

.abstract-type-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .abstract-type-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.abstract-type-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  cursor: pointer;
  border: 2px solid #e2e8f0;
  border-radius: 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.abstract-type-card:hover {
  border-color: #99f6e4;
}

.abstract-type-card--active {
  border-color: #0d9488;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgb(13 148 136 / 0.15);
}

.abstract-type-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.abstract-type-card__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 0.65rem;
}

.abstract-type-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.abstract-type-card__body strong {
  font-size: 0.9375rem;
  color: #0f172a;
}

.abstract-type-card__body span {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}

.abstract-form__lang-pair {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .abstract-form__lang-pair {
    grid-template-columns: 1fr 1fr;
  }

  .abstract-form__lang-pair--stack {
    grid-template-columns: 1fr;
  }
}

.abstract-field {
  margin-bottom: 1rem;
}

.abstract-field:last-child {
  margin-bottom: 0;
}

.abstract-field__label {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.abstract-field__label abbr {
  color: #dc2626;
  text-decoration: none;
}

.abstract-field__lang {
  display: inline-flex;
  padding: 0.1rem 0.35rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: #0f766e;
  border-radius: 0.25rem;
}

.abstract-field__lang--en {
  background: #1e3a5f;
}

.abstract-field__control {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.abstract-field__control:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15);
}

.abstract-field__control--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2364748b' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1.25rem;
  padding-right: 2.25rem;
}

.abstract-field__control--textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.55;
}

.abstract-field__hint {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.abstract-field__count {
  font-weight: 600;
  color: #64748b;
}

.abstract-field__count--ok {
  color: #059669;
}

.abstract-field__count--warn {
  color: #d97706;
}

.abstract-upload {
  display: block;
  cursor: pointer;
}

.abstract-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.abstract-upload__zone {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  padding: 1.25rem;
  text-align: center;
  border: 2px dashed #cbd5e1;
  border-radius: 0.85rem;
  transition: border-color 0.15s, background 0.15s;
}

.abstract-upload:hover .abstract-upload__zone,
.abstract-upload:focus-within .abstract-upload__zone {
  border-color: #0d9488;
  background: #f0fdfa;
}

.abstract-upload__zone i {
  font-size: 1.5rem;
  color: #0d9488;
}

.abstract-upload__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.abstract-upload__meta {
  font-size: 0.8125rem;
  color: #64748b;
}

.abstract-legal {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  cursor: pointer;
}

.abstract-legal:last-child {
  margin-bottom: 0;
}

.abstract-legal--optional {
  background: transparent;
  border-style: dashed;
}

.abstract-legal__check {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: #0d9488;
}

.abstract-legal a {
  font-weight: 600;
  color: #0d9488;
}

.abstract-legal a:hover {
  color: #0f766e;
}

.abstract-form__actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.25rem;
}

.abstract-form__submit {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 18rem);
  padding: 0.9rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgb(13 148 136 / 0.35);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.abstract-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgb(13 148 136 / 0.4);
}

/* —— Üye paneli (/uye-panel) —— */
body.site-inner .mp-dashboard { flex: 1 0 auto; }

.mp-hero {
  padding: 2.25rem 0 2rem;
  color: #fff;
  background:
    linear-gradient(125deg, #042f35 0%, #0f4c5c 40%, #0d9488 100%),
    radial-gradient(ellipse 70% 100% at 0% 100%, rgb(20 184 166 / 0.25), transparent 50%);
}
.mp-hero__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
.mp-hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #99f6e4;
}
.mp-hero__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}
.mp-hero__sub { margin: 0.35rem 0 0; font-size: 0.875rem; color: rgb(255 255 255 / 0.8); }
.mp-hero__cta {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #92400e;
  text-decoration: none;
  background: #fef3c7;
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.15);
}
.mp-hero__cta:hover { background: #fde68a; }

.mp-hero--compact {
  padding: 1.65rem 0 1.5rem;
  background:
    linear-gradient(125deg, rgb(4 47 53 / 0.97) 0%, rgb(15 76 92 / 0.94) 42%, rgb(13 148 136 / 0.92) 100%),
    radial-gradient(ellipse 80% 120% at 100% 0%, rgb(45 212 191 / 0.22), transparent 55%);
}
.mp-hero--compact .mp-hero__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.mp-hero__back {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.55rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ecfdf5;
  text-decoration: none;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 0.55rem;
  transition: background 0.15s, border-color 0.15s;
}
.mp-hero__back:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.16);
  border-color: rgb(255 255 255 / 0.35);
}

.mp-dashboard { padding: 0 0 4rem; margin-top: -1.5rem; }
.mp-dashboard--subpage {
  padding-top: 0.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 12rem);
}
.mp-dashboard__wrap { position: relative; z-index: 2; }

.mp-alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}
.mp-alert--success { color: #047857; background: #ecfdf5; border: 1px solid #a7f3d0; }
.mp-alert--error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; }

.mp-shell {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .mp-shell { grid-template-columns: 17.5rem minmax(0, 1fr); gap: 1.5rem; }
}

.mp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .mp-sidebar { position: sticky; top: 1rem; }
}

.mp-usercard {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 43 50 / 0.06);
}
.mp-usercard__avatar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-radius: 0.75rem;
}
.mp-usercard__name { margin: 0; font-size: 0.9375rem; font-weight: 700; color: #0f172a; line-height: 1.3; }
.mp-usercard__meta { margin: 0.1rem 0 0; font-size: 0.75rem; color: #64748b; line-height: 1.35; }

.mp-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 43 50 / 0.05);
}
.mp-nav__btn {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
a.mp-nav__btn { box-sizing: border-box; }
.mp-nav__btn:hover { color: #0f766e; background: #f0fdfa; }
.mp-nav__btn--active {
  color: #0f766e;
  background: linear-gradient(90deg, #ecfdf5, #f0fdfa);
  box-shadow: inset 3px 0 0 #0d9488;
}
.mp-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.8125rem;
  color: #0d9488;
  background: #f0fdfa;
  border-radius: 0.45rem;
}
.mp-nav__btn--active .mp-nav__icon { color: #fff; background: #0d9488; }
.mp-nav__label { flex: 1; }
.mp-nav__badge {
  min-width: 1.25rem;
  padding: 0.1rem 0.4rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #0d9488;
  border-radius: 999px;
}

.mp-sidebar__foot { padding: 0 0.25rem; }
.mp-sidebar__link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
}
.mp-sidebar__link:hover { color: #0f766e; }

.mp-main {
  min-width: 0;
  padding: 1.25rem 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1.1rem;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.07);
}
@media (min-width: 768px) {
  .mp-main { padding: 1.5rem 1.75rem 1.75rem; }
}

.mp-pane__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.mp-pane__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
}
.mp-pane__lead, .mp-muted { margin: 0 0 1rem; font-size: 0.875rem; line-height: 1.55; color: #64748b; }

.mp-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, #0f4c5c 0%, #0d9488 100%);
  border-radius: 0.85rem;
}
.mp-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgb(255 255 255 / 0.15);
  border-radius: 0.65rem;
}
.mp-banner__eyebrow { margin: 0; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.mp-banner__title { margin: 0.2rem 0; font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; }
.mp-banner__desc { margin: 0; font-size: 0.8125rem; line-height: 1.5; opacity: 0.92; }

.mp-empty-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 0.85rem;
}
.mp-empty-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.125rem;
  color: #0d9488;
  background: #ccfbf1;
  border-radius: 0.75rem;
}
.mp-empty-banner h2 { margin: 0 0 0.25rem; font-size: 1rem; }
.mp-empty-banner p { margin: 0; font-size: 0.8125rem; color: #64748b; }

.mp-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .mp-metrics { grid-template-columns: repeat(4, 1fr); }
}
.mp-metric {
  position: relative;
  padding: 0.85rem 0.75rem 0.75rem;
  text-align: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}
.mp-metric__icon {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: #0d9488;
}
.mp-metric strong { display: block; font-size: 1.375rem; font-weight: 700; color: #0f172a; line-height: 1; }
.mp-metric span { display: block; margin-top: 0.2rem; font-size: 0.6875rem; color: #64748b; }

.mp-split {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .mp-split { grid-template-columns: 1fr 1fr; }
}
.mp-split--wide { margin-top: 1.25rem; }

/* Dashboard KPI & charts */
.mp-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .mp-kpis { grid-template-columns: repeat(4, 1fr); }
}
.mp-kpi {
  padding: 1rem 1rem 0.9rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 4px 14px rgb(15 43 50 / 0.04);
}
.mp-kpi--primary {
  color: #fff;
  background: linear-gradient(135deg, #0f4c5c 0%, #0d9488 100%);
  border-color: transparent;
}
.mp-kpi--primary .mp-kpi__label,
.mp-kpi--primary .mp-kpi__hint { color: rgb(255 255 255 / 0.85); }
.mp-kpi__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.mp-kpi__value {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
}
.mp-kpi--primary .mp-kpi__value { color: #fff; }
.mp-kpi__hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  color: #94a3b8;
}

.mp-dash-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
  .mp-dash-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.mp-dash-card {
  padding: 1rem 1.1rem 1.1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 4px 16px rgb(15 43 50 / 0.04);
}
.mp-dash-card--progress { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .mp-dash-card--progress { grid-column: span 1; }
}
.mp-dash-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.mp-dash-card__head h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #334155;
}
.mp-dash-card__badge {
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 999px;
}
.mp-dash-card__meta { font-size: 0.75rem; font-weight: 600; color: #64748b; }
.mp-dash-card__cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0d9488;
  text-decoration: none;
}
.mp-dash-card__cta:hover { text-decoration: underline; }

.mp-progress-ring {
  --mp-progress: 0;
  position: relative;
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: conic-gradient(#0d9488 calc(var(--mp-progress) * 1%), #e2e8f0 0);
}
.mp-progress-ring__inner {
  position: absolute;
  inset: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}
.mp-progress-ring__inner strong { font-size: 1.125rem; color: #0f172a; }
.mp-progress-ring__inner span { font-size: 0.6875rem; color: #64748b; }

.mp-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.mp-journey__item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.mp-journey__dot {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.625rem;
  color: #fff;
  background: #e2e8f0;
  border-radius: 50%;
}
.mp-journey__item--done .mp-journey__dot { background: #10b981; }
.mp-journey__text strong { display: block; font-size: 0.8125rem; color: #0f172a; }
.mp-journey__text small { display: block; font-size: 0.6875rem; color: #94a3b8; }

.mp-donut-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.mp-donut {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.mp-donut__hole {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  margin: 1.5rem auto;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}
.mp-donut__hole strong { font-size: 0.8125rem; line-height: 1.2; color: #0f172a; }
.mp-donut__hole span { font-size: 0.625rem; color: #64748b; }
.mp-donut-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: 10rem;
}
.mp-donut-legend li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem 0.5rem;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.75rem;
  color: #475569;
  border-top: 1px solid #f1f5f9;
}
.mp-donut-legend li:first-child { border-top: 0; }
.mp-donut-legend__swatch {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}
.mp-donut-legend__swatch--emerald { background: #10b981; }
.mp-donut-legend__swatch--amber { background: #f59e0b; }
.mp-donut-legend__swatch--rose { background: #f43f5e; }
.mp-donut-legend strong { font-size: 0.75rem; color: #0f172a; }

.mp-bar-chart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.mp-bar-chart__row {
  display: grid;
  grid-template-columns: minmax(5rem, 1fr) minmax(0, 2fr) auto;
  gap: 0.5rem;
  align-items: center;
}
.mp-bar-chart__label {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.3;
}
.mp-bar-chart__track {
  height: 0.45rem;
  overflow: hidden;
  background: #f1f5f9;
  border-radius: 999px;
}
.mp-bar-chart__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}
.mp-bar-chart__fill--teal { background: linear-gradient(90deg, #0f766e, #14b8a6); }
.mp-bar-chart__fill--amber { background: linear-gradient(90deg, #d97706, #fbbf24); }
.mp-bar-chart__fill--violet { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.mp-bar-chart__fill--sky { background: linear-gradient(90deg, #0284c7, #38bdf8); }
.mp-bar-chart__fill--emerald { background: linear-gradient(90deg, #059669, #34d399); }
.mp-bar-chart__fill--rose { background: linear-gradient(90deg, #e11d48, #fb7185); }
.mp-bar-chart__fill--slate { background: #94a3b8; }
.mp-bar-chart__value { font-size: 0.75rem; font-weight: 700; color: #0f172a; white-space: nowrap; }

.mp-dates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.mp-dates__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  background: #f8fafc;
  border-radius: 0.55rem;
}
.mp-dates__item--urgent {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.mp-dates__item strong { display: block; font-size: 0.8125rem; color: #0f172a; }
.mp-dates__item span { font-size: 0.6875rem; color: #64748b; }
.mp-dates__badge {
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 999px;
}
.mp-dates__item--urgent .mp-dates__badge { color: #b45309; background: #fef3c7; }

.mp-activity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
  padding: 0.55rem 0;
  border-top: 1px solid #e2e8f0;
}
.mp-activity-row:first-of-type { border-top: 0; }
.mp-activity-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.8125rem;
  border-radius: 0.5rem;
}
.mp-activity-row--teal .mp-activity-row__icon { color: #0f766e; background: #ccfbf1; }
.mp-activity-row--emerald .mp-activity-row__icon { color: #047857; background: #d1fae5; }
.mp-activity-row--amber .mp-activity-row__icon { color: #b45309; background: #fef3c7; }
.mp-activity-row--sky .mp-activity-row__icon { color: #0369a1; background: #e0f2fe; }
.mp-activity-row__title { margin: 0; font-size: 0.8125rem; font-weight: 600; color: #0f172a; }
.mp-activity-row__meta { margin: 0.1rem 0 0; font-size: 0.75rem; color: #64748b; }
.mp-activity-row time { font-size: 0.6875rem; color: #94a3b8; white-space: nowrap; }

.mp-card {
  padding: 1rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
}
.mp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.mp-card__title { margin: 0 0 0.65rem; font-size: 0.875rem; font-weight: 700; color: #334155; }

.mp-actions { display: flex; flex-direction: column; gap: 0.35rem; }
.mp-action {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.mp-action:hover { border-color: #0d9488; box-shadow: 0 4px 12px rgb(13 148 136 / 0.08); }
.mp-action i { width: 1.1rem; color: #0d9488; text-align: center; }

.mp-notif-row { padding: 0.55rem 0; border-top: 1px solid #e2e8f0; }
.mp-notif-row:first-of-type { border-top: 0; }
.mp-notif-row--unread { padding-left: 0.5rem; border-left: 3px solid #0d9488; }
.mp-notif-row__title { margin: 0; font-size: 0.8125rem; font-weight: 600; color: #0f172a; }
.mp-notif-row__msg { margin: 0.15rem 0; font-size: 0.75rem; color: #64748b; }
.mp-notif-row time { font-size: 0.6875rem; color: #94a3b8; }

.mp-list-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  margin-bottom: 0.65rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.mp-list-card:hover { border-color: #cbd5e1; box-shadow: 0 4px 16px rgb(15 43 50 / 0.04); }
.mp-list-card__eyebrow { margin: 0 0 0.2rem; font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #94a3b8; }
.mp-list-card__main h3 { margin: 0; font-size: 1rem; font-weight: 700; color: #0f172a; }
.mp-list-card__meta { margin: 0.25rem 0 0; font-size: 0.8125rem; color: #64748b; }

.mp-list-card__tag {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 999px;
}
.mp-list-card__sub { margin: 0.35rem 0 0; font-size: 0.75rem; color: #94a3b8; }
.mp-list-card__side {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.mp-list-card__actions { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: flex-end; }

.mp-tag {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #7c3aed;
  background: #ede9fe;
  border-radius: 0.25rem;
}

.mp-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.mp-badge--success { color: #047857; background: #d1fae5; }
.mp-badge--warn { color: #b45309; background: #fef3c7; }
.mp-badge--danger { color: #b91c1c; background: #fee2e2; }
.mp-badge--neutral { color: #475569; background: #e2e8f0; }

.mp-btn {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background 0.12s, transform 0.12s, box-shadow 0.12s;
}
.mp-btn--sm { padding: 0.4rem 0.75rem; font-size: 0.75rem; }
.mp-btn--primary { color: #fff; background: #0d9488; box-shadow: 0 4px 12px rgb(13 148 136 / 0.25); }
.mp-btn--primary:hover { background: #0f766e; transform: translateY(-1px); }
.mp-btn--outline { color: #334155; background: #fff; border: 1px solid #cbd5e1; }
.mp-btn--outline:hover { border-color: #0d9488; color: #0f766e; }

.mp-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d9488;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.mp-link:hover { color: #0f766e; text-decoration: underline; }

.mp-doc-groups {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.mp-doc-group__head {
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}
.mp-doc-group__title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}
.mp-doc-group__meta {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #64748b;
}
.mp-doc-subtabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0.25rem;
    background: #f1f5f9;
    border-radius: 0.75rem;
}
.mp-doc-subtabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 auto;
    min-width: 10rem;
    justify-content: center;
    padding: 0.625rem 1rem;
    border: 0;
    border-radius: 0.5rem;
    background: transparent;
    color: #64748b;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.mp-doc-subtabs__btn:hover,
.mp-doc-subtabs__btn:focus-visible {
    color: #0f766e;
}
.mp-doc-subtabs__btn.is-active {
    background: #fff;
    color: #0f766e;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.mp-doc-subtabs__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #ccfbf1;
    color: #0f766e;
    font-size: 0.6875rem;
    font-weight: 700;
}
.mp-doc-subtabs__btn.is-active .mp-doc-subtabs__count {
    background: #0f766e;
    color: #fff;
}
.mp-doc-subempty {
    grid-column: 1 / -1;
    padding: 1.5rem 1rem;
    text-align: center;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.55;
}
.mp-doc-subempty .mp-btn {
    margin-top: 0.75rem;
}
.mp-doc-tile--invoice .mp-doc-tile__icon--invoice {
    background: #eff6ff;
    color: #1d4ed8;
}
.mp-doc-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.75rem;
}
.mp-doc-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
  width: 100%;
  padding: 1rem;
  font: inherit;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  transition: border-color 0.12s, transform 0.12s, box-shadow 0.12s;
}
.mp-doc-tile:hover,
.mp-doc-tile:focus-visible {
  border-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(13 148 136 / 0.12);
}
.mp-doc-tile--always { border-color: #99f6e4; background: #f0fdfa; }
.mp-doc-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 0.55rem;
}
.mp-doc-tile strong { font-size: 0.8125rem; color: #0f172a; }
.mp-doc-tile span { font-size: 0.6875rem; line-height: 1.35; color: #64748b; }

body.mp-doc-modal-open { overflow: hidden; }

.mp-doc-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.mp-doc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.55);
}
.mp-doc-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(56rem, 100%);
  max-height: min(92vh, 52rem);
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.2);
  overflow: hidden;
}
.mp-doc-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.mp-doc-modal__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.mp-doc-modal__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.mp-doc-modal__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.5rem;
  cursor: pointer;
}
.mp-doc-modal__btn:hover { background: #ccfbf1; }
.mp-doc-modal__btn--icon {
  padding: 0.45rem 0.55rem;
  color: #64748b;
  background: transparent;
  border-color: #e2e8f0;
}
.mp-doc-modal__btn--icon:hover { color: #0f172a; background: #f1f5f9; }
.mp-doc-modal__body {
  flex: 1;
  min-height: 0;
  background: #f1f5f9;
}
.mp-doc-modal__frame {
  display: block;
  width: 100%;
  height: min(78vh, 44rem);
  border: none;
  background: #f1f5f9;
}

.mp-notif-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.mp-notif-card--unread { background: #f0fdfa; margin: 0 -0.5rem; padding: 0.85rem 0.5rem; border-radius: 0.5rem; border-bottom-color: transparent; }
.mp-notif-card__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4rem;
  background: #cbd5e1;
  border-radius: 50%;
}
.mp-notif-card--unread .mp-notif-card__dot { background: #0d9488; }
.mp-notif-card strong { display: block; font-size: 0.875rem; color: #0f172a; }
.mp-notif-card p { margin: 0.2rem 0; font-size: 0.8125rem; color: #64748b; line-height: 1.45; }
.mp-notif-card time { font-size: 0.75rem; color: #94a3b8; }

.mp-empty-state--warn {
  padding: 1rem 1.1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.65rem;
}

.mp-empty-state--warn p {
  color: #92400e;
}

.mp-empty-state {
  padding: 2.5rem 1rem;
  text-align: center;
  color: #64748b;
}
.mp-empty-state p { margin: 0 0 1rem; }

.mp-form__label { display: block; margin-bottom: 0.4rem; font-size: 0.8125rem; font-weight: 600; color: #334155; }
.mp-form__control {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9375rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  resize: vertical;
}
.mp-form__control:focus { outline: none; border-color: #0d9488; box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15); }
.mp-review-text { margin: 0.75rem 0 0; font-size: 0.875rem; line-height: 1.6; color: #475569; }

.mp-profile-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
}
@media (min-width: 640px) {
  .mp-profile-card { grid-template-columns: auto 1fr; align-items: start; }
}
.mp-profile-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0f4c5c, #14b8a6);
  border-radius: 1rem;
}
.mp-profile-dl { display: grid; gap: 0.65rem; margin: 0; }
.mp-profile-dl div { display: grid; gap: 0.1rem; }
@media (min-width: 480px) {
  .mp-profile-dl div { grid-template-columns: 7rem 1fr; gap: 0.5rem; align-items: baseline; }
}
.mp-profile-dl dt { margin: 0; font-size: 0.75rem; font-weight: 600; color: #94a3b8; }
.mp-profile-dl dd { margin: 0; font-size: 0.9375rem; color: #0f172a; }

.mp-logout { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid #f1f5f9; }
.mp-logout__btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #dc2626;
  background: none;
  border: none;
  cursor: pointer;
}
.mp-logout__btn:hover { color: #b91c1c; }

/* Belgeler / yaka kartı sayfaları (eski sınıf adları) */
.member-panel-btn {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.55rem;
  border: none;
  cursor: pointer;
}
.member-panel-btn--primary { color: #fff; background: #0d9488; }
.member-panel-btn--ghost { color: #334155; background: #fff; border: 1px solid #cbd5e1; }
.member-doc-toolbar { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

/* Belgeler (yazdırılabilir) */
.member-doc-sheet { padding: 2.5rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 0.5rem; box-shadow: 0 8px 30px rgb(15 43 50 / 0.08); }
.member-doc-sheet__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.member-doc-sheet__logo { height: 3rem; object-fit: contain; }
.member-doc-sheet__title { margin: 0 0 0.5rem; font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; }
.member-doc-sheet__ref { font-size: 0.8125rem; color: #64748b; }
.member-doc-sheet__body p { line-height: 1.7; color: #334155; }
.member-doc-sheet__sign { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid #e2e8f0; font-size: 0.875rem; }
.member-doc-sheet--certificate { text-align: center; border: 3px double #0d9488; }
.member-doc-sheet__ornament { height: 4px; margin: 0 auto 1.5rem; max-width: 12rem; background: linear-gradient(90deg, transparent, #0d9488, transparent); }
.member-doc-sheet__cert-label { margin: 0; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #0d9488; }
.member-doc-sheet__cert-name { margin: 0.5rem 0; font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #0f172a; }
.member-doc-sheet__cert-event { margin: 0.5rem 0; font-size: 1.125rem; font-weight: 600; color: #0f4c5c; }

/* Katılım belgesi — yatay A4 */
.member-cert-page {
  background: linear-gradient(180deg, #e8ecf1 0%, #f1f5f9 100%);
}
.member-cert-preview-banner {
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
}
.member-cert-print {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2.5rem 1.75rem;
  text-align: center;
  background: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.12);
}
.member-cert-print__frame {
  position: absolute;
  inset: 0.85rem;
  border: 2px solid rgb(13 148 136 / 0.35);
  pointer-events: none;
}
.member-cert-print__corner {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-color: #0d9488;
  border-style: solid;
  pointer-events: none;
}
.member-cert-print__corner--tl { top: 0.5rem; left: 0.5rem; border-width: 3px 0 0 3px; }
.member-cert-print__corner--tr { top: 0.5rem; right: 0.5rem; border-width: 3px 3px 0 0; }
.member-cert-print__corner--bl { bottom: 0.5rem; left: 0.5rem; border-width: 0 0 3px 3px; }
.member-cert-print__corner--br { bottom: 0.5rem; right: 0.5rem; border-width: 0 3px 3px 0; }
.member-cert-print__header { position: relative; margin-bottom: 1.25rem; }
.member-cert-print__logo {
  display: block;
  height: 3rem;
  width: auto;
  max-width: 14rem;
  margin: 0 auto 0.75rem;
  object-fit: contain;
}
.member-cert-print__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}
.member-cert-print__title {
  margin: 0.35rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f4c5c;
}
.member-cert-print__ref {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
}
.member-cert-print__body { position: relative; max-width: 42rem; margin: 0 auto 1.5rem; }
.member-cert-print__name {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}
.member-cert-print__institution {
  margin: 0.35rem 0 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f766e;
}
.member-cert-print__text {
  margin: 0.85rem 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
}
.member-cert-print__event {
  margin: 0.75rem 0 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f4c5c;
}
.member-cert-print__workshops {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}
.member-cert-print__workshops span { font-weight: 700; color: #0f766e; }
.member-cert-print__signatures {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin: 0 auto 1rem;
  max-width: 36rem;
}
.member-cert-print__sign-block { flex: 1 1 9rem; min-width: 8rem; max-width: 12rem; }
.member-cert-print__sign-image {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 0.25rem;
  object-fit: contain;
}
.member-cert-print__sign-line {
  display: block;
  height: 2.25rem;
  margin: 0 auto 0.35rem;
  border-bottom: 1px solid #94a3b8;
}
.member-cert-print__sign-name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}
.member-cert-print__sign-role {
  margin: 0.15rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: #64748b;
}
.member-cert-print__meta {
  position: relative;
  padding-top: 0.75rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
}
.member-cert-print__meta p { margin: 0.15rem 0; }
@media print {
  .member-cert-print {
    box-shadow: none;
    border-radius: 0;
    padding: 1.5rem 2rem 1.25rem;
  }
}

.member-cert-letterhead {
  position: relative;
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
  aspect-ratio: 297 / 210;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 32px rgb(15 23 42 / 0.08);
  border-radius: 4px;
}
.member-cert-letterhead__bg,
.member-cert-letterhead__pdf {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
/* Antet üzerine katman — isim başlık ile gövde metni arasında sabit bant */
.member-cert-letterhead__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.member-cert-letterhead__name-slot {
  position: absolute;
  top: var(--cert-name-top, 41%);
  left: var(--cert-pad-x, 8%);
  right: var(--cert-pad-x, 8%);
  min-height: 11%;
  max-height: 16%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.member-cert-letterhead__name,
.member-cert-print__name {
  margin: 0;
  font-size: var(--cert-name-size, 22pt);
  line-height: 1.22;
  text-align: center;
}
.member-cert-name-display__line {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.32em;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.22;
  color: #0c1929;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
}
.member-cert-name-display__title {
  display: inline;
  font-size: 0.88em;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.02em;
}
.member-cert-name-display__given {
  display: inline;
  font-size: 1em;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.02em;
}
.member-cert-name-display__family {
  display: inline;
  font-size: 1.02em;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.member-cert-letterhead--name-only .member-cert-letterhead__name-slot {
  max-height: none;
}
.member-cert-name-display__line--single,
.member-cert-letterhead__name--single-line .member-cert-name-display__line {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.member-cert-letterhead__name--single-line {
  white-space: nowrap;
  text-align: center;
  font-size: min(var(--cert-name-size, 18pt), 18pt);
  line-height: 1.15;
}
.member-cert-letterhead--name-only .member-cert-name-display__family {
  font-size: 1em;
  letter-spacing: 0.06em;
}
@media print {
  .member-cert-letterhead__name,
  .member-cert-print__name {
    font-size: var(--cert-name-size, 22pt);
  }
}
.member-cert-letterhead__institution {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.3;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.member-cert-letterhead__body-slot {
  position: absolute;
  top: var(--cert-body-top, 50%);
  left: var(--cert-pad-x, 8%);
  right: var(--cert-pad-x, 8%);
  bottom: var(--cert-pad-bottom, 22%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.member-cert-letterhead__text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #475569;
  max-width: 42rem;
}
.member-cert-letterhead__footer {
  position: absolute;
  left: var(--cert-pad-x, 8%);
  right: var(--cert-pad-x, 8%);
  bottom: 2%;
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
  text-align: center;
}
/* Eski sınıf — geriye dönük */
.member-cert-letterhead__content {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.member-cert-static {
  max-width: 70rem;
  margin: 0 auto;
}
.member-cert-static__frame {
  width: 100%;
  min-height: 70vh;
  border: none;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgb(15 23 42 / 0.08);
}
.member-cert-static__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Atölye katılım belgesi — A4 yatay, profesyonel */
.member-cert-page--workshop .container-custom {
  max-width: min(297mm, 100%);
}

.member-cert-print--workshop {
  box-sizing: border-box;
  width: 100%;
  max-width: 297mm;
  min-height: 210mm;
  aspect-ratio: 297 / 210;
  margin: 0 auto;
  padding: 9mm 12mm 7mm;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0.35rem;
  text-align: center;
}

.member-cert-print--workshop .member-cert-print__band {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488 0%, #0f766e 35%, #b45309 70%, #0d9488 100%);
  pointer-events: none;
}

.member-cert-print--workshop .member-cert-print__band--top { top: 0; }
.member-cert-print--workshop .member-cert-print__band--bottom { bottom: 0; }

.member-cert-print--workshop .member-cert-print__frame {
  inset: 5mm;
  border-width: 1.5px;
  border-color: rgb(13 148 136 / 0.45);
}

.member-cert-print--workshop .member-cert-print__frame--inner {
  inset: 7mm;
  border-width: 1px;
  border-color: rgb(13 148 136 / 0.18);
}

.member-cert-print--workshop .member-cert-print__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  color: rgb(13 148 136 / 0.045);
  pointer-events: none;
  user-select: none;
}

.member-cert-print__header--landscape {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-bottom: 0.35rem;
  text-align: left;
}

.member-cert-print__header--landscape .member-cert-print__logo {
  margin: 0;
  height: 2.75rem;
  max-width: 9rem;
}

.member-cert-print__header-text {
  text-align: center;
}

.member-cert-print--workshop .member-cert-print__title {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: 0.02em;
}

.member-cert-print__main {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 0;
  padding: 0.25rem 0.5rem;
}

.member-cert-print__body--landscape {
  max-width: none;
  margin: 0;
  text-align: left;
}

.member-cert-print__body--landscape .member-cert-print__name {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

.member-cert-print__body--landscape .member-cert-print__text {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.member-cert-workshop-card--landscape {
  margin: 0;
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.85rem 1rem;
  text-align: left;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 55%, #fffbeb 100%);
  border: 1px solid rgb(13 148 136 / 0.32);
  border-radius: 0.4rem;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.9),
    0 4px 14px rgb(15 76 92 / 0.06);
}

.member-cert-workshop-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d9488;
}

.member-cert-workshop-card__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: #0f4c5c;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.member-cert-workshop-card__meta--landscape {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: #475569;
}

.member-cert-workshop-card__meta--landscape li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
}

.member-cert-workshop-card__meta span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.member-cert-workshop-card__meta strong {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.member-cert-print__signatures--landscape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0.35rem 0 0.15rem;
  padding: 0 0.5rem;
}

.member-cert-print__sign-block--president {
  justify-self: start;
  text-align: left;
  min-width: 9rem;
  max-width: 14rem;
}

.member-cert-print__sign-block--instructor {
  justify-self: end;
  text-align: right;
  min-width: 9rem;
  max-width: 14rem;
}

.member-cert-print__sign-block--instructor .member-cert-print__sign-image,
.member-cert-print__sign-block--instructor .member-cert-print__sign-line {
  margin-left: auto;
  margin-right: 0;
}

.member-cert-print__meta--landscape {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1.25rem;
  margin-top: 0.15rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgb(13 148 136 / 0.15);
  font-size: 0.7rem;
}

.member-cert-print__meta--landscape p {
  margin: 0;
}

.member-cert-print__meta--landscape strong {
  font-weight: 600;
  color: #334155;
}

.member-cert-print__meta-site {
  flex: 1 1 100%;
  font-weight: 600;
  color: #0f766e;
}

@media (max-width: 768px) {
  .member-cert-print--workshop {
    aspect-ratio: auto;
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }

  .member-cert-print__header--landscape {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .member-cert-print__header--landscape .member-cert-print__logo {
    margin: 0 auto;
  }

  .member-cert-print__main {
    grid-template-columns: 1fr;
  }

  .member-cert-print__body--landscape {
    text-align: center;
  }

  .member-cert-workshop-card--landscape {
    text-align: center;
  }

  .member-cert-workshop-card__meta--landscape li {
    align-items: center;
  }

  .member-cert-print__signatures--landscape {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .member-cert-print__sign-block--president,
  .member-cert-print__sign-block--instructor {
    justify-self: center;
    text-align: center;
  }

  .member-cert-print__sign-block--instructor .member-cert-print__sign-image,
  .member-cert-print__sign-block--instructor .member-cert-print__sign-line {
    margin-left: auto;
    margin-right: auto;
  }
}

@media print {
  .member-cert-print--workshop {
    width: 277mm;
    max-width: none;
    min-height: auto;
    height: auto;
    aspect-ratio: auto;
    page-break-inside: avoid;
    box-shadow: none;
    padding: 8mm 10mm 6mm;
  }
}

/* Atölye belgesi — antet üzerine atölye metni */
/* Atölye anteti — satır satır (KATILIMCI / YER / ATÖLYE çizgileri) */
.member-cert-letterhead--fields .member-cert-letterhead__field {
  position: absolute;
  top: var(--field-top, 40%);
  left: var(--field-left, 45%);
  width: var(--field-width, 54%);
  max-width: var(--field-width, 54%);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: left;
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-size: var(--field-font-pt, 12pt);
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.member-cert-letterhead--workshop.member-cert-letterhead--fields .member-cert-letterhead__field--participant {
  font-weight: 700;
  color: #0c1929;
}
.member-cert-letterhead--fields .member-cert-letterhead__field--participant {
  display: flex;
  align-items: flex-start;
  min-height: 0;
  max-height: 10%;
  white-space: normal;
  text-overflow: clip;
}
.member-cert-letterhead--fields .member-cert-letterhead__field-text {
  margin: 0;
  width: 100%;
  text-align: left;
  overflow: hidden;
}
.member-cert-letterhead--fields .member-cert-letterhead__field-text .member-cert-name-display__line {
  max-width: 100%;
  overflow: hidden;
  white-space: normal;
  text-overflow: clip;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.member-cert-letterhead--fields .member-cert-letterhead__field-text .member-cert-name-display__title {
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.member-cert-letterhead--fields .member-cert-letterhead__field-text .member-cert-name-display__given {
  font-weight: 600;
}
.member-cert-letterhead--fields .member-cert-letterhead__field-text .member-cert-name-display__family {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.member-cert-letterhead--fields .member-cert-letterhead__field--location,
.member-cert-letterhead--fields .member-cert-letterhead__field--workshop {
  white-space: normal;
  text-overflow: clip;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  line-height: 1.22;
  max-height: none;
}
.member-cert-letterhead--fields .member-cert-letterhead__field--location {
  font-weight: 500;
  transform: translateY(-0.2em);
}
.member-cert-letterhead--fields .member-cert-letterhead__field--workshop {
  font-weight: 600;
  transform: translateY(-0.2em);
}
.member-cert-letterhead--fields .member-cert-letterhead__field--body {
  font-weight: 400;
  line-height: 1.42;
  white-space: normal;
  text-align: justify;
  overflow: visible;
  max-height: 28%;
}
.member-cert-letterhead--fields .member-cert-letterhead__footer {
  bottom: 2%;
  top: auto;
}

.member-cert-letterhead--workshop .member-cert-letterhead__body-slot--workshop {
  align-items: center;
  text-align: center;
}
.member-cert-letterhead__workshop-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b6914;
}
.member-cert-letterhead__workshop-name {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.member-cert-missing-template {
  max-width: 36rem;
  margin: 2rem auto;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
  color: #78350f;
  font-size: 0.9rem;
  line-height: 1.55;
}
.member-cert-missing-template p { margin: 0.35rem 0; }

/* Atölye katılım belgesi — altın çerçeveli gala (antet yoksa) */
.member-cert-print--workshop-gala {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 297mm;
  min-height: 210mm;
  aspect-ratio: 297 / 210;
  margin: 0 auto;
  padding: 10mm 12mm 8mm;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  gap: 0.4rem;
  text-align: center;
  background: linear-gradient(180deg, #fffef8 0%, #fffdf5 45%, #fff 100%);
  box-shadow: 0 12px 40px rgb(60 40 10 / 0.12);
}
.member-cert-gala__border {
  position: absolute;
  pointer-events: none;
  border: 2px solid #c9a227;
}
.member-cert-gala__border--outer {
  inset: 4mm;
}
.member-cert-gala__border--inner {
  inset: 6.5mm;
  border-width: 1px;
  border-color: rgb(201 162 39 / 0.45);
}
.member-cert-gala__medallion {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid #c9a227;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5e6b8, #c9a227 55%, #8b6914);
  box-shadow: 0 0 0 2px rgb(255 253 245 / 0.9);
  pointer-events: none;
}
.member-cert-gala__medallion--tl { top: 2.5mm; left: 2.5mm; }
.member-cert-gala__medallion--tr { top: 2.5mm; right: 2.5mm; }
.member-cert-gala__medallion--bl { bottom: 2.5mm; left: 2.5mm; }
.member-cert-gala__medallion--br { bottom: 2.5mm; right: 2.5mm; }
.member-cert-gala__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(5rem, 1fr) minmax(0, 3fr) minmax(5rem, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
}
.member-cert-gala__logo {
  display: block;
  height: 2.85rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}
.member-cert-gala__congress { min-width: 0; }
.member-cert-gala__eyebrow {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #475569;
}
.member-cert-gala__eyebrow-sep {
  margin: 0 0.35rem;
  color: #94a3b8;
}
.member-cert-gala__congress-title {
  margin: 0.2rem 0 0;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0f172a;
}
.member-cert-gala__congress-subtitle {
  margin: 0.15rem 0 0;
  font-size: clamp(0.62rem, 1.3vw, 0.78rem);
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  color: #334155;
}
.member-cert-gala__divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 0.15rem 8% 0.35rem;
  background: linear-gradient(90deg, transparent, #c9a227 15%, #c9a227 85%, transparent);
}
.member-cert-gala__divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin: -0.225rem 0 0 -0.225rem;
  background: #c9a227;
  transform: rotate(45deg);
}
.member-cert-gala__cert-title {
  position: relative;
  z-index: 1;
  margin: 0;
}
.member-cert-gala__cert-title-main {
  display: block;
  font-family: 'Great Vibes', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 400;
  line-height: 1.1;
  color: #9a7b1a;
  text-shadow: 0 1px 0 rgb(255 255 255 / 0.6);
}
.member-cert-gala__cert-title-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #64748b;
}
.member-cert-gala__recipient {
  position: relative;
  z-index: 1;
  margin: 0.15rem 0 0.35rem;
}
.member-cert-gala__name,
.member-cert-gala__name .member-cert-name-display__line,
.member-cert-gala__name .member-cert-name-display__title,
.member-cert-gala__name .member-cert-name-display__given,
.member-cert-gala__name .member-cert-name-display__family {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  font-weight: 700;
  color: #0c1929;
}
.member-cert-gala__institution {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}
.member-cert-gala__columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 1rem;
  align-items: start;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 0.5rem;
  text-align: justify;
}
.member-cert-gala__columns::before {
  content: '';
  grid-column: 2;
  grid-row: 1 / -1;
  width: 1px;
  background: linear-gradient(180deg, transparent, #c9a227 12%, #c9a227 88%, transparent);
}
.member-cert-gala__column {
  margin: 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #334155;
}
.member-cert-gala__column:first-child { grid-column: 1; }
.member-cert-gala__column:last-child { grid-column: 3; }
.member-cert-workshop-card--gala {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0.5rem auto 0.35rem;
  padding: 0.65rem 0.9rem;
  text-align: center;
  background: linear-gradient(135deg, #fffdf5 0%, #fff 50%, #fffef8 100%);
  border: 1px solid rgb(201 162 39 / 0.45);
  border-radius: 0.35rem;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.member-cert-workshop-card--gala .member-cert-workshop-card__label {
  color: #9a7b1a;
}
.member-cert-workshop-card--gala .member-cert-workshop-card__title {
  color: #0f172a;
}
.member-cert-workshop-card__meta--gala {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}
.member-cert-workshop-card__meta--gala li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  font-size: 0.75rem;
}
.member-cert-gala__signatures {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem 2rem;
  margin-top: auto;
  padding: 0.35rem 1rem 0;
}
.member-cert-gala__sign-block {
  flex: 1 1 8rem;
  min-width: 7rem;
  max-width: 13rem;
  text-align: center;
}
.member-cert-gala__sign-image {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 0.2rem;
  object-fit: contain;
}
.member-cert-gala__sign-line {
  display: block;
  height: 2rem;
  margin: 0 auto 0.25rem;
  border-bottom: 1px solid #94a3b8;
}
.member-cert-gala__sign-name {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.member-cert-gala__sign-role {
  margin: 0.12rem 0 0;
  font-size: 0.62rem;
  line-height: 1.35;
  color: #64748b;
}
.member-cert-gala__meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem 1rem;
  margin-top: 0.25rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgb(201 162 39 / 0.2);
  font-size: 0.65rem;
  color: #64748b;
}
.member-cert-gala__meta p { margin: 0; }
.member-cert-gala__meta strong { color: #334155; }

@media (max-width: 768px) {
  .member-cert-print--workshop-gala {
    aspect-ratio: auto;
    min-height: auto;
    padding: 1.25rem 1rem;
  }
  .member-cert-gala__header {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .member-cert-gala__columns {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .member-cert-gala__columns::before { display: none; }
  .member-cert-gala__column:first-child,
  .member-cert-gala__column:last-child { grid-column: 1; }
}

@media print {
  .member-cert-print--workshop-gala {
    width: 277mm;
    max-width: none;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* Davet mektubu — A4 dikey, antet üzerine metin */
.member-inv-page {
  background: linear-gradient(180deg, #e8ecf1 0%, #f1f5f9 100%);
}
.member-inv-preview-banner {
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 0.5rem;
}
.member-inv-print {
  position: relative;
  width: 100%;
  max-width: 210mm;
  margin: 0 auto;
  aspect-ratio: 210 / 297;
  background: #fff;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.12);
  overflow: hidden;
}
.member-inv-print__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  user-select: none;
}
.member-inv-print__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding:
    var(--inv-pad-top, 32%)
    var(--inv-pad-x, 11%)
    var(--inv-pad-bottom, 36%)
    var(--inv-pad-x, 11%);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1e293b;
  text-align: justify;
}
.member-inv-print__ref {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  text-align: right;
}
.member-inv-print__salutation {
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.member-inv-print__body {
  margin: 0 0 0.65rem;
}
.member-inv-print__abstract-title {
  font-weight: 600;
  color: #0f172a;
}
.member-inv-print__farewell {
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}
.member-inv-print__sign {
  margin-top: auto;
  margin-left: auto;
  max-width: 14rem;
  text-align: center;
}
.member-inv-print__sign-img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 0.2rem;
  object-fit: contain;
}
.member-inv-print__sign-name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}
.member-inv-print__sign-role {
  margin: 0.1rem 0 0;
  font-size: 0.6875rem;
  color: #475569;
}
.member-inv-static {
  max-width: 210mm;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.12);
}
.member-inv-static__frame {
  display: block;
  width: 100%;
  min-height: 80vh;
  aspect-ratio: 210 / 297;
  border: none;
}
.member-inv-static__image {
  display: block;
  width: 100%;
  height: auto;
}
.member-inv-static__hint {
  margin: 0.75rem 0 0;
  text-align: center;
}
@media print {
  .member-inv-print,
  .member-inv-static {
    max-width: none;
    width: 210mm;
    box-shadow: none;
    page-break-inside: avoid;
  }
  .member-inv-print__content {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .member-inv-static__frame {
    min-height: 297mm;
  }
}

/* Fatura — kurumsal A4 dikey */
.member-invoice-page {
  background: linear-gradient(180deg, #e8ecf1 0%, #f1f5f9 100%);
}
.member-invoice-print {
  background: #fff;
  border-radius: 0.35rem;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.1);
  padding: 2rem 2.25rem 1.75rem;
  border: 1px solid #e2e8f0;
}
.member-invoice-print__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 2px solid #0f4c5c;
}
.member-invoice-print__brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 22rem;
}
.member-invoice-print__logo {
  height: 2.75rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
  flex-shrink: 0;
}
.member-invoice-print__seller-name {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}
.member-invoice-print__seller-meta {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}
.member-invoice-print__title-block {
  text-align: right;
}
.member-invoice-print__doc-type {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.member-invoice-print__number {
  margin: 0.2rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f4c5c;
  letter-spacing: -0.02em;
}
.member-invoice-print__date {
  margin: 0.35rem 0 0.5rem;
  font-size: 0.8125rem;
  color: #475569;
}
.member-invoice-print__date span {
  font-weight: 600;
  color: #94a3b8;
  margin-right: 0.35rem;
}
.member-invoice-print__status {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.member-invoice-print__status--completed {
  color: #047857;
  background: #d1fae5;
}
.member-invoice-print__status--pending {
  color: #b45309;
  background: #fef3c7;
}
.member-invoice-print__status--failed,
.member-invoice-print__status--refunded {
  color: #be123c;
  background: #ffe4e6;
}
.member-invoice-print__parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .member-invoice-print__parties { grid-template-columns: 1fr; }
}
.member-invoice-print__party h2 {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.member-invoice-print__party-name {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.member-invoice-print__party p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: #475569;
}
.member-invoice-print__dl {
  margin: 0;
}
.member-invoice-print__dl div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}
.member-invoice-print__dl dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}
.member-invoice-print__dl dd {
  margin: 0;
  font-size: 0.8125rem;
  color: #334155;
}
.member-invoice-print__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}
.member-invoice-print__table thead th {
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #0f4c5c;
}
.member-invoice-print__table thead th.member-invoice-print__col-amount {
  text-align: right;
}
.member-invoice-print__table tbody td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}
.member-invoice-print__table tbody tr:nth-child(even) td {
  background: #f8fafc;
}
.member-invoice-print__col-amount {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
.member-invoice-print__row--discount td {
  color: #047857;
}
.member-invoice-print__totals {
  margin-left: auto;
  max-width: 18rem;
}
.member-invoice-print__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.member-invoice-print__total-row strong {
  font-size: 0.9375rem;
  color: #0f172a;
}
.member-invoice-print__total-row--discount strong {
  color: #047857;
}
.member-invoice-print__total-row--grand {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 2px solid #0f4c5c;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f4c5c;
}
.member-invoice-print__total-row--grand strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f4c5c;
}
.member-invoice-print__note {
  margin: 1.25rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #94a3b8;
  text-align: center;
}
@media print {
  .member-invoice-print {
    box-shadow: none;
    border-radius: 0;
    border: none;
    padding: 0;
  }
}

.member-doc-table { width: 100%; margin: 1.5rem 0; border-collapse: collapse; font-size: 0.875rem; }
.member-doc-table th, .member-doc-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid #e2e8f0; text-align: left; }
/* Yaka kartı — dikey, modern */
.member-badge-page {
  background: linear-gradient(180deg, var(--surface-1, #e8ecf1) 0%, var(--surface-0, #f1f5f9) 100%);
}

.member-badge-print {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  max-width: 20rem;
  min-height: 28rem;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgb(15 76 92 / 0.12);
  border-radius: 1.25rem;
  box-shadow:
    0 4px 6px rgb(15 23 42 / 0.04),
    0 24px 48px rgb(15 43 50 / 0.12);
}

.member-badge-print__stripe {
  flex-shrink: 0;
  height: 0.35rem;
  background: linear-gradient(90deg, #0f4c5c 0%, #0d9488 50%, #14b8a6 100%);
}

.member-badge-print__header {
  padding: 1.15rem 1.25rem 0.85rem;
  text-align: center;
  background: linear-gradient(180deg, rgb(240 253 250 / 0.65) 0%, transparent 100%);
}

.member-badge-print__logo {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 0.6rem;
  object-fit: contain;
}

.member-badge-print__congress {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.member-badge-print__year {
  margin: 0.35rem 0 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0d9488;
}

.member-badge-print__main {
  flex: 1;
  padding: 0.5rem 1.25rem 0.75rem;
  text-align: center;
}

.member-badge-print__name {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.member-badge-print__title {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
}

.member-badge-print__institution {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}

.member-badge-print__role {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.28rem 0.85rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #0f4c5c 0%, #0d9488 100%);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgb(13 148 136 / 0.28);
}

.member-badge-print__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.member-badge-print__tag {
  display: inline-block;
  max-width: 100%;
  padding: 0.2rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f766e;
  background: #ecfdf5;
  border: 1px solid rgb(20 184 166 / 0.22);
  border-radius: 0.35rem;
}

.member-badge-print__tag--gala {
  color: #9a3412;
  background: #fff7ed;
  border-color: rgb(251 146 60 / 0.35);
}

.member-badge-print__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 1rem 1.25rem 1.15rem;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.member-badge-print__qr-label {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.member-badge-print__qr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgb(15 23 42 / 0.06);
}

.member-badge-print__qr img {
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 0.35rem;
}

.member-badge-print__id {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

/* Kayıt tipi kartları */
.registration-type-grid { display: grid; gap: 0.65rem; }
.registration-type-card { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.85rem; cursor: pointer; border: 2px solid #e2e8f0; border-radius: 0.75rem; transition: border-color 0.15s, background 0.15s; }
.registration-type-card--active { border-color: #0d9488; background: #f0fdfa; }
.registration-type-card__input { position: absolute; opacity: 0; pointer-events: none; }
.registration-type-card__icon { display: flex; flex-shrink: 0; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; color: #0f766e; background: #ccfbf1; border-radius: 0.5rem; }
.registration-type-card__body { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.registration-type-card__body strong { font-size: 0.875rem; }
.registration-type-card__body span { font-size: 0.75rem; line-height: 1.4; color: #64748b; }
.registration-addon { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.5rem; padding: 0.75rem; cursor: pointer; border: 1px solid #e2e8f0; border-radius: 0.65rem; }
.registration-addon__check { flex-shrink: 0; margin-top: 0.2rem; accent-color: #0d9488; }
.registration-addon__body { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.registration-addon__price { font-size: 0.8125rem; font-weight: 700; color: #0d9488; }

/* —— KVKK / yasal sayfa —— */
.legal-page-hero {
  position: relative;
  padding: 2.75rem 0 2.25rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f766e 0%, #115e59 42%, #134e4a 100%);
  color: #fff;
}

.legal-page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgb(255 255 255 / 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(20 184 166 / 0.2), transparent);
  pointer-events: none;
}

.legal-page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.legal-page-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  opacity: 0.85;
}

.legal-page-hero__crumb a {
  color: #99f6e4;
  text-decoration: none;
}

.legal-page-hero__crumb a:hover {
  text-decoration: underline;
}

.legal-page-hero__eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
}

.legal-page-hero__title {
  margin: 0 0 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-page-hero__subtitle {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.92;
}

.legal-page-hero__lead {
  margin: 0 0 1.25rem;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  opacity: 0.9;
}

.legal-page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legal-page-hero__badge {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
}

.legal-page {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}

.legal-page__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .legal-page__grid {
    grid-template-columns: minmax(240px, 280px) 1fr;
    gap: 2rem;
  }
}

.legal-page__card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.06);
}

.legal-page__card--sticky {
  position: sticky;
  top: 5.5rem;
}

.legal-page__aside-title {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.legal-page__aside-sub {
  margin: 1.25rem 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.legal-page__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal-toc;
}

.legal-page__toc-list li {
  margin-bottom: 0.35rem;
}

.legal-page__toc-list a {
  display: block;
  padding: 0.4rem 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #334155;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s;
}

.legal-page__toc-list a:hover {
  color: #0f766e;
  background: #f0fdfa;
}

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

.legal-page__related a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f766e;
  text-decoration: none;
}

.legal-page__related a:hover {
  text-decoration: underline;
}

.legal-page__related i {
  width: 1rem;
  text-align: center;
  opacity: 0.85;
}

.legal-page__contact {
  margin-top: 1rem;
  padding: 0.85rem;
  background: #f8fafc;
  border-radius: 0.65rem;
}

.legal-page__contact-label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.legal-page__contact-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d9488;
  word-break: break-all;
}

.legal-page__print {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: background 0.15s, border-color 0.15s;
}

.legal-page__print:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.legal-page__content {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.06);
}

@media (min-width: 768px) {
  .legal-page__content {
    padding: 2.25rem 2.5rem;
  }
}

.legal-doc-page .legal-doc__meta {
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #334155;
  background: #f0fdfa;
  border-left: 4px solid #0d9488;
  border-radius: 0 0.5rem 0.5rem 0;
}

.legal-doc-page .legal-doc__part {
  margin: 2rem 0 0.85rem;
  padding-bottom: 0.35rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  scroll-margin-top: 6rem;
}

.legal-doc-page .legal-doc__table {
  width: 100%;
  margin: 1rem 0;
  font-size: 0.8125rem;
  border-collapse: collapse;
}

.legal-doc-page .legal-doc__table th,
.legal-doc-page .legal-doc__table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border: 1px solid #e2e8f0;
}

.legal-doc-page .legal-doc__table th {
  font-weight: 600;
  background: #f8fafc;
}

.legal-doc-page .legal-doc__table tbody tr:nth-child(even) {
  background: #fafafa;
}

.legal-doc-page .legal-doc__contact {
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
}

.legal-doc-page .legal-doc__contact li {
  margin-bottom: 0.35rem;
}

.legal-doc-page .legal-doc__note {
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.8125rem;
  color: #475569;
  background: #fffbeb;
  border-radius: 0.5rem;
}

.legal-doc-page .legal-doc__footer {
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  border-top: 1px solid #e2e8f0;
}

.legal-doc-page .legal-doc a {
  color: #0d9488;
  font-weight: 500;
}

.legal-doc-page .legal-doc a:hover {
  text-decoration: underline;
}

.legal-page__toc-list a {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.legal-page__toc-num {
  flex-shrink: 0;
  min-width: 1.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0d9488;
}

.legal-page__toc-label {
  flex: 1;
  line-height: 1.35;
}

.legal-page__cta {
  margin: 1.25rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 100%);
  border: 1px solid #99f6e4;
  border-radius: 0.75rem;
}

.legal-page__cta-title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.legal-page__cta-text {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #475569;
}

.legal-page__cta-btn {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #0d9488;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.legal-page__cta-btn:hover {
  background: #0f766e;
}

.legal-page__org {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.65rem;
}

.legal-page__org-name {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.legal-page__org-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #334155;
  text-decoration: none;
}

a.legal-page__org-row:hover {
  color: #0d9488;
}

.legal-page__org-row i {
  width: 1rem;
  margin-top: 0.15rem;
  color: #0d9488;
}

.legal-page__org-row--addr {
  margin-bottom: 0;
}

.legal-doc-page .legal-doc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  margin-right: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f766e;
  background: #ccfbf1;
  border-radius: 0.35rem;
}

.legal-doc-page .legal-doc__lead {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.legal-doc-page .legal-doc__highlight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  background: #f0fdfa;
  border-left: 4px solid #0d9488;
  border-radius: 0 0.5rem 0.5rem 0;
}

.legal-doc-page .legal-doc__highlight strong {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}

.legal-doc-page .legal-doc__highlight span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.legal-doc-page .legal-doc__highlight--success {
  background: #f0fdf4;
  border-left-color: #16a34a;
}

.legal-doc-page .legal-doc__highlight--success strong {
  color: #15803d;
}

.legal-doc-page .legal-doc__data-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

@media (min-width: 640px) {
  .legal-doc-page .legal-doc__data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-doc-page .legal-doc__data-card {
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.legal-doc-page .legal-doc__data-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  color: #0f172a;
}

.legal-doc-page .legal-doc__data-card span {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.legal-doc-page .legal-doc__rights-grid {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

@media (min-width: 640px) {
  .legal-doc-page .legal-doc__rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.legal-doc-page .legal-doc__right-card {
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.legal-doc-page .legal-doc__right-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.875rem;
  color: #0f766e;
}

.legal-doc-page .legal-doc__right-card span {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
}

.legal-doc-page .legal-doc__cta-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.5rem;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .legal-page__grid {
    grid-template-columns: minmax(280px, 320px) 1fr;
  }
}

@media print {
  .legal-page-hero,
  .legal-page__aside,
  .site-header,
  .site-footer {
    display: none !important;
  }

  .legal-page__content {
    border: none;
    box-shadow: none;
  }
}

/* —— Ödeme sayfası (/odeme) —— */
body.site-inner .payment-page {
  flex: 1 0 auto;
}

.payment-page {
  padding: 0 0 3.5rem;
  margin-top: -2.5rem;
}

.payment-page__wrap {
  position: relative;
  z-index: 2;
}

.payment-page__alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.payment-page__alert--success {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.payment-page__alert--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.payment-page__alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.payment-steps {
  margin-bottom: 1.5rem;
}

.payment-steps__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgb(15 43 50 / 0.06);
  overflow: hidden;
}

.payment-steps__item {
  display: flex;
  flex: 1;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  background: #fff;
}

.payment-steps__item--done {
  color: #0f766e;
  background: #f0fdfa;
}

.payment-steps__item--active {
  color: #0f766e;
  background: var(--brand-50);
}

.payment-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  background: rgb(15 43 50 / 0.06);
}

.payment-steps__item--active .payment-steps__num,
.payment-steps__item--done .payment-steps__num {
  color: #fff;
  background: #0d9488;
}

.payment-page__grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .payment-page__grid {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.payment-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-order {
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgb(15 43 50 / 0.07);
}

.payment-order__eyebrow {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d9488;
}

.payment-order__congress {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: #0f172a;
}

.payment-order__meta {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0;
}

.payment-order__meta div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

.payment-order__meta dt {
  margin: 0;
  color: #64748b;
}

.payment-order__meta dd {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

.payment-order__ref {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
}

.payment-order__status {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 999px;
}

.payment-order__status--pending {
  color: #b45309;
  background: #fef3c7;
}

.payment-order__status--confirmed {
  color: #047857;
  background: #d1fae5;
}

.payment-order__lines {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  border-top: 1px dashed #e2e8f0;
}

.payment-order__lines li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid #f1f5f9;
}

.payment-order__lines li strong {
  color: #0f172a;
  white-space: nowrap;
}

.payment-order__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 2px solid #0d9488;
}

.payment-order__total span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

.payment-order__total strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f766e;
}

.payment-trust {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.payment-trust i {
  margin-top: 0.1rem;
  color: #0d9488;
}

.payment-page__link-back {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
}

.payment-page__link-back:hover {
  text-decoration: underline;
}

.payment-page__link-back--light {
  color: #64748b;
}

.payment-bank,
.payment-form-card {
  margin-bottom: 1.25rem;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgb(15 43 50 / 0.05);
}

.payment-bank__title,
.payment-form-card__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.payment-bank__title i,
.payment-form-card__title i {
  color: #0d9488;
}

.payment-bank__lead,
.payment-form-card__lead {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.payment-bank__card {
  padding: 1.15rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
  border: 1px solid #99f6e4;
  border-radius: 0.85rem;
}

.payment-bank__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgb(13 148 136 / 0.12);
}

.payment-bank__row:last-of-type {
  border-bottom: none;
}

.payment-bank__label {
  font-weight: 600;
  color: #64748b;
}

.payment-bank__value {
  font-weight: 600;
  color: #0f172a;
  text-align: right;
}

.payment-bank__iban-wrap {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #99f6e4;
}

.payment-bank__iban {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.35rem;
}

.payment-bank__iban code {
  flex: 1;
  min-width: 12rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f766e;
  word-break: break-all;
  background: #fff;
  border: 1px solid #ccfbf1;
  border-radius: 0.5rem;
}

.payment-bank__copy {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  cursor: pointer;
  background: #fff;
  border: 1px solid #5eead4;
  border-radius: 0.5rem;
  transition: background 0.15s, color 0.15s;
}

.payment-bank__copy:hover {
  color: #fff;
  background: #0d9488;
}

.payment-bank__hint {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 1rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
  background: #fffbeb;
  border-radius: 0.5rem;
}

.payment-page__notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
}

.payment-page__notice--info {
  color: #0c4a6e;
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
}

.payment-form__grid--checkout {
  margin-bottom: 1.25rem;
}

.payment-form--online,
.payment-form--bank {
  margin-top: 0.25rem;
}

.payment-method-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-method-picker__btn {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f766e;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.payment-method-picker__btn:hover {
  background: #f0fdfa;
  border-color: #5eead4;
}

.payment-method-picker__btn--active {
  color: #0f172a;
  background: #ecfdf5;
  border-color: #0d9488;
  box-shadow: inset 0 0 0 1px rgb(13 148 136 / 0.18);
}

.payment-bank--inline {
  margin-bottom: 1.25rem;
}

.payment-form__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .payment-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.payment-field--full {
  grid-column: 1 / -1;
}

.payment-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.payment-field__req {
  color: #dc2626;
}

.payment-field__input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.payment-field__input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15);
}

.payment-field__textarea {
  resize: vertical;
  min-height: 5rem;
}

.payment-field__amount {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.payment-field__amount .payment-field__input {
  flex: 1;
}

.payment-field__currency {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
}

.payment-form__submit {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border: none;
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.payment-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgb(13 148 136 / 0.4);
}

.payment-form__submit--inline {
  width: auto;
  margin-top: 0;
  text-decoration: none;
}

.payment-page__empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 1rem;
}

.payment-page__empty i {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: #94a3b8;
}

.payment-page__empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.payment-page__empty p {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
}

.payment-success-page {
  padding: 3rem 0 4rem;
}

.payment-success-page__wrap {
  max-width: 32rem;
  margin: 0 auto;
}

.payment-success-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1.25rem;
  box-shadow: 0 12px 40px rgb(15 43 50 / 0.08);
}

.payment-success-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  color: #059669;
  background: #ecfdf5;
  border-radius: 50%;
}

.payment-success-card__title {
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: #0f172a;
}

.payment-success-card__lead {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.payment-success-card__note {
  margin: 0 0 1rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: #047857;
  background: #ecfdf5;
  border-radius: 0.5rem;
}

.payment-success-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* —— Üye profili (/uye-profil) —— */
body.site-inner .mp-dashboard--subpage {
  flex: 1 0 auto;
}

.mprof-page__main .mp-pane__head {
  margin-bottom: 1rem;
}

.mprof-page__main .mprof-page__grid {
  margin-top: 0;
}

.mprof-page__wrap {
  max-width: 72rem;
}

.mprof-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.mprof-crumb a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 600;
}

.mprof-crumb a:hover {
  text-decoration: underline;
}

.mprof-alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.75rem;
}

.mprof-alert ul {
  margin: 0;
  padding-left: 1.1rem;
}

.mprof-alert--success {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.mprof-alert--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.mprof-page__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .mprof-page__grid {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.mprof-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 1024px) {
  .mprof-aside {
    position: sticky;
    top: 1rem;
  }
}

.mprof-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 43 50 / 0.06);
}

.mprof-card--profile {
  text-align: center;
}

.mprof-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 0.85rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-radius: 1rem;
}

.mprof-avatar-img {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: -4rem auto 0.85rem;
  object-fit: cover;
  border-radius: 1rem;
}

.mprof-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.mprof-title {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #0f766e;
  font-weight: 600;
}

.mprof-email {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  word-break: break-all;
}

.mprof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.mprof-badge {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.25rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 999px;
}

.mprof-badge--member {
  color: #92400e;
  background: #fef3c7;
}

.mprof-badge--google {
  color: #1d4ed8;
  background: #eff6ff;
}

.mprof-meta {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  justify-content: center;
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  text-align: left;
}

.mprof-meta i {
  margin-top: 0.1rem;
  color: #94a3b8;
}

.mprof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mprof-stat__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f766e;
  line-height: 1;
}

.mprof-stat__label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #64748b;
}

.mprof-quick {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 43 50 / 0.05);
}

.mprof-quick__link {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 0.65rem;
  transition: background 0.15s, color 0.15s;
}

.mprof-quick__link:hover {
  color: #0f766e;
  background: #f0fdfa;
}

.mprof-quick__link i {
  width: 1.1rem;
  color: #0d9488;
  text-align: center;
}

.mprof-section {
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgb(15 43 50 / 0.04);
}

.mprof-section__head {
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.mprof-section__title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.mprof-section__title i {
  color: #0d9488;
}

.mprof-section__lead {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.mprof-fields {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mprof-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mprof-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mprof-field--full {
  grid-column: 1 / -1;
}

.mprof-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.mprof-req {
  color: #dc2626;
}

.mprof-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.mprof-input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15);
}

.mprof-input--disabled {
  color: #64748b;
  background: #f8fafc;
  cursor: not-allowed;
}

.mprof-select {
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 1rem;
}

.mprof-textarea {
  min-height: 6rem;
  resize: vertical;
}

.mprof-hint {
  margin: 0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.mprof-check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: #334155;
  cursor: pointer;
}

.mprof-check input {
  margin-top: 0.2rem;
  accent-color: #0d9488;
}

.mprof-member-box {
  grid-column: 1 / -1;
  padding: 0.85rem 1rem;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.65rem;
}

#profile-tc-field.is-muted {
  opacity: 0.55;
}

.mprof-password {
  position: relative;
}

.mprof-password .mprof-input {
  padding-right: 2.75rem;
}

.mprof-pw-toggle {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #64748b;
  cursor: pointer;
  background: none;
  border: none;
  transform: translateY(-50%);
}

.mprof-pw-toggle:hover {
  color: #0f766e;
}

.mprof-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.mprof-submit {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  border: none;
  border-radius: 0.65rem;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.mprof-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgb(13 148 136 / 0.4);
}

.mprof-cancel {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
}

.mprof-cancel:hover {
  color: #0f766e;
}

/* Live session hub + questions modal */
body.live-modal-open {
  overflow: hidden;
}

.live-hub {
  margin-top: -2rem;
  padding: 1.5rem 0 3rem;
}

.live-hub__container {
  max-width: 56rem;
}

.live-hub__hero {
  margin-bottom: 1.25rem;
}

.live-hub__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.live-hub__back:hover {
  color: #0d9488;
}

.live-hub__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 999px;
}

.live-hub__badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #ef4444;
  animation: live-hub-pulse 1.4s ease-in-out infinite;
}

@keyframes live-hub-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.live-hub__title {
  margin: 0.55rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

.live-hub__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
}

.live-hub__notice {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.75rem 0 0.65rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  border-radius: 0.65rem;
}

.live-hub__notice strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.875rem;
}

.live-hub__notice p {
  margin: 0;
  opacity: 0.92;
}

.live-hub__notice i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1rem;
}

.live-hub__notice--upcoming {
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.live-hub__notice--upcoming i {
  color: #d97706;
}

.live-hub__notice--live {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.live-hub__notice--live i {
  color: #10b981;
  font-size: 0.55rem;
  margin-top: 0.35rem;
}

.live-hub__notice--ended {
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.live-hub__notice--ended i {
  color: #64748b;
}

.live-hub__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.live-hub__meta-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background: rgb(255 255 255 / 0.7);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.live-hub__meta-chip i {
  font-size: 0.7rem;
  color: #0f766e;
}

.live-hub__meta-chip--mode {
  color: #1e40af;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.live-hub__meta-chip--mode i {
  color: #2563eb;
}

.live-hub__meta-chip--hall i {
  color: #b45309;
}

.live-hub__meta-chip-sub {
  font-weight: 500;
  color: #94a3b8;
}

.live-hub__program-link {
  margin: 0.5rem 0 0;
}

.live-hub__program-link-a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.live-hub__program-link-a:hover {
  color: #0d9488;
  text-decoration: underline;
}

.live-hub-panel .live-hub__notice {
  margin-top: 0.5rem;
}

.live-hub-panel .live-hub__meta-row {
  margin-bottom: 0.25rem;
}

.live-hub__alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.65rem;
}

.live-hub__grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 768px) {
  .live-hub__grid {
    grid-template-columns: minmax(0, 1fr) minmax(14rem, 17rem);
    gap: 1.15rem;
  }
}

.live-hub__card {
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
}

.live-hub__card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.live-hub__card-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.live-hub__card-title--sm {
  font-size: 0.9375rem;
}

.live-hub__card-title i {
  color: #0f766e;
  font-size: 0.9rem;
}

.live-hub__card-desc {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.live-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.live-hub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.12s;
}

.live-hub__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.28);
}

.live-hub__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgb(13 148 136 / 0.35);
}

.live-hub__btn--outline {
  color: #334155;
  background: #fff;
  border-color: #cbd5e1;
}

.live-hub__btn--outline:hover {
  border-color: #0d9488;
  color: #0f766e;
}

.live-hub__btn--ghost {
  color: #475569;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.live-hub__btn--ghost:hover {
  color: #0f766e;
  border-color: rgb(20 184 166 / 0.35);
}

.live-hub__btn--sm {
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
}

.live-hub__btn--block {
  width: 100%;
}

.live-hub__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  background: none;
  border: none;
  cursor: pointer;
}

.live-hub__link-btn:hover {
  color: #0d9488;
  text-decoration: underline;
}

.live-hub__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: #0d9488;
  border-radius: 999px;
}

.live-hub__count--light {
  color: #0f766e;
  background: #f0fdfa;
}

.live-hub__form {
  display: grid;
  gap: 0.65rem;
}

.live-hub__field {
  display: grid;
  gap: 0.25rem;
}

.live-hub__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.live-hub__input,
.live-hub__textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  font-size: 0.875rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.live-hub__input:focus,
.live-hub__textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(20 184 166 / 0.15);
  background: #fff;
}

.live-hub__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.live-hub__tips {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.live-hub__tips li + li {
  margin-top: 0.35rem;
}

.live-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.live-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.live-modal__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgb(15 23 42 / 0.55);
  cursor: pointer;
}

.live-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 32rem);
  max-height: min(85vh, 34rem);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 24px 48px rgb(15 23 42 / 0.2);
  overflow: hidden;
}

.live-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.live-modal__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.live-modal__subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

.live-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #64748b;
  background: #f1f5f9;
  border: none;
  border-radius: 0.45rem;
  cursor: pointer;
}

.live-modal__close:hover {
  color: #0f172a;
  background: #e2e8f0;
}

.live-modal__body {
  flex: 1;
  min-height: 0;
  padding: 0.85rem 1.1rem;
  overflow-y: auto;
}

.live-modal__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
  font-size: 0.875rem;
  color: #64748b;
}

.live-modal__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 0.75rem 1.1rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.live-questions-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-questions-list__item {
  padding: 0.75rem 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #0d9488;
  border-radius: 0.55rem;
}

.live-questions-list__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.live-questions-list__author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.live-questions-list__time {
  font-size: 0.6875rem;
  color: #94a3b8;
}

.live-questions-list__body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

.live-questions-list__empty {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  padding: 2rem 1rem;
  text-align: center;
  color: #94a3b8;
}

.live-questions-list__empty i {
  font-size: 1.75rem;
  opacity: 0.6;
}

.live-questions-list__empty p {
  margin: 0;
  font-size: 0.875rem;
}

.live-launcher .live-modal[hidden] {
  display: none !important;
}

.live-launcher .live-modal.is-open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.live-modal--wide .live-modal__panel--wide {
  width: min(100%, 40rem);
  max-height: min(90vh, 42rem);
}

.live-modal__panel--sm {
  width: min(100%, 26rem);
}

.live-modal__body--hub {
  padding: 0;
}

.live-hub-panel {
  padding: 1rem 1.1rem 1.15rem;
}

.live-hub-panel__head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e2e8f0;
}

.live-hub-panel__title {
  margin: 0.45rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.live-hub-panel__subtitle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.live-hub-panel__stream {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.live-hub-panel__qa {
  display: grid;
  gap: 0.5rem;
}

.live-hub-panel__success {
  margin: 0.35rem 0 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.45rem;
}

.live-hub-panel__success[hidden] {
  display: none;
}

.live-launch__text {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.live-launch__tips {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.live-launch__tips li + li {
  margin-top: 0.3rem;
}

.live-launch__foot {
  flex-wrap: wrap;
}

.program-session-btn {
  cursor: pointer;
  font-family: inherit;
}

button.program-flow__action-btn {
  cursor: pointer;
  font-family: inherit;
}

.live-hub-inline {
  display: grid;
  gap: 0;
}

.live-hub-inline--compact {
  padding: 0 1.25rem 1.25rem;
}

.live-hub-inline--compact .live-hub__notice {
  margin: 0.85rem 0 0;
  border-radius: 0.75rem;
}

.live-hub-inline__grid {
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
  margin-top: 0.85rem;
}

@media (min-width: 768px) {
  .live-hub-inline__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1rem;
  }
}

.live-hub-inline__panel {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.04);
}

.live-hub-inline__panel--qa {
  flex-direction: column;
  gap: 0.65rem;
}

.live-hub-inline__panel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  color: #0f766e;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 0.65rem;
}

.live-hub-inline__panel-icon--qa {
  color: #1d4ed8;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #bfdbfe;
}

.live-hub-inline__panel-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.live-hub-inline__panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.65rem;
}

.live-hub-inline__panel-head-text {
  flex: 1;
  min-width: 10rem;
}

.live-hub-inline__panel-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.live-hub-inline__panel-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.live-hub-inline__panel-desc--sm {
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.live-hub-inline__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.live-hub-inline__questions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.3);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.live-hub-inline__questions-link:hover {
  color: #fff;
  background: #0f766e;
}

.live-hub-inline__questions-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: #0d9488;
  border-radius: 999px;
}

.live-hub-inline__form {
  display: grid;
  gap: 0.55rem;
}

.live-hub-inline__field {
  display: grid;
  gap: 0.25rem;
}

.live-hub-inline__field--grow {
  flex: 1;
}

.live-hub-inline__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.live-hub-inline__input,
.live-hub-inline__textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.live-hub-inline__input:focus,
.live-hub-inline__textarea:focus {
  outline: none;
  border-color: rgb(20 184 166 / 0.55);
  box-shadow: 0 0 0 3px rgb(20 184 166 / 0.12);
  background: #fff;
}

.live-hub-inline__textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.live-hub-inline__submit {
  justify-self: start;
}

.live-hub-inline__success {
  margin: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
}

.live-hub-inline__success[hidden] {
  display: none;
}

/* Program sayfası — profesyonel düzen (sidebar + hero) */
.program-page--pro {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.program-page--pro .container-custom {
  max-width: 1440px;
}

.program-pro-hero {
  margin-bottom: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 55%, #0f766e 100%);
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgb(15 23 42 / 0.18);
  position: relative;
  overflow: hidden;
}

.program-pro-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 95% 40%, rgb(20 184 166 / 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 35% 55% at 5% 90%, rgb(245 158 11 / 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.program-pro-hero__inner {
  position: relative;
}

.program-pro-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
  border: 1px solid rgb(94 234 212 / 0.35);
  border-radius: 999px;
}

.program-pro-hero__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}

.program-pro-hero__sub {
  margin: 0.55rem 0 0;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgb(255 255 255 / 0.72);
}

.program-pro-hero--compact {
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
}

.program-page__body--full .program-page__content {
  width: 100%;
  max-width: none;
}

.program-page__shell--pro {
  background: #fff;
  border-color: #dbe3ee;
}

.program-page__body--always-split {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 960px) {
  .program-page__body--always-split {
    grid-template-columns: minmax(15rem, 17.5rem) minmax(0, 1fr);
    gap: 1.75rem 2rem;
  }
}

.program-page__aside--pro {
  display: grid;
  gap: 1rem;
}

.program-sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.program-sidebar__stat {
  padding: 0.65rem 0.75rem;
  text-align: center;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.65rem;
}

.program-sidebar__stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: #0f766e;
}

.program-sidebar__stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.program-sidebar__downloads {
  display: grid;
  gap: 0.55rem;
}

.program-download-card--sidebar {
  margin-top: 0;
  padding: 0.75rem;
  gap: 0.55rem;
}

.program-download-card--sidebar .program-download-card__desc {
  font-size: 0.75rem;
  line-height: 1.4;
}

.program-download-card--sidebar .program-download-card__btn {
  justify-content: center;
  width: 100%;
}

.program-sidebar__csv-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  transition: background 0.15s, border-color 0.15s;
}

.program-sidebar__csv-link:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.program-legend {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-legend__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #475569;
}

.program-legend__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: #94a3b8;
}

.program-legend__item--panel .program-legend__dot { background: #0d9488; }
.program-legend__item--session .program-legend__dot,
.program-legend__item--keynote .program-legend__dot,
.program-legend__item--presentation .program-legend__dot { background: #22c55e; }
.program-legend__item--workshop .program-legend__dot { background: #f59e0b; }
.program-legend__item--opening .program-legend__dot,
.program-legend__item--closing .program-legend__dot { background: #6366f1; }
.program-legend__item--break .program-legend__dot,
.program-legend__item--lunch .program-legend__dot { background: #94a3b8; }
.program-legend__item--gala .program-legend__dot,
.program-legend__item--social .program-legend__dot { background: #ef4444; }

.program-day__head--pro {
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 100%);
  border: none;
  border-radius: 0.75rem 0.75rem 0 0;
  color: #fff;
}

.program-day__head--pro .program-day__label,
.program-day__head--pro .program-day__date,
.program-day__head--pro .program-day__note {
  color: rgb(255 255 255 / 0.92);
}

.program-day__index--pro {
  color: rgb(255 255 255 / 0.35);
  background: rgb(255 255 255 / 0.12);
  border-color: rgb(255 255 255 / 0.2);
}

.program-day__meta--pro {
  color: #fff;
  background: rgb(255 255 255 / 0.16);
}

.program-day--pro {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.06);
}

.program-page--pro .program-agenda {
  border-top: none;
}

.program-page--pro .program-agenda__row {
  border-left: 3px solid transparent;
  border-radius: 0;
}

.program-page--pro .program-agenda__type--tag {
  border-radius: 999px;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-page--pro .program-agenda__row--panel {
  background: #ecfdf5;
  border-left-color: #0d9488;
}

.program-page--pro .program-agenda__row--workshop {
  background: #fffbeb;
  border-left-color: #f59e0b;
}

.program-page--pro .program-agenda__row--session,
.program-page--pro .program-agenda__row--keynote,
.program-page--pro .program-agenda__row--presentation {
  background: #f0fdf4;
  border-left-color: #22c55e;
}

.program-page--pro .program-agenda__row--opening,
.program-page--pro .program-agenda__row--closing {
  background: #eef2ff;
  border-left-color: #6366f1;
}

.program-page--pro .program-agenda__row--break,
.program-page--pro .program-agenda__row--lunch,
.program-page--pro .program-agenda__row--minor {
  background: #f8fafc;
  border-left-color: #cbd5e1;
}

/* Program kartları — geniş, ayrıntılı oturum satırları */
.program-agenda--cards {
  gap: 1rem;
  padding: 1rem;
  background: #f1f5f9;
}

.program-hour-jump--cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 1rem 0.75rem;
}

.program-hour--static {
  border-radius: 0.85rem;
  box-shadow: 0 6px 20px rgb(15 23 42 / 0.06);
}

.program-hour__stripe {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem 1rem;
  align-items: center;
  padding: 0.65rem 1rem;
  color: #fff;
  background: linear-gradient(105deg, #0f172a 0%, #134e4a 52%, #0f766e 100%);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.program-hour__stripe-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.program-hour--static .program-hour__badge {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

.program-hour--static .program-hour__time {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.program-hour--static .program-hour__range {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.82);
}

.program-hour--static .program-hour__count {
  color: #fff;
  background: rgb(255 255 255 / 0.14);
}

.program-hour__list--cards {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  background: #f8fafc;
}

.program-card {
  list-style: none;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.program-card:hover {
  border-color: rgb(20 184 166 / 0.45);
  box-shadow: 0 8px 22px rgb(15 118 110 / 0.1);
}

.program-card--panel {
  border-left: 4px solid #7c3aed;
}

.program-card--workshop {
  border-left: 4px solid #2563eb;
}

.program-card--session,
.program-card--keynote,
.program-card--presentation {
  border-left: 4px solid #0d9488;
}

.program-card--opening,
.program-card--closing {
  border-left: 4px solid #4f46e5;
}

.program-card--break,
.program-card--lunch,
.program-card--minor {
  border-left: 4px solid #94a3b8;
  background: #f8fafc;
}

.program-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  margin-bottom: 0.65rem;
}

.program-card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #0f766e;
  border-radius: 999px;
}

.program-card--panel .program-card__type { background: #6d28d9; }
.program-card--workshop .program-card__type { background: #1d4ed8; }
.program-card--presentation .program-card__type { background: #7e22ce; }
.program-card--opening .program-card__type,
.program-card--closing .program-card__type { background: #4338ca; }

.program-card__time,
.program-card__delivery,
.program-card__hall {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.program-card__time-range {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  color: #0f766e;
}

.program-card__duration {
  font-weight: 500;
  color: #64748b;
}

.program-card__delivery--in_person {
  color: #166534;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.program-card__delivery--online {
  color: #1e40af;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.program-card__delivery--hybrid {
  color: #92400e;
  background: #fffbeb;
  border-color: #fde68a;
}

.program-card__hall {
  color: #0f172a;
  background: #fff;
}

.program-card__title {
  margin: 0 0 0.65rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.program-card__people {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
}

.program-card__person {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.7rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.55rem;
}

@media (min-width: 720px) {
  .program-card__person {
    grid-template-columns: minmax(7.5rem, 10rem) minmax(0, 1fr);
    gap: 0.65rem;
    align-items: baseline;
  }
}

.program-card__person dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.program-card__person dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #1e293b;
}

.program-card__desc {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
}

.program-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px dashed #e2e8f0;
}

.program-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.25rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.program-card__btn--detail {
  color: #0f766e;
  background: #ecfdf5;
  border-color: #99f6e4;
}

.program-card__btn--detail:hover {
  color: #fff;
  background: #0d9488;
  border-color: #0d9488;
}

.program-card__btn--live {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb;
}

.program-card__btn--live:hover {
  filter: brightness(1.06);
}

.program-card__minor {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
}

.program-card__minor-time {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
}

.program-card__minor-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}

@media (min-width: 1100px) {
  .program-page__body--always-split {
    grid-template-columns: minmax(14rem, 16rem) minmax(0, 1fr);
    gap: 1.5rem 2.25rem;
  }

  .program-hour__list--cards {
    padding: 1rem 1.15rem;
  }

  .program-card {
    padding: 1.1rem 1.25rem;
  }
}

/* Program — referans tablo düzeni (sol saat / sağ içerik) */
.program-page--timeline .program-day {
  border: none;
  box-shadow: none;
  background: transparent;
}

.program-page--timeline .program-day__head--pro {
  margin-bottom: 0.75rem;
  border-radius: 0.65rem;
}

.program-page--timeline .program-agenda,
.program-page--timeline .program-day__toolbar {
  display: none;
}

.program-timeline {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e3ec;
  border-radius: 0.65rem;
}

.program-timeline__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 7.75rem) minmax(0, 1fr);
  border-bottom: 1px solid #d7e3ec;
}

.program-timeline__row:last-child {
  border-bottom: none;
}

.program-timeline__row--minor {
  background: #fff;
}

.program-timeline__time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.65rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  color: #2d6a6a;
  text-align: center;
  border-right: 1px solid #d7e3ec;
}

.program-timeline__content {
  min-width: 0;
  padding: 0;
}

.program-timeline__simple {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.85rem 1.15rem;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
}

.program-timeline__block {
  padding: 0.9rem 1.15rem 1rem;
}

.program-timeline__block--split {
  border-bottom: 1px dashed #cbd5e1;
}

.program-timeline__block--opening {
  background: #f3f0fa;
}

.program-timeline__block--closing {
  background: #eef2ff;
}

.program-timeline__block--session,
.program-timeline__block--keynote {
  background: #edf8f3;
}

.program-timeline__block--panel {
  background: #fdf8f0;
}

.program-timeline__block--workshop {
  background: #fffbeb;
}

.program-timeline__block--with-poster {
  padding: 0.85rem 1rem 0.95rem;
}

.program-timeline__block-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 13rem);
  gap: 0.85rem 1.1rem;
  align-items: stretch;
}

.program-timeline__block-body {
  min-width: 0;
}

.program-timeline__block-poster {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  padding: 0.5rem 0.55rem;
  line-height: 0;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.program-timeline__block--panel .program-timeline__block-poster {
  background: linear-gradient(165deg, #eff6ff 0%, #fff 55%);
}

.program-timeline__block--workshop .program-timeline__block-poster {
  background: linear-gradient(165deg, #fffbeb 0%, #fff 55%);
}

.program-timeline__block-poster:hover {
  box-shadow: 0 8px 20px rgb(15 23 42 / 0.1);
  transform: scale(1.02);
}

.program-timeline__block-poster:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.program-timeline__block-poster img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12.5rem;
  max-height: 20rem;
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 720px) {
  .program-timeline__block-inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .program-timeline__block-poster {
    align-self: auto;
    justify-self: center;
    width: min(100%, 12rem);
    min-height: 0;
  }

  .program-timeline__block-poster img {
    height: auto;
    min-height: 10rem;
    max-height: 14rem;
  }
}

.program-timeline__block--presentation {
  background: #f5f3ff;
}

.program-timeline__block-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.program-timeline__badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.program-timeline__badge--opening {
  color: #5b21b6;
  background: #ede9fe;
}

.program-timeline__badge--session,
.program-timeline__badge--keynote {
  color: #166534;
  background: #dcfce7;
}

.program-timeline__badge--panel {
  color: #1e40af;
  background: #dbeafe;
}

.program-timeline__badge--workshop {
  color: #92400e;
  background: #fef3c7;
}

.program-timeline__badge--presentation {
  color: #6b21a8;
  background: #f3e8ff;
}

.program-timeline__seq {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.program-timeline__seq-label {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-timeline__hall {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c2410c;
}

.program-timeline__hall .fa-location-dot {
  color: #dc2626;
}

.program-timeline__chair {
  margin: 0 0 0.55rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #334155;
}

.program-timeline__chair strong {
  font-weight: 700;
  color: #0f172a;
}

.program-timeline__presentation-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-timeline__presentation-item {
  display: grid;
  gap: 0.2rem;
}

.program-timeline__presentation-list .program-presentation-slot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.program-timeline__presentation-list .program-presentation-slot--linked:hover,
.program-timeline__presentation-list .program-presentation-slot--linked:focus-visible {
  border-color: #5eead4;
  box-shadow: 0 2px 8px rgb(15 118 110 / 0.08);
}

.program-timeline__presentation-list .program-presentation-slot--time-end .program-presentation-slot__aside {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.program-timeline__presentation-list .program-presentation-slot__time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  white-space: nowrap;
}

.program-timeline__presentation-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  align-items: center;
}

.program-timeline__presentation-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: #c2410c;
}

.program-timeline__presentation-badge {
  display: inline-block;
  padding: 0.12rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #166534;
  background: #dcfce7;
  border-radius: 999px;
}

.program-timeline__presentation-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.program-timeline__presentation-authors {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #c2410c;
}

.program-timeline__presenter-mark {
  font-weight: 700;
}

.program-timeline__mode {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.program-timeline__block-title {
  margin: 0 0 0.55rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #134e4a;
}

.program-timeline__block--panel .program-timeline__block-title {
  color: #1e3a5f;
}

.program-timeline__subbadge {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.18rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border-radius: 999px;
}

.program-timeline__subbadge--panel {
  color: #1e40af;
  background: #dbeafe;
}

.program-timeline__speaker-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
}

.program-timeline__talk-title {
  margin: 0.2rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #64748b;
}

.program-timeline__talk-title em {
  font-style: italic;
}

.program-timeline__section-label {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c3aed;
}

.program-timeline__bullets {
  margin: 0.25rem 0 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
}

.program-timeline__bullets li {
  margin: 0.2rem 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #334155;
}

.program-timeline__bullets--people li {
  list-style: none;
  margin-left: -1.1rem;
}

.program-timeline__items {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.program-timeline__items li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #334155;
  border-top: 1px dashed #cbd5e1;
}

.program-timeline__items li:first-child {
  border-top: none;
  padding-top: 0.15rem;
}

.program-timeline__items li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #ea580c;
  content: '›';
}

.program-timeline__items strong {
  font-weight: 700;
  color: #c2410c;
}

.program-timeline__item-sep {
  margin: 0 0.2rem;
  color: #94a3b8;
}

.program-timeline__item-title {
  color: #64748b;
}

.program-timeline__actions {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #e2e8f0;
}

.program-timeline__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.program-timeline__link:hover {
  color: #0d9488;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .program-timeline__row {
    grid-template-columns: 1fr;
  }

  .program-timeline__time {
    justify-content: flex-start;
    padding: 0.65rem 1rem;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid #d7e3ec;
    background: #f8fafc;
  }
}

.program-filters--pro {
  margin-bottom: 1.25rem;
}

.program-pro-hero__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.program-pro-hero__leg {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.8);
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 999px;
}

.program-pro-hero__leg-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.program-page__body--grid {
  display: block;
}

.program-page__body--grid .program-page__content {
  max-width: 1100px;
  margin: 0 auto;
}

.program-pro-grid__board,
.program-pro-grid__columns {
  border: 1.5px solid #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 32px rgb(15 31 56 / 0.07);
  background: #fff;
}

.program-pro-grid__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.program-pro-grid__column + .program-pro-grid__column {
  border-left: 1.5px solid #e2e8f0;
}

.program-pro-grid__day-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #fff;
}

.program-pro-grid__day-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: rgb(255 255 255 / 0.25);
}

.program-pro-grid__day-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.program-pro-grid__day-sub {
  margin: 0.15rem 0 0;
  font-size: 0.6875rem;
  color: rgb(255 255 255 / 0.72);
}

.program-pro-grid__day-count {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.65);
  white-space: nowrap;
}

.program-pro-grid__cells {
  display: flex;
  flex-direction: column;
}

.program-pro-grid__cell {
  border-top: 1px solid #e2e8f0;
}

.program-pro-grid__cell-inner {
  display: flex;
  min-height: 3.25rem;
}

.program-pro-grid__time {
  width: 5.5rem;
  flex-shrink: 0;
  padding: 0.85rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #0f766e;
  border-right: 1px solid #e2e8f0;
}

.program-pro-grid__content {
  flex: 1;
  padding: 0.85rem 1rem;
  min-width: 0;
}

.program-pro-grid__cell--break .program-pro-grid__cell-inner,
.program-pro-grid__cell--break .program-pro-grid__time {
  background: #f8fafc;
}

.program-pro-grid__cell--opening .program-pro-grid__cell-inner,
.program-pro-grid__cell--opening .program-pro-grid__time,
.program-pro-grid__cell--closing .program-pro-grid__cell-inner,
.program-pro-grid__cell--closing .program-pro-grid__time {
  background: #eef2ff;
}

.program-pro-grid__cell--opening .program-pro-grid__time,
.program-pro-grid__cell--closing .program-pro-grid__time {
  color: #4f46e5;
}

.program-pro-grid__cell--konusma .program-pro-grid__cell-inner,
.program-pro-grid__cell--konusma .program-pro-grid__time,
.program-pro-grid__cell--session .program-pro-grid__cell-inner,
.program-pro-grid__cell--session .program-pro-grid__time {
  background: #f0fdf4;
}

.program-pro-grid__cell--panel .program-pro-grid__cell-inner,
.program-pro-grid__cell--panel .program-pro-grid__time {
  background: #ecfeff;
}

.program-pro-grid__cell--panel .program-pro-grid__time {
  color: #0e7490;
}

.program-pro-grid__cell--atolye .program-pro-grid__cell-inner,
.program-pro-grid__cell--atolye .program-pro-grid__time {
  background: #fffbeb;
}

.program-pro-grid__cell--atolye .program-pro-grid__time {
  color: #b45309;
}

.program-pro-grid__cell--bildiri .program-pro-grid__cell-inner,
.program-pro-grid__cell--bildiri .program-pro-grid__time {
  background: #faf5ff;
}

.program-pro-grid__cell--gala .program-pro-grid__cell-inner,
.program-pro-grid__cell--gala .program-pro-grid__time {
  background: #fff1f2;
}

.program-pro-grid__tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.program-pro-grid__tag--konusma,
.program-pro-grid__tag--session { background: #bbf7d0; color: #166534; }
.program-pro-grid__tag--panel { background: #a5f3fc; color: #155e75; }
.program-pro-grid__tag--atolye { background: #fde68a; color: #92400e; }
.program-pro-grid__tag--opening,
.program-pro-grid__tag--closing { background: #c7d2fe; color: #3730a3; }
.program-pro-grid__tag--bildiri { background: #e9d5ff; color: #6b21a8; }
.program-pro-grid__tag--gala { background: #fecdd3; color: #9f1239; }
.program-pro-grid__tag--break { background: #e2e8f0; color: #475569; }

.program-pro-grid__title {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
}

.program-pro-grid__minor {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.program-pro-grid__venue {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f766e;
}

.program-pro-grid__speaker {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.program-pro-grid__desc {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
}

.program-pro-grid__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.program-pro-grid__link:hover {
  color: #0d9488;
}

.program-pro-grid__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.program-pro-grid__leg {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
}

.program-pro-grid__leg-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.program-pro-grid__empty {
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

@media (max-width: 959px) {
  .program-page__aside--pro {
    position: static;
    box-shadow: none;
  }

  .program-sidebar__legend {
    display: none;
  }

  .program-pro-grid__column + .program-pro-grid__column {
    border-left: none;
    border-top: 1.5px solid #e2e8f0;
  }
}

/* —— Required password change (/uye/sifre-belirle) —— */
.auth-password-setup {
  flex: 1 0 auto;
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, #f8f4ef 0%, #f3ede6 48%, #efe8df 100%);
}

.auth-password-setup__wrap {
  display: flex;
  justify-content: center;
}

.auth-password-setup__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  width: 100%;
  max-width: 56rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 1.35rem;
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 22px 56px rgb(15 23 42 / 0.1);
}

.auth-password-setup__aside {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  color: #fff;
  background: linear-gradient(165deg, #0f766e 0%, #115e59 42%, #134e4a 100%);
}

.auth-password-setup__aside-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgb(255 255 255 / 0.14) 0%, transparent 42%),
    radial-gradient(circle at 8% 92%, rgb(0 0 0 / 0.12) 0%, transparent 48%);
}

.auth-password-setup__aside-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.auth-password-setup__eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.82);
}

.auth-password-setup__aside-title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.auth-password-setup__aside-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.88);
}

.auth-password-setup__greeting {
  margin: 0.15rem 0 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.92);
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 0.65rem;
}

.auth-password-setup__greeting strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.9375rem;
  font-weight: 700;
}

.auth-password-setup__steps {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.auth-password-setup__step {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgb(255 255 255 / 0.72);
}

.auth-password-setup__step.is-done {
  color: rgb(255 255 255 / 0.95);
}

.auth-password-setup__step.is-current {
  font-weight: 600;
  color: #fff;
}

.auth-password-setup__step-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #115e59;
  background: rgb(255 255 255 / 0.88);
  border-radius: 999px;
}

.auth-password-setup__step.is-done .auth-password-setup__step-icon {
  color: #fff;
  background: #059669;
}

.auth-password-setup__step.is-current .auth-password-setup__step-icon {
  color: #115e59;
  background: #fff;
  box-shadow: 0 0 0 3px rgb(255 255 255 / 0.22);
}

.auth-password-setup__tips {
  margin-top: auto;
  padding: 0.85rem 0.95rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  background: rgb(0 0 0 / 0.14);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 0.75rem;
}

.auth-password-setup__tips-title {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.78);
}

.auth-password-setup__tips ul {
  margin: 0;
  padding-left: 1rem;
  color: rgb(255 255 255 / 0.9);
}

.auth-password-setup__congress {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.62);
}

.auth-password-setup__main {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.85rem 1.65rem;
}

.auth-password-setup__main-head {
  margin-bottom: 1.35rem;
  text-align: center;
}

.auth-password-setup__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  color: #0f766e;
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgb(13 148 136 / 0.18);
  border-radius: 999px;
}

.auth-password-setup__form-title {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1e293b;
}

.program-page__section-title {
  margin: 2rem 0 1rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #134e4a;
}

.program-page--bildiri-focus {
  --program-content-max: min(100%, 1680px);
}

.program-page--bildiri-focus .container-custom {
  max-width: var(--program-content-max);
}

.program-page--bildiri-focus .program-page__shell {
  max-width: none;
  margin-inline: 0;
}

.program-page--bildiri-focus .program-pro-head {
  max-width: none;
}

.program-page__content--full {
  width: 100%;
  min-width: 0;
}

.program-pro-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding: 1.5rem 1.35rem 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #0f766e;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04), 0 12px 28px rgb(15 23 42 / 0.05);
}

@media (min-width: 900px) {
  .program-pro-head {
    grid-template-columns: minmax(0, 1fr) 15.5rem;
    align-items: stretch;
    gap: 1.75rem;
    padding: 1.65rem 1.5rem 1.5rem 1.65rem;
  }
}

.program-pro-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-pro-head__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.program-pro-head__lead {
  margin: 0.55rem 0 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.program-pro-head__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.program-pro-head__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.program-pro-head__stat-value {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
}

.program-pro-head__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.program-downloads-panel {
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

@media (min-width: 900px) {
  .program-downloads-panel {
    justify-content: center;
  }
}

.program-page__content > .program-downloads-panel {
  margin-bottom: 1.25rem;
  max-width: 20rem;
}

.program-downloads-panel__label {
  margin: 0 0 0.6rem;
  padding-bottom: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  border-bottom: 1px solid #e2e8f0;
}

.program-downloads-panel__list {
  display: grid;
  gap: 0.45rem;
}

.program-downloads-panel__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  text-decoration: none;
  border-radius: 0.55rem;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.program-downloads-panel__link:hover {
  transform: translateY(-1px);
}

.program-downloads-panel__link--primary {
  color: #fff;
  background: linear-gradient(160deg, #115e59 0%, #134e4a 100%);
  box-shadow: 0 4px 14px rgb(15 118 110 / 0.28);
}

.program-downloads-panel__link--primary:hover {
  background: linear-gradient(160deg, #0f766e 0%, #115e59 100%);
  box-shadow: 0 6px 18px rgb(15 118 110 / 0.32);
}

.program-downloads-panel__link--secondary {
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.program-downloads-panel__link--secondary:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgb(15 23 42 / 0.06);
}

.program-downloads-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.95rem;
  border-radius: 0.4rem;
}

.program-downloads-panel__link--primary .program-downloads-panel__icon {
  background: rgb(255 255 255 / 0.14);
}

.program-downloads-panel__link--secondary .program-downloads-panel__icon {
  color: #92400e;
  background: #fffbeb;
}

.program-downloads-panel__name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.program-downloads-panel__format {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  opacity: 0.82;
}

.program-downloads-panel__link--primary .program-downloads-panel__format {
  color: rgb(255 255 255 / 0.85);
}

.program-downloads-panel__link--secondary .program-downloads-panel__format {
  color: #64748b;
}

.program-downloads-panel__badge {
  margin-left: 0.35rem;
  padding: 0.05rem 0.35rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  background: #fef3c7;
  border-radius: 0.2rem;
}

.program-downloads-panel__arrow {
  font-size: 0.7rem;
  opacity: 0.65;
}

.program-download-card__actions {
  display: grid;
  gap: 0.45rem;
}

.program-download-card__btn--secondary {
  color: #92400e;
  background: #fffbeb;
}

.program-download-card__btn--secondary:hover {
  color: #78350f;
  background: #fef3c7;
}

.program-page__section-title--secondary {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.program-catalog-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.program-catalog-links__card {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.program-catalog-links__card:hover {
  border-color: #99f6e4;
  box-shadow: 0 6px 18px rgb(15 118 110 / 0.1);
  transform: translateY(-1px);
}

.program-catalog-links__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  font-size: 0.95rem;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 0.55rem;
}

.program-catalog-links__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.program-catalog-links__label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

.program-catalog-links__meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
}

.program-catalog-links__chevron {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #94a3b8;
}

.program-catalog-section {
  margin-top: 1.75rem;
}

.program-catalog-section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.program-catalog-section__title {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #134e4a;
}

.program-catalog-section__count {
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 999px;
}

.program-catalog-section__all-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.program-catalog-section__all-link:hover {
  text-decoration: underline;
}

.program-pw-catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

.program-pw-catalog-links__item {
  display: inline-flex;
  flex: 1 1 12rem;
  gap: 0.5rem;
  align-items: center;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
}

.program-pw-catalog-links__item:hover {
  background: #f0fdfa;
  border-color: #99f6e4;
}

.program-pw-catalog-links__count {
  margin-left: auto;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  color: #0f766e;
  background: #fff;
  border-radius: 999px;
}

.program-full-tab__day {
  margin-bottom: 2rem;
}

.program-full-tab__day:last-child {
  margin-bottom: 0;
}

.program-full-tab__day-head {
  margin-bottom: 1rem;
}

.program-full-tab__day-sub {
  margin: 0.2rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.program-full-tab__bildiri {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed #cbd5e1;
}

.program-full-tab__bildiri-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.program-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 900px) {
  .program-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .program-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.program-catalog-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  padding: 0.9rem 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.program-catalog-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgb(15 23 42 / 0.09);
  transform: translateY(-3px);
}

.program-catalog-card:has(.program-catalog-card__poster) {
  padding: 0 0 0.9rem;
}

.program-catalog-card__poster {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.65rem 0.65rem;
  aspect-ratio: 3 / 4;
  max-height: 15.5rem;
  line-height: 0;
  background: linear-gradient(165deg, #f0fdf4 0%, #f8fafc 45%, #eff6ff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.program-catalog-card--panel .program-catalog-card__poster {
  background: linear-gradient(165deg, #eff6ff 0%, #f8fafc 50%, #f0fdf4 100%);
}

.program-catalog-card--workshop .program-catalog-card__poster {
  background: linear-gradient(165deg, #fffbeb 0%, #f8fafc 50%, #fff7ed 100%);
}

.program-catalog-card--speaker .program-catalog-card__poster {
  aspect-ratio: 4 / 5;
  max-height: 13rem;
  background: linear-gradient(165deg, #f0fdfa 0%, #f8fafc 100%);
}

.program-catalog-card__poster-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
  text-decoration: none;
  border-radius: 0.35rem;
  transition: opacity 0.2s ease;
}

.program-catalog-card__poster-link:hover {
  opacity: 0.92;
}

.program-catalog-card__poster-link:focus-visible {
  outline: 2px solid #0d9488;
  outline-offset: 2px;
}

.program-catalog-card__poster img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center center;
}

.program-catalog-card:has(.program-catalog-card__poster) .program-catalog-card__title,
.program-catalog-card:has(.program-catalog-card__poster) .program-catalog-card__meta,
.program-catalog-card:has(.program-catalog-card__poster) .program-catalog-card__actions {
  margin-right: 1rem;
  margin-left: 1rem;
}

.program-catalog-card:has(.program-catalog-card__poster) .program-catalog-card__title {
  margin-top: 0.75rem;
}

.program-catalog-card--panel {
  border-top: 3px solid #3b82f6;
}

.program-catalog-card--workshop {
  border-top: 3px solid #d97706;
}

.program-catalog-card--speaker {
  border-top: 3px solid #0d9488;
}

.program-catalog-card--keynote {
  border-top-color: #b45309;
}

.program-catalog-card__meta--talk {
  font-weight: 600;
  color: #334155;
}

.program-catalog-card__meta--keynote {
  font-weight: 700;
  color: #b45309;
}

.program-catalog-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.program-catalog-card__meta {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #64748b;
}

.program-catalog-card__meta--online {
  color: #0f766e;
  font-weight: 600;
}

.program-catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.program-catalog-card__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
}

.program-catalog-card__btn--primary {
  color: #fff;
  background: #0f766e;
  border-color: #0f766e;
}

.program-catalog-card__btn:hover {
  filter: brightness(1.05);
}

.program-general-tab__intro-link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.program-general-tab__intro-link:hover {
  text-decoration: underline;
}

.program-bildiri {
  margin-bottom: 0;
}

.program-bildiri__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.4rem;
  margin-bottom: 1.5rem;
  background: #eef2f6;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
}

.program-bildiri__tab {
  display: inline-flex;
  flex: 1 1 10rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.program-bildiri__tab-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.program-bildiri__tab.is-active .program-bildiri__tab-num {
  color: #0f766e;
}

.program-bildiri__tab-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.3;
}

.program-bildiri__tab-icon {
  font-size: 0.8em;
  opacity: 0.85;
}

.program-bildiri__tab:hover {
  color: #0f172a;
  background: rgb(255 255 255 / 0.65);
}

.program-bildiri__tab.is-active {
  color: #0f172a;
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgb(15 23 42 / 0.07);
}

.program-bildiri__tab--online {
  flex: 1.35 1 12rem;
  color: var(--brand-800);
  border-color: rgb(13 74 50 / 0.22);
  background: linear-gradient(135deg, var(--brand-50) 0%, rgb(255 255 255 / 0.9) 100%);
}

.program-bildiri__tab--online.is-active {
  border-color: var(--brand-700);
  box-shadow: 0 6px 18px rgb(13 74 50 / 0.12);
}

.program-bildiri__tab--online .program-bildiri__tab-num {
  color: var(--brand-800);
}

.program-bildiri-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #f8fafc 55%, #fff 100%);
  border: 1px solid rgb(20 184 166 / 0.28);
  border-radius: 0.85rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.05);
}

.program-bildiri-quick__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-bildiri-quick__lead {
  margin: 0;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #334155;
}

.program-bildiri-quick__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  border: none;
  border-radius: 0.55rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgb(15 118 110 / 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.program-bildiri-quick__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgb(15 118 110 / 0.4);
}

.program-bildiri-panel-head {
  margin-bottom: 1rem;
}

.program-bildiri-panel-head--online {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
  border: 1px solid rgb(20 184 166 / 0.22);
  border-radius: 0.65rem;
}

.program-bildiri-panel-head__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.program-bildiri-panel-head__hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.program-full-day {
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
}

.program-full-day__summary {
  list-style: none;
  cursor: pointer;
}

.program-full-day__summary::-webkit-details-marker {
  display: none;
}

.program-full-day__chevron {
  margin-left: auto;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.program-full-day[open] .program-full-day__chevron {
  transform: rotate(180deg);
}

.program-full-day__body {
  padding: 0 1rem 1.15rem;
  border-top: 1px solid #f1f5f9;
}

.program-full-online-teaser {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 0.65rem;
}

.program-full-online-teaser__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.1rem;
  color: #0f766e;
  background: #fff;
  border-radius: 0.55rem;
  box-shadow: 0 2px 8px rgb(20 184 166 / 0.15);
}

.program-full-online-teaser__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.program-full-online-teaser__text {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
}

.program-full-online-teaser__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  background: #fff;
  border: 1px solid rgb(20 184 166 / 0.45);
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.program-full-online-teaser__btn:hover {
  color: #fff;
  background: #0f766e;
}

.program-bildiri__grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.program-bildiri__grid--parallel {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .program-bildiri__grid--parallel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .program-bildiri__grid--parallel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1320px) {
  .program-bildiri__grid--parallel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Çevrim içi: en fazla 4 sanal oda yan yana (8 oda = 2 satır), referans kart düzeni */
.program-bildiri__grid--parallel.program-bildiri__grid--online {
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
  overflow: visible;
}

@media (min-width: 720px) {
  .program-bildiri__grid--parallel.program-bildiri__grid--online {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .program-bildiri__grid--parallel.program-bildiri__grid--online {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .program-bildiri__grid--parallel.program-bildiri__grid--online {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.program-bildiri__grid--online {
  gap: 1rem;
  align-items: stretch;
}

.program-bildiri__grid--online .program-bildiri-hall--online {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d1d5db;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.program-bildiri-hall--online .program-bildiri-hall__banner {
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background: var(--brand-800);
}

.program-bildiri-hall--online .program-bildiri-hall__room-meta {
  padding: 0.65rem 0.75rem 0.55rem;
  border-bottom: 1px solid #e5e7eb;
}

.program-bildiri-hall--online .program-bildiri-hall__room-name {
  margin: 0 0 0.35rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-800);
}

.program-bildiri-hall--online .program-bildiri-hall__room-chair {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #334155;
}

.program-bildiri-hall--online .program-bildiri-hall__room-chair span {
  font-weight: 600;
}

.program-bildiri-hall--online .program-bildiri-hall__room-live {
  margin-top: 0.45rem;
}

.program-bildiri-hall--online .program-bildiri-hall__join--room {
  padding: 0.35rem 0.6rem;
  font-size: 0.6875rem;
}

.program-bildiri__grid--online .program-bildiri-hall__sessions,
.program-bildiri__grid--online .program-bildiri-hall__list {
  overflow: visible;
  max-height: none;
}

.program-bildiri__grid--online .program-bildiri-hall--online .program-bildiri-hall__item {
  border-bottom: 1px solid #e5e7eb;
}

.program-bildiri__grid--online .program-bildiri-hall--online .program-bildiri-hall__item:last-child {
  border-bottom: none;
}

/* Çevrim içi sunum satırı — saat solda kırmızı, sunan vurgulu (referans) */
.program-bildiri-hall--online .program-presentation-slot--online-ref {
  display: grid;
  grid-template-columns: 4.85rem minmax(0, 1fr);
  gap: 0.35rem 0.55rem;
  padding: 0.5rem 0.65rem;
  border: none;
  border-radius: 0;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref .program-presentation-slot__time {
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e11d48;
  text-align: left;
  background: none;
  border: none;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref .program-presentation-slot__title {
  margin: 0 0 0.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111827;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref .program-presentation-slot__author--presenter {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #e11d48;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref .program-presentation-slot__author {
  font-size: 0.75rem;
  color: #6b7280;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref .program-presentation-slot__meta {
  margin-top: 0.2rem;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref .program-presentation-slot__badge {
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.program-bildiri-hall--online .program-presentation-slot--online-ref.program-presentation-slot--linked:hover {
  background: #f9fafb;
  box-shadow: none;
}

/* Çevrim içi sunum satırı — başlık + saat aynı satır, sunan altında */
.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.65rem;
  align-items: start;
  padding: 0.65rem 0.8rem 0.7rem;
  border-left: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__body {
  display: contents;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.38;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__aside {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding-top: 0.12rem;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__time {
  margin: 0;
  padding: 0;
  font-variant-numeric: tabular-nums;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.3;
  color: #94a3b8;
  background: none;
  border: none;
  white-space: nowrap;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__presenter,
.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__authors {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #64748b;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro.program-presentation-slot--linked {
  cursor: pointer;
  text-decoration: none;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro.program-presentation-slot--linked:hover,
.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro.program-presentation-slot--linked:focus-visible {
  background: #f8fafc;
  border-left-color: #14b8a6;
  box-shadow: none;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro.program-presentation-slot--linked:focus-visible {
  outline: 2px solid rgb(20 184 166 / 0.35);
  outline-offset: -2px;
}

.program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro.program-presentation-slot--linked:hover .program-presentation-slot__title {
  color: #0f766e;
}

@media (max-width: 719px) {
  .program-bildiri__grid--online .program-bildiri-hall__head {
    flex-direction: column;
    align-items: stretch;
  }

  .program-bildiri__grid--online .program-bildiri-hall__live {
    width: 100%;
  }

  .program-bildiri__grid--online .program-bildiri-hall__join {
    width: 100%;
    justify-content: center;
  }

  .program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.2rem;
  }

  .program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__title {
    grid-column: 1;
    grid-row: 1;
  }

  .program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__aside {
    grid-column: 1;
    grid-row: 2;
    padding-top: 0;
  }

  .program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__presenter,
  .program-bildiri__grid--online .program-bildiri-hall .program-presentation-slot--pro .program-presentation-slot__authors {
    grid-row: 3;
  }
}

/* Çevrim içi gün: saat blokları + tek sütun (paralel kanal rozeti) — yedek görünüm */
.program-online-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 52rem;
}

.program-online-timeline__intro {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #f8fafc 100%);
  border: 1px solid rgb(20 184 166 / 0.22);
  border-radius: 0.65rem;
}

.program-online-timeline__lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #334155;
}

.program-online-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.35rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.program-online-channels__btn {
  padding: 0.4rem 0.75rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.program-online-channels__btn:hover {
  color: #0f172a;
  background: rgb(255 255 255 / 0.7);
}

.program-online-channels__btn.is-active {
  color: #0f766e;
  background: #fff;
  border-color: rgb(20 184 166 / 0.4);
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.06);
}

.program-online-timeline__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.program-online-timeline__toggle-all {
  padding: 0.35rem 0.7rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  cursor: pointer;
}

.program-online-timeline__toggle-all:hover {
  color: #0f766e;
  border-color: rgb(20 184 166 / 0.35);
}

.program-online-timeline__empty {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 0.5rem;
}

.program-online-timeline__blocks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.program-online-block {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.05);
}

.program-online-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.65rem 1rem;
  list-style: none;
  cursor: pointer;
  background: #f8fafc;
  border-bottom: 1px solid transparent;
}

.program-online-block[open] .program-online-block__head {
  border-bottom-color: #e2e8f0;
}

.program-online-block__head::-webkit-details-marker {
  display: none;
}

.program-online-block__chevron {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.program-online-block[open] .program-online-block__chevron {
  transform: rotate(180deg);
}

.program-online-block__count {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

.program-online-block__time {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f766e;
}

.program-online-block__parallel {
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0369a1;
  background: #e0f2fe;
  border-radius: 999px;
}

.program-online-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-online-block__item {
  border-bottom: 1px solid #edf2f7;
}

.program-online-block__item:last-child {
  border-bottom: none;
}

.program-online-card {
  display: grid;
  grid-template-columns: minmax(10rem, 13rem) minmax(0, 1fr);
  gap: 0;
  border-left: 4px solid hsl(var(--track-hue, 174) 55% 42%);
}

.program-online-card--compact .program-online-card__track {
  padding: 0.6rem 0.75rem;
}

.program-online-card--compact .program-online-card__body {
  padding: 0.55rem 0.75rem;
}

@media (max-width: 720px) {
  .program-online-card {
    grid-template-columns: 1fr;
  }
}

.program-online-card__track {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.9rem;
  background: hsl(var(--track-hue, 174) 40% 97%);
  border-right: 1px solid #e2e8f0;
}

.program-online-card__track-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.program-online-card__track-name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
}

.program-online-card__join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: var(--brand-800);
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
}

.program-online-card__join:hover {
  background: var(--brand-700);
}

.program-online-card__body .program-presentation-slot--no-time {
  display: block;
  grid-template-columns: minmax(0, 1fr);
  padding: 0.85rem 1rem;
}

.program-online-card__body .program-presentation-slot--no-time.program-presentation-slot--linked {
  grid-template-columns: minmax(0, 1fr) auto;
}

.program-bildiri__grid--tracks {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
}

@media (min-width: 900px) {
  .program-bildiri__grid--tracks {
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  }
}

@media (min-width: 1320px) {
  .program-bildiri__grid--tracks {
    grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  }
}

.program-bildiri__tab--general {
  flex: 1.15 1 12rem;
}

.program-bildiri__tab--general .program-bildiri__tab-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.6rem;
  color: #b45309;
  background: #fffbeb;
  border-radius: 0.35rem;
}

.program-bildiri__tab--general.is-active {
  color: #7c2d12;
}

.program-bildiri__tab--general.is-active .program-bildiri__tab-num {
  color: #fff;
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 2px 8px rgb(180 83 9 / 0.35);
}

.program-bildiri__panel--general {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.program-general-tab,
.program-general-tab--catalog {
  width: 100%;
  max-width: none;
}

.program-general-tab__intro {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.75rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfeff 48%, #fffbeb 100%);
  border: 1px solid #99f6e4;
  border-radius: 1rem;
  box-shadow: 0 8px 28px rgb(15 118 110 / 0.08);
}

.program-general-tab__intro-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.15rem;
  color: #0f766e;
  background: #fff;
  border: 1px solid #99f6e4;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgb(15 118 110 / 0.12);
}

.program-general-tab__intro-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-general-tab__intro-title {
  margin: 0 0 0.35rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}

.program-general-tab__intro-lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.program-general-tab__intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0.75rem 0 0;
}

.program-general-tab__pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #0f766e;
  border-radius: 0.45rem;
}

.program-general-tab__pdf-btn:hover {
  color: #fff;
  background: #115e59;
}

.program-general-tab__pdf-hint {
  font-size: 0.75rem;
  color: #64748b;
}

.program-general-tab__day + .program-general-tab__day {
  margin-top: 2rem;
  padding-top: 0.25rem;
}

.program-general-tab__day-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #e2e8f0;
}

.program-general-tab__day-title-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  min-width: 0;
}

.program-general-tab__day-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.9rem;
  color: #0f766e;
  background: #f0fdfa;
  border-radius: 0.5rem;
}

.program-general-tab__day-title {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.3;
  color: #134e4a;
}

.program-general-tab__day-meta {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.program-general-tab__empty {
  margin: 0;
  padding: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 0.75rem;
}

.program-bildiri__tab--culture .program-bildiri__tab-num {
  color: #0d9488;
}

.program-bildiri__tab--culture.is-active {
  border-color: #99f6e4;
}

.program-cultural-tab__intro-icon {
  background: linear-gradient(145deg, #ccfbf1, #f0fdfa);
  color: #0f766e;
}

.program-cultural-tab__list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.program-cultural-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgb(15 23 42 / 0.04),
    0 12px 32px rgb(15 23 42 / 0.06);
}

.program-cultural-card__head {
  padding: 1.35rem 1.5rem 1.15rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #fff 55%, #fffbeb 100%);
  border-bottom: 1px solid #e2e8f0;
}

.program-cultural-card__head-main {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.program-cultural-card__badge {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.125rem;
  color: #0f766e;
  background: #fff;
  border: 1px solid #99f6e4;
  border-radius: 0.85rem;
  box-shadow: 0 4px 14px rgb(13 148 136 / 0.12);
}

.program-cultural-card__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-cultural-card__title {
  margin: 0;
  font-size: 1.1875rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.program-cultural-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.program-cultural-card__meta-item {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #9a3412;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 999px;
}

.program-cultural-card__meta-item i {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #ea580c;
}

.program-cultural-card__meta-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.program-cultural-card__body {
  padding: 1.15rem 1.5rem 1.35rem;
}

.program-cultural-card__body--prose {
  padding-top: 0.25rem;
}

.program-cultural-card__prose {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.program-cultural-card__timeline-label {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.program-cultural-card__timeline-count {
  margin-left: auto;
  padding: 0.15rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f766e;
  letter-spacing: 0;
  text-transform: none;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 999px;
}

.program-cultural-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-cultural-timeline__item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.program-cultural-timeline__item + .program-cultural-timeline__item {
  margin-top: 0;
}

.program-cultural-timeline__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.15rem;
}

.program-cultural-timeline__node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.9375rem;
  color: #fff;
  background: linear-gradient(145deg, #0d9488, #0f766e);
  border: 3px solid #f0fdfa;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(13 148 136 / 0.28);
}

.program-cultural-timeline__line {
  flex: 1;
  width: 2px;
  min-height: 1.25rem;
  margin: 0.35rem 0;
  background: linear-gradient(180deg, #5eead4, #cbd5e1);
  border-radius: 1px;
}

.program-cultural-timeline__content {
  padding: 0.55rem 0.85rem 1.1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px rgb(15 23 42 / 0.03);
}

.program-cultural-timeline__item--last .program-cultural-timeline__content {
  margin-bottom: 0;
  padding-bottom: 0.85rem;
}

.program-cultural-timeline__time {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.8125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 0.4rem;
}

.program-cultural-timeline__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.55;
  color: #334155;
}

.program-cultural-timeline__item--nature .program-cultural-timeline__node {
  background: linear-gradient(145deg, #16a34a, #15803d);
  border-color: #dcfce7;
  box-shadow: 0 4px 12px rgb(22 163 74 / 0.25);
}

.program-cultural-timeline__item--heritage .program-cultural-timeline__node {
  background: linear-gradient(145deg, #b45309, #92400e);
  border-color: #ffedd5;
  box-shadow: 0 4px 12px rgb(180 83 9 / 0.22);
}

.program-cultural-timeline__item--meal .program-cultural-timeline__node {
  background: linear-gradient(145deg, #dc2626, #b91c1c);
  border-color: #fee2e2;
  box-shadow: 0 4px 12px rgb(220 38 38 / 0.2);
}

.program-cultural-timeline__item--travel .program-cultural-timeline__node,
.program-cultural-timeline__item--start .program-cultural-timeline__node {
  background: linear-gradient(145deg, #0284c7, #0369a1);
  border-color: #e0f2fe;
  box-shadow: 0 4px 12px rgb(2 132 199 / 0.22);
}

.program-cultural-timeline__item--finish .program-cultural-timeline__node {
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
  border-color: #ede9fe;
  box-shadow: 0 4px 12px rgb(124 58 237 / 0.22);
}

@media (max-width: 640px) {
  .program-cultural-card__head,
  .program-cultural-card__body {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .program-cultural-card__meta-item span {
    white-space: normal;
  }

  .program-cultural-timeline__item {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.65rem;
  }

  .program-cultural-timeline__node {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.8125rem;
  }
}

/* Açılış ve oturumlar — zaman çizelgesi */
.program-timeline--general {
  overflow: visible;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.program-timeline--general .program-timeline__row {
  gap: 0;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
}

.program-timeline--general .program-timeline__row:last-child {
  margin-bottom: 0;
}

.program-timeline--general .program-timeline__time {
  align-self: stretch;
  padding: 1.1rem 0.75rem;
  font-size: 0.875rem;
  color: #0f766e;
  background: linear-gradient(180deg, #f0fdfa, #f8fafc);
  border-right: 1px solid #e2e8f0;
}

.program-timeline--general .program-timeline__time-value {
  display: block;
  line-height: 1.35;
  white-space: nowrap;
}

.program-timeline--general .program-timeline__row--minor {
  background: #f8fafc;
  border-style: dashed;
  box-shadow: none;
}

.program-timeline--general .program-timeline__row--minor .program-timeline__time {
  background: #f1f5f9;
  color: #64748b;
}

.program-timeline--general .program-timeline__simple {
  min-height: 2.75rem;
  padding: 0.75rem 1.1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #64748b;
}

.program-timeline--general .program-timeline__content {
  padding: 0.35rem 0;
}

.program-timeline--general .program-timeline__block {
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 0;
}

.program-timeline--general .program-timeline__block--panel .program-timeline__block-title,
.program-timeline--general .program-timeline__block--workshop .program-timeline__block-title {
  font-size: 1rem;
  line-height: 1.45;
  color: #0f172a;
}

.program-timeline--general .program-timeline__bullets {
  margin-top: 0.35rem;
  padding-left: 1.1rem;
  color: #64748b;
}

.program-timeline--general .program-timeline__bullets li {
  margin-bottom: 0.2rem;
  line-height: 1.45;
}

.program-timeline--general .program-timeline__block--split {
  border-bottom: 1px solid #e2e8f0;
}

/* Aynı saatte birden fazla panel/atölye: panel gibi alt alta tam satır */
.program-timeline--general .program-timeline__row--stacked {
  margin-bottom: 0;
  border-top: none;
  border-radius: 0;
  box-shadow: none;
}

.program-timeline--general .program-timeline__row--stack-first {
  border-top: 1px solid #e2e8f0;
  border-radius: 0.85rem 0.85rem 0 0;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
}

.program-timeline--general .program-timeline__row--stack-last {
  margin-bottom: 0.65rem;
  border-radius: 0 0 0.85rem 0.85rem;
  box-shadow: 0 2px 10px rgb(15 23 42 / 0.04);
}

.program-timeline--general .program-timeline__row--stacked:not(.program-timeline__row--stack-last) {
  border-bottom: 1px solid #e2e8f0;
}

.program-timeline--general .program-timeline__row--time-continued .program-timeline__time {
  border-top: 1px solid #e2e8f0;
}

.program-timeline--general .program-timeline__row--stacked .program-timeline__content {
  padding: 0;
}

.program-timeline--general .program-timeline__block--with-poster {
  padding: 1rem 1.15rem 1.1rem;
}

.program-timeline--general .program-timeline__block--with-poster .program-timeline__block-inner {
  grid-template-columns: minmax(0, 1fr) minmax(9.25rem, 12rem);
  gap: 1rem 1.2rem;
  align-items: stretch;
}

.program-timeline--general .program-timeline__block--with-poster .program-timeline__block-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.program-timeline--general .program-timeline__block--with-poster .program-timeline__actions {
  margin-top: auto;
  padding-top: 0.75rem;
}

.program-timeline--general .program-timeline__block--with-poster .program-timeline__block-poster {
  align-self: stretch;
  width: 100%;
  min-height: 11.5rem;
  padding: 0.45rem 0.5rem;
}

.program-timeline--general .program-timeline__block--with-poster .program-timeline__block-poster img {
  width: 100%;
  height: 100%;
  min-height: 10.5rem;
  max-height: 16rem;
  object-fit: contain;
}

.program-timeline--general .program-timeline__items li::before {
  color: #ea580c;
}

.program-timeline--general .program-timeline__block--opening.program-timeline__block--featured {
  padding: 1.15rem 1.25rem 1.2rem;
  background: linear-gradient(145deg, #faf5ff 0%, #f5f3ff 42%, #fdf4ff 100%);
  border-top: 3px solid #8b5cf6;
}

.program-timeline--general .program-timeline__opening-hero {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-timeline--general .program-timeline__opening-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #4c1d95;
}

.program-timeline--general .program-timeline__opening-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-timeline--general .program-timeline__opening-items li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
}

.program-timeline--general .program-timeline__opening-items li .fa-circle-check {
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #7c3aed;
}

.program-timeline--general .program-timeline__opening-speeches {
  padding: 0.75rem 0.85rem;
  background: rgb(255 255 255 / 0.72);
  border: 1px solid #ddd6fe;
  border-radius: 0.65rem;
}

.program-timeline--general .program-timeline__section-label {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #6d28d9;
}

.program-timeline--general .program-timeline__opening-speakers {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-timeline--general .program-timeline__opening-speakers li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.4rem 0;
}

.program-timeline--general .program-timeline__opening-speakers li + li {
  border-top: 1px solid #ede9fe;
}

.program-timeline--general .program-timeline__opening-speaker-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.7rem;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 999px;
}

.program-timeline--general .program-timeline__opening-speaker-name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1e1b4b;
}

.program-timeline--general .program-timeline__block--session,
.program-timeline--general .program-timeline__block--keynote {
  background: linear-gradient(180deg, #f0fdf4, #fff);
}

.program-timeline--general .program-timeline__speaker-name {
  font-size: 1rem;
}

.program-timeline--general .program-timeline__talk-title {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #475569;
}

.program-timeline--general .program-timeline__hall {
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.program-timeline--general .program-timeline__link {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 0.45rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.program-timeline--general .program-timeline__link:hover {
  color: #fff;
  background: #0f766e;
}

@media (min-width: 720px) {
  .program-general-tab__intro {
    padding: 1.35rem 1.5rem;
  }

  .program-general-tab__intro-title {
    font-size: 1.35rem;
  }

  .program-timeline--general .program-timeline__row {
    grid-template-columns: minmax(7rem, 8.25rem) minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .program-timeline--general .program-timeline__row {
    grid-template-columns: 1fr;
  }

  .program-timeline--general .program-timeline__time {
    justify-content: flex-start;
    padding: 0.65rem 1rem;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .program-timeline--general .program-timeline__row--time-continued .program-timeline__time {
    min-height: 0.35rem;
    padding: 0;
    border-bottom: none;
  }

  .program-timeline--general .program-timeline__block--with-poster .program-timeline__block-inner {
    grid-template-columns: 1fr;
  }

  .program-timeline--general .program-timeline__block--with-poster .program-timeline__block-poster {
    justify-self: center;
    width: min(100%, 11rem);
    min-height: 0;
  }
}

@media (min-width: 1080px) {
  .program-timeline--general .program-timeline__row {
    grid-template-columns: minmax(7.5rem, 9rem) minmax(0, 1fr);
  }

  .program-timeline--general .program-timeline__row--minor .program-timeline__content {
    display: block;
  }
}

.program-bildiri-hall--compact .program-bildiri-hall__title {
  font-size: 0.9375rem;
}

.program-bildiri-hall--compact .program-presentation-slot {
  padding: 0.45rem 0.6rem;
  grid-template-columns: 4.75rem minmax(0, 1fr) auto;
  gap: 0.35rem 0.55rem;
}

.program-bildiri-hall--compact .program-presentation-slot__title {
  font-size: 0.8125rem;
}

.program-bildiri-hall--compact .program-presentation-slot__time {
  font-size: 0.75rem;
}

.program-bildiri-hall__subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-other-sessions {
  margin-top: 2.5rem;
  padding-top: 0.25rem;
  border-top: 1px solid #e2e8f0;
}

.program-other-sessions__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  list-style: none;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.program-other-sessions__summary::-webkit-details-marker {
  display: none;
}

.program-other-sessions[open] .program-other-sessions__summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.program-other-sessions__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.program-other-sessions__count {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
}

.program-other-sessions__body {
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 0.65rem 0.65rem;
}

.program-bildiri-hall {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.05);
}

.program-bildiri-hall__head {
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.program-bildiri-hall__title {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #134e4a;
}

.program-bildiri-hall__chair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
}

.program-bildiri-hall__chair-label {
  font-weight: 600;
  color: #64748b;
}

.program-bildiri-hall__chair strong {
  font-weight: 700;
  color: #0f172a;
}

.program-bildiri-hall__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-bildiri-hall__item {
  border-bottom: 1px solid #edf2f7;
}

.program-bildiri-hall__item:last-child {
  border-bottom: none;
}

.program-bildiri-hall--grouped .program-bildiri-hall__sessions {
  display: flex;
  flex-direction: column;
}

.program-bildiri-hall__session--block {
  border-top: 1px solid #e2e8f0;
}

.program-bildiri-hall__session--block:first-child {
  border-top: none;
}

.program-bildiri-hall__session-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 0.65rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid #edf2f7;
}

.program-bildiri-hall__session-head--online .program-bildiri-hall__session-live {
  display: none;
}

.program-bildiri-hall__session-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-700);
}

.program-bildiri-hall__session-head .program-bildiri-hall__chair {
  margin: 0;
  flex: 1 1 12rem;
}

.program-bildiri-hall__session-live {
  margin-left: auto;
}

.program-bildiri-hall__join--sm {
  padding: 0.3rem 0.55rem;
  font-size: 0.6875rem;
}

/* Bildiri sunum satırları — saat solda, içerik sağda, kompakt */
.program-bildiri-hall .program-presentation-slot,
.presentation-schedule .program-presentation-slot {
  display: grid;
  grid-template-columns: 5.35rem minmax(0, 1fr);
  gap: 0.45rem 0.7rem;
  align-items: start;
  padding: 0.55rem 0.7rem 0.6rem;
  color: inherit;
  text-decoration: none;
}

.program-bildiri-hall .program-presentation-slot--linked,
.presentation-schedule .program-presentation-slot--linked {
  grid-template-columns: 5.35rem minmax(0, 1fr) auto;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.program-bildiri-hall .program-presentation-slot--linked:hover,
.presentation-schedule .program-presentation-slot--linked:hover {
  background: #f8fafc;
  box-shadow: inset 2px 0 0 #14b8a6;
}

.program-bildiri-hall .program-presentation-slot--linked:focus-visible,
.presentation-schedule .program-presentation-slot--linked:focus-visible {
  outline: 2px solid #0f766e;
  outline-offset: -2px;
}

.program-bildiri-hall .program-presentation-slot__aside--time,
.presentation-schedule .program-presentation-slot__aside--time {
  min-width: 0;
  padding-top: 0.1rem;
}

.program-bildiri-hall .program-presentation-slot__time,
.presentation-schedule .program-presentation-slot__time {
  display: block;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #e11d48;
  text-align: left;
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 0;
}

.program-bildiri-hall .program-presentation-slot__body,
.presentation-schedule .program-presentation-slot__body {
  min-width: 0;
}

.program-presentation-slot__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.35rem;
}

.program-presentation-slot__ref {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid rgb(20 184 166 / 0.25);
  border-radius: 0.35rem;
}

.program-presentation-slot__presenter {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #334155;
}

.program-presentation-slot__presenter-label {
  margin-right: 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.program-presentation-slot__presenter-name {
  font-weight: 600;
  color: #c2410c;
}

.program-bildiri-hall .program-presentation-slot__title,
.presentation-schedule .program-presentation-slot__title {
  margin: 0 0 0.2rem;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.38;
  color: #0f172a;
  overflow-wrap: anywhere;
}

.program-bildiri-hall .program-presentation-slot--linked:hover .program-presentation-slot__title,
.presentation-schedule .program-presentation-slot--linked:hover .program-presentation-slot__title {
  color: #0f766e;
}

.program-bildiri-hall .program-presentation-slot__authors,
.presentation-schedule .program-presentation-slot__authors {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
}

.program-bildiri-hall .program-presentation-slot__author,
.presentation-schedule .program-presentation-slot__author {
  color: #64748b;
  font-weight: 500;
}

.program-bildiri-hall .program-presentation-slot__author--presenter,
.presentation-schedule .program-presentation-slot__author--presenter {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #e11d48;
}

.program-presentation-slot__presenter-mark {
  font-weight: 700;
  color: #e11d48;
}

.program-presentation-slot__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.28rem;
}

.program-bildiri-hall .program-presentation-slot__badge,
.presentation-schedule .program-presentation-slot__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
}

.program-bildiri-hall .program-presentation-slot__chevron,
.presentation-schedule .program-presentation-slot__chevron {
  align-self: center;
  margin: 0;
  font-size: 0.65rem;
  color: #cbd5e1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.program-bildiri-hall .program-presentation-slot--linked:hover .program-presentation-slot__chevron,
.presentation-schedule .program-presentation-slot--linked:hover .program-presentation-slot__chevron {
  color: #0f766e;
  transform: translateX(2px);
}

.presentation-schedule__item {
  border-bottom: 1px solid #edf2f7;
  scroll-margin-top: 6.5rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.presentation-schedule__item:target {
  background: linear-gradient(90deg, #ecfdf5 0%, #fff 55%);
  box-shadow: inset 4px 0 0 #0f766e;
}

.presentation-schedule__slot.program-presentation-slot {
  grid-template-columns: 5.25rem minmax(0, 1fr);
}

.presentation-schedule__link.program-presentation-slot--linked {
  border-radius: 0.4rem;
}

/* Program presentation (bildiri slot) detail */
.program-presentation-page {
  margin-top: -2.5rem;
  padding-bottom: 3.5rem;
}

.program-presentation-hero {
  position: relative;
  padding: 1.5rem 0 1.85rem;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 38%, #f8fafc 100%);
  border-bottom: 1px solid rgb(20 184 166 / 0.2);
}

.program-presentation-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgb(20 184 166 / 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgb(15 118 110 / 0.08), transparent 50%);
  pointer-events: none;
}

.program-presentation-hero__inner {
  position: relative;
  z-index: 1;
}

.program-presentation-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.program-presentation-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  transition: color 0.15s ease;
}

.program-presentation-breadcrumb__link:hover {
  color: #0d9488;
}

.program-presentation-breadcrumb__sep {
  color: #94a3b8;
}

.program-presentation-breadcrumb__current {
  color: #64748b;
}

.program-presentation-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-presentation-hero__eyebrow i {
  font-size: 0.75rem;
  opacity: 0.9;
}

.program-presentation-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.program-presentation-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #334155;
  background: rgb(255 255 255 / 0.88);
  border: 1px solid rgb(226 232 240 / 0.95);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.program-presentation-chip i {
  font-size: 0.7rem;
  color: #0f766e;
}

.program-presentation-chip--type {
  color: #0f766e;
  background: #f0fdfa;
  border-color: rgb(20 184 166 / 0.35);
}

.program-presentation-chip--hall i {
  color: #b45309;
}

.program-presentation-hero__title {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.program-presentation-authors {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(20 184 166 / 0.15);
}

.program-presentation-authors__label {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.program-presentation-authors__label + .program-presentation-authors__list + .program-presentation-authors__label {
  margin-top: 0.65rem;
}

.program-presentation-authors__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-presentation-authors__item {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  font-size: 0.875rem;
  color: #334155;
  background: rgb(255 255 255 / 0.75);
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
}

.program-presentation-authors__item--presenter {
  font-weight: 700;
  color: #9a3412;
  background: #fff7ed;
  border-color: #fed7aa;
}

.program-presentation-body {
  padding-top: 1.75rem;
}

.program-presentation-main > .program-session-live {
  margin-bottom: 1.25rem;
}

.program-presentation-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .program-presentation-layout {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
    gap: 1.5rem;
  }
}

.program-presentation-page .program-presentation-detail-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
}

@media (min-width: 640px) {
  .program-presentation-page .program-presentation-detail-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
  }
}

.program-presentation-page .program-presentation-detail-card__time {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 7.5rem;
  padding: 0.85rem 1rem;
  text-align: center;
  background: linear-gradient(160deg, #0f766e 0%, #14b8a6 100%);
  border-radius: 0.75rem;
  color: #fff;
}

.program-presentation-page .program-presentation-detail-card__time-value {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.program-presentation-page .program-presentation-detail-card__duration {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.88;
}

.program-presentation-page .program-presentation-detail-card__heading {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-presentation-meta {
  margin: 0;
}

.program-presentation-meta__row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9rem) minmax(0, 1fr);
  gap: 0.5rem 0.75rem;
  padding: 0.55rem 0;
  border-top: 1px solid #f1f5f9;
}

.program-presentation-meta__row:first-child {
  border-top: none;
  padding-top: 0;
}

.program-presentation-meta__row dt {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.program-presentation-meta__row dt i {
  width: 1rem;
  text-align: center;
  color: #0f766e;
}

.program-presentation-meta__row dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
}

.program-presentation-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-presentation-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.05rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
}

.program-presentation-notice__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.95rem;
  color: #0f766e;
  background: #ecfdf5;
  border-radius: 0.5rem;
}

.program-presentation-notice__title {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.program-presentation-notice__body {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.program-presentation-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.program-presentation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.program-presentation-btn:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.program-presentation-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  font-size: 0.8rem;
  border-radius: 50%;
}

.program-presentation-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-color: #0f766e;
  box-shadow: 0 4px 14px rgb(15 118 110 / 0.28);
}

.program-presentation-btn--primary .program-presentation-btn__icon {
  background: rgb(255 255 255 / 0.18);
}

.program-presentation-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgb(15 118 110 / 0.32);
}

.program-presentation-btn--secondary {
  color: #0f766e;
  background: #fff;
  border-color: rgb(20 184 166 / 0.4);
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.05);
}

.program-presentation-btn--secondary .program-presentation-btn__icon {
  color: #0f766e;
  background: #f0fdfa;
}

.program-presentation-btn--secondary:hover {
  background: #f0fdfa;
  border-color: #14b8a6;
}

.program-presentation-block {
  margin-bottom: 1.5rem;
}

.program-presentation-block__title {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.program-presentation-block__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #334155;
}

.program-presentation-block__keywords {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.program-presentation-back__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}

.program-presentation-back__link:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .program-bildiri-hall .program-presentation-slot,
  .presentation-schedule .program-presentation-slot {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .program-bildiri-hall .program-presentation-slot--linked,
  .presentation-schedule .program-presentation-slot--linked {
    grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  }

  .program-presentation-page .program-presentation-detail-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.auth-password-setup__form-lead {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.auth-password-setup__alert {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.65rem;
}

.auth-password-setup__alert ul {
  margin: 0;
  padding-left: 1rem;
}

.auth-password-setup__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-password-setup__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-password-setup__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.auth-password-setup__req {
  color: #e11d48;
}

.auth-password-setup__password {
  position: relative;
}

.auth-password-setup__input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 2.75rem 0.65rem 0.9rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #d8dee6;
  border-radius: 0.65rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-password-setup__input:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgb(13 148 136 / 0.15);
}

.auth-password-setup__pw-toggle {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 0.95rem;
  color: #64748b;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0.45rem;
  transform: translateY(-50%);
  transition: color 0.15s, background 0.15s;
}

.auth-password-setup__pw-toggle:hover {
  color: #0f766e;
  background: rgb(13 148 136 / 0.08);
}

.auth-password-setup__rules {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0.15rem 0 0;
  padding: 0.85rem 0.95rem;
  list-style: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
}

.auth-password-setup__rules li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  font-size: 0.8125rem;
  color: #64748b;
}

.auth-password-setup__rules li.is-met {
  color: #0f766e;
  font-weight: 600;
}

.auth-password-setup__rules li i {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.auth-password-setup__rules li.is-met i {
  color: #059669;
}

.auth-password-setup__submit {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  margin-top: 0.35rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #14b8a6 0%, #0d9488 55%, #0f766e 100%);
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 10px 24px rgb(13 148 136 / 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s, opacity 0.15s;
}

.auth-password-setup__submit:hover:not(:disabled) {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgb(13 148 136 / 0.32);
}

.auth-password-setup__submit.is-disabled,
.auth-password-setup__submit:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.auth-password-setup__logout {
  margin-top: 1rem;
  text-align: center;
}

.auth-password-setup__logout button {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.35rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color 0.15s;
}

.auth-password-setup__logout button:hover {
  color: #0f766e;
}

@media (max-width: 860px) {
  .auth-password-setup__card {
    grid-template-columns: 1fr;
  }

  .auth-password-setup__aside {
    padding: 1.65rem 1.35rem 1.35rem;
  }

  .auth-password-setup__tips {
    margin-top: 0.5rem;
  }

  .auth-password-setup__main {
    padding: 1.65rem 1.35rem 1.35rem;
  }
}
