:root {
  --brand: #8b001d;
  --brand-dark: #680016;
  --brand-soft: #fff3f5;
  --yellow: #ffc837;
  --text: #161616;
  --muted: #747474;
  --line: #eeeeee;
  --card: #ffffff;
  --page: #f7f7f8;
  --shadow: 0 10px 30px rgba(20, 20, 20, .08);
  --radius: 18px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--page);
  color: var(--text);
  min-height: 100vh;
}

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

button,
a {
  touch-action: manipulation;
}

button {
  font: inherit;
}

.svg-sprite {
  display: none;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(139, 0, 29, .06), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #f8f8f8 55%, #fff 100%);
  z-index: -1;
}

.app-shell {
  width: min(100%, 480px);
  margin: 0 auto;
  min-height: 100vh;
  background: #fff;
  padding-bottom: calc(100px + var(--safe-bottom));
  position: relative;
  box-shadow: 0 0 0 1px rgba(0,0,0,.03), 0 20px 70px rgba(0,0,0,.08);
}

.topbar {
  height: 88px;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #131313;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-button svg {
  width: 30px;
  height: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  letter-spacing: .02em;
  font-weight: 800;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

main {
  display: block;
}

.hero {
  margin: 0 20px 18px;
  height: clamp(250px, 57vw, 285px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #222;
  box-shadow: var(--shadow);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: opacity .28s ease, transform .55s ease;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0,0,0,.70), rgba(0,0,0,.42) 55%, rgba(0,0,0,.18));
}

.hero-content {
  position: absolute;
  inset: 0;
  padding: 22px 20px 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.76);
}

.hero h1 {
  font-size: clamp(21px, 5.4vw, 29px);
  line-height: 1.12;
  letter-spacing: -.04em;
  margin: 0 0 14px;
  max-width: 350px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(13px, 3.6vw, 16px);
  line-height: 1.38;
  max-width: 380px;
  color: rgba(255,255,255,.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.btn {
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-yellow {
  background: var(--brand);
  color: #fff;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 11.5px;
  letter-spacing: .01em;
  box-shadow: 0 10px 22px rgba(139,0,29,.20);
}

.btn-red {
  background: var(--brand);
  color: #fff;
  min-height: 52px;
  padding: 0 18px;
  box-shadow: 0 10px 22px rgba(139,0,29,.20);
}

.btn-outline {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(139,0,29,.18);
  color: var(--brand);
  background: #fff;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 62px;
  justify-content: flex-end;
}

.slider-dots button {
  width: 16px;
  height: 3px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: #d7d7d7;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--brand);
  width: 22px;
  height: 3px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  padding: 12px 20px 16px;
}

.quick-card {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--card);
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 10px 6px;
  gap: 7px;
}

.quick-card svg {
  width: 35px;
  height: 35px;
  color: var(--brand);
  stroke-width: 1.7;
}

.quick-card strong {
  font-size: 15px;
  line-height: 1.1;
}

.quick-card span {
  font-size: 11.5px;
  line-height: 1.22;
  color: var(--muted);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.social-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, .68fr));
  gap: 12px;
  padding: 2px 20px 22px;
}

.language-button,
.social-button {
  height: 58px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  display: flex;
  align-items: center;
  justify-content: center;
}

.language-button {
  padding: 0 13px;
  gap: 12px;
  cursor: pointer;
}

.flag {
  min-width: 48px;
  min-height: 34px;
  border-radius: 7px;
  background: #e30a17;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.language-button strong {
  font-size: 18px;
}

.chevron {
  margin-left: auto;
  color: #333;
}

.social-button {
  color: #111;
  font-weight: 900;
  font-size: 26px;
}

.president-card {
  margin: 0 20px 26px;
  min-height: 220px;
  display: grid;
  grid-template-columns: 47% 53%;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.president-photo {
  background: #ddd;
  min-height: 220px;
}

.president-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.president-info {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.president-info span {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 9px;
}

.president-info h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 6.4vw, 31px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.president-info p {
  margin: 0 0 21px;
  color: var(--muted);
  line-height: 1.45;
  font-size: clamp(14px, 3.9vw, 17px);
}

.section-heading {
  padding: 0 20px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.section-heading h3 {
  margin: 0;
  font-size: clamp(24px, 7vw, 32px);
  letter-spacing: -.04em;
}

.section-heading a {
  color: var(--brand);
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}

.section-heading svg {
  width: 20px;
  height: 20px;
}

.news-list {
  padding: 0 20px 20px;
  display: grid;
  gap: 12px;
}

.news-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  border-radius: 17px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  min-height: 94px;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
}

.news-card > img {
  width: 128px;
  height: 100%;
  min-height: 94px;
  display: block;
  object-fit: cover;
}

.news-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.26;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card time {
  color: var(--muted);
  font-size: 12.5px;
}

.news-card > svg {
  color: #333;
  margin-right: 10px;
}

.event-panel {
  margin: 4px 20px 16px;
  border-radius: 20px;
  padding: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.event-panel span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-panel h3 {
  margin: 0 0 8px;
  line-height: 1.15;
  font-size: 22px;
  letter-spacing: -.03em;
}

.event-panel p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: max(20px, calc((100vw - 480px) / 2 + 20px));
  bottom: calc(94px + var(--safe-bottom));
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(36, 195, 94, .34);
  z-index: 25;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 480px);
  min-height: calc(78px + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,.97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(0,0,0,.06);
  backdrop-filter: blur(16px);
  z-index: 30;
}

.bottom-nav a,
.bottom-nav button {
  border: 0;
  background: transparent;
  color: #565656;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.bottom-nav svg {
  width: 27px;
  height: 27px;
}

.bottom-nav .active {
  color: var(--brand);
}

.drawer,
.sheet {
  position: fixed;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 50;
}

.drawer.open,
.sheet.open {
  visibility: visible;
  pointer-events: auto;
}

.drawer-backdrop,
.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.34);
  opacity: 0;
  transition: opacity .2s ease;
  border: 0;
  width: 100%;
  height: 100%;
}

.drawer.open .drawer-backdrop,
.sheet.open .sheet-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: #fff;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 20px 24px;
  transform: translateX(-104%);
  transition: transform .22s ease;
  box-shadow: 18px 0 50px rgba(0,0,0,.18);
  overflow-y: auto;
}

.drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 23px;
}

.drawer-brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.drawer-panel > a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.drawer-contact {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  background: var(--brand-soft);
  display: grid;
  gap: 9px;
  color: var(--brand);
  font-weight: 800;
}

.sheet-panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(100%, 480px);
  transform: translate(-50%, 104%);
  transition: transform .22s ease;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 12px 22px calc(24px + var(--safe-bottom));
  box-shadow: 0 -14px 40px rgba(0,0,0,.18);
}

.sheet.open .sheet-panel {
  transform: translate(-50%, 0);
}

.sheet-handle {
  display: block;
  width: 48px;
  height: 5px;
  background: #d8d8d8;
  border-radius: 99px;
  margin: 0 auto 16px;
}

.sheet-panel h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.sheet-panel a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-top: 1px solid var(--line);
  font-weight: 760;
}



/* Normal site görüntüleme sayfası */
.viewer-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(78px + var(--safe-bottom));
}
.viewer-toolbar {
  height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 88px;
  z-index: 18;
}
.viewer-toolbar a,
.viewer-toolbar button {
  min-height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
}
.viewer-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #555;
  font-weight: 750;
  font-size: 13px;
}
.viewer-frame-wrap {
  flex: 1;
  min-height: calc(100vh - 220px);
  background: #fff;
  position: relative;
}
.viewer-frame {
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 620px;
  border: 0;
  display: block;
  background: #fff;
}
.viewer-note {
  margin: 12px 14px 0;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(139,0,29,.12);
  background: var(--brand-soft);
  color: #6d0016;
  font-size: 12px;
  line-height: 1.35;
}
.viewer-note a {
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 390px) {
  .topbar {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    font-size: 30px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .hero,
  .president-card,
  .event-panel {
    margin-left: 16px;
    margin-right: 16px;
  }

  .quick-grid,
  .social-row,
  .section-heading,
  .news-list {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-grid {
    gap: 9px;
  }

  .quick-card {
    min-height: 104px;
  }

  .quick-card strong {
    font-size: 13px;
  }

  .quick-card span {
    font-size: 10.5px;
  }

  .president-info {
    padding: 22px 16px;
  }

  .news-card {
    grid-template-columns: 112px minmax(0, 1fr) 24px;
    gap: 11px;
  }

  .news-card > img {
    width: 112px;
  }
}

@media (min-width: 760px) {
  body {
    padding: 26px 0;
  }

  .app-shell {
    border-radius: 36px;
    overflow: hidden;
  }

  .bottom-nav {
    border-radius: 0 0 36px 36px;
  }
}


.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  stroke: none;
}


/* Dinamik mobil sayfalar */
.hero-slide[hidden] { display: none; }
.page-title-card {
  margin: 0 20px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.page-title-card span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  margin-bottom: 8px;
}
.page-title-card h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.page-title-card p {
  margin: 0;
  color: rgba(255,255,255,.86);
  line-height: 1.45;
  font-size: 13.5px;
}
.page-list { padding-bottom: 26px; }
.content-page { padding: 0 20px 24px; }
.article-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
}
.article-card-compact { margin-top: 18px; }
.article-card h1 {
  margin: 12px 0 18px;
  font-size: clamp(25px, 7vw, 36px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.back-link,
.source-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 12px;
  padding: 0 13px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 850;
}
.source-link { margin-top: 18px; }
.article-content {
  color: #222;
  font-size: 15.5px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.article-content img,
.article-content video,
.article-content iframe {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 16px;
}
.article-content iframe { min-height: 260px; }
.article-content table {
  width: 100% !important;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}
.article-content td,
.article-content th {
  border: 1px solid #eee;
  padding: 8px;
}
.article-content a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}
.article-content h1,
.article-content h2,
.article-content h3 {
  line-height: 1.2;
  letter-spacing: -.02em;
}
.member-grid {
  padding: 0 20px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.member-card {
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.member-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.member-card strong {
  font-size: 14px;
  line-height: 1.25;
}
.menu-list,
.contact-cards {
  padding: 0 20px 24px;
  display: grid;
  gap: 12px;
}
.menu-list a,
.contact-card {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  font-weight: 850;
}
.contact-card {
  grid-template-columns: 40px minmax(0, 1fr);
}
.contact-card svg,
.menu-list a svg:first-child {
  color: var(--brand);
}
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  margin-top: 4px;
  overflow-wrap: anywhere;
}
@media (max-width: 390px) {
  .page-title-card,
  .content-page,
  .member-grid,
  .menu-list,
  .contact-cards { margin-left: 16px; margin-right: 16px; padding-left: 0; padding-right: 0; }
  .content-page { padding-left: 16px; padding-right: 16px; }
  .member-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

/* Ana menü: ana başlık + alt menüler */
.dynamic-menu-list {
  gap: 10px;
}
.menu-group {
  display: grid;
  gap: 8px;
}
.menu-entry {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  font-weight: 850;
}
.menu-entry svg:first-child {
  color: var(--brand);
}
.submenu-list {
  margin-left: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--brand-soft);
  display: grid;
  gap: 8px;
}
.menu-entry-child {
  min-height: 54px;
  border-radius: 14px;
  box-shadow: none;
  background: #fffdfd;
  font-size: 14px;
}
.level-2 .menu-entry-child,
.level-3 .menu-entry-child {
  background: #fafafa;
  font-size: 13px;
}

/* İş ilanları */
.job-list {
  padding: 0 20px 24px;
  display: grid;
  gap: 12px;
}
.job-card {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 24px;
  gap: 13px;
  align-items: center;
  padding: 14px;
}
.job-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.3;
}
.job-card time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.job-content form,
.article-content form {
  display: grid;
  gap: 10px;
}
.article-content input,
.article-content select,
.article-content textarea,
.article-content button {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-family: inherit;
}
.article-content button,
.article-content input[type="submit"] {
  background: var(--brand);
  color: #fff;
  border: 0;
  font-weight: 850;
}

/* Ana sayfa blog ve harita */
.blog-list {
  padding-bottom: 10px;
}
.simple-action-card {
  margin: 0 20px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.simple-action-card span {
  display: block;
  color: var(--brand);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.simple-action-card strong {
  font-size: 20px;
  line-height: 1.2;
}
.map-card {
  margin: 0 20px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-card iframe {
  width: 100%;
  height: 245px;
  border: 0;
  display: block;
}
.map-info {
  padding: 15px 17px 17px;
  display: grid;
  gap: 4px;
}
.map-info strong {
  font-size: 17px;
}
.map-info span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
@media (max-width: 390px) {
  .job-list,
  .simple-action-card,
  .map-card { margin-left: 16px; margin-right: 16px; }
  .job-list { padding-left: 0; padding-right: 0; }
}

/* Sol üst çekmece menüsü: sağ alttaki Menü sayfasındaki dinamik menüyle aynı kaynağı kullanır */
.drawer-menu-list {
  display: grid;
  gap: 6px;
}
.drawer-menu-group {
  display: grid;
  gap: 5px;
}
.drawer-menu-link {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: #191919;
  font-weight: 800;
  text-decoration: none;
}
.drawer-menu-link svg:first-child {
  color: var(--brand);
  width: 23px;
  height: 23px;
}
.drawer-menu-link svg:last-child {
  width: 18px;
  height: 18px;
  color: #9a9a9a;
  justify-self: end;
}
.drawer-submenu {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--brand-soft);
  display: grid;
  gap: 3px;
}
.drawer-level-1 .drawer-menu-link {
  min-height: 42px;
  font-size: 14px;
  font-weight: 750;
}
.drawer-level-2 .drawer-menu-link,
.drawer-level-3 .drawer-menu-link {
  min-height: 38px;
  font-size: 13px;
  font-weight: 700;
  color: #444;
}


/* Üyeler sayfası hızlı işlem kartları */
.member-actions {
  padding: 0 20px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.member-action-card {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.045);
  padding: 14px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
}
.member-action-card.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.member-action-card.primary small { color: rgba(255,255,255,.78); }
.member-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.member-action-card.primary .member-action-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.member-action-card strong {
  display: block;
  font-size: 15px;
  line-height: 1.18;
}
.member-action-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 800;
}
.section-head.compact { padding-bottom: 12px; }
.member-fallback-content { margin: 0 20px 24px; }
.google-translate-holder,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.skiptranslate { display: none !important; }
body { top: 0 !important; }
html.translated-ltr body,
html.translated-rtl body { top: 0 !important; }

@media (max-width: 380px) {
  .member-actions { grid-template-columns: 1fr; }
}


.language-choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px 0 12px;
}

.lang-choice {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--dark);
  background: #fff;
}

.lang-choice.active {
  background: var(--kirsiad);
  color: #fff;
  border-color: var(--kirsiad);
}

.notranslate { unicode-bidi: isolate; }

.member-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
}

/* İş ilanı blok görünümü: alanlar ayrı link değildir, sadece alt buton tıklanabilir */
.job-post-list {
  padding: 0 20px 26px;
  display: grid;
  gap: 18px;
}
.job-post-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20,20,20,.07);
  padding: 40px 22px 22px;
}
.job-post-card h2 {
  color: var(--brand);
  font-size: 25px;
  line-height: 1.15;
  margin: 0 0 24px;
  padding-right: 80px;
  font-weight: 900;
}
.job-ribbon {
  position: absolute;
  right: -58px;
  top: 26px;
  width: 190px;
  height: 38px;
  transform: rotate(39deg);
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(139,0,29,.18);
  z-index: 1;
}
.job-ribbon span {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}
.job-fields {
  display: grid;
  gap: 12px;
}
.job-field {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
}
.job-field strong {
  color: var(--brand);
  font-size: 17px;
  font-weight: 900;
}
.job-field span {
  color: #333;
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}
.job-description {
  margin: 22px 0 18px;
  padding: 18px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #666;
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
}
.job-contact-lines {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}
.job-contact-lines p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.job-contact-lines strong,
.job-contact-lines span {
  font-weight: 900;
}
.job-contact-lines span {
  color: var(--brand);
}
.job-action-button {
  width: 100%;
  min-height: 56px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 20px rgba(139,0,29,.16);
}
.job-card-static {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(20,20,20,.035);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 14px;
}
.mini-button {
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 850;
}
@media (max-width: 390px) {
  .job-post-list { padding-left: 16px; padding-right: 16px; }
  .job-post-card { padding: 36px 16px 18px; }
  .job-post-card h2 { font-size: 22px; padding-right: 70px; }
  .job-field { grid-template-columns: 1fr; gap: 4px; }
  .job-field span { text-align: left; }
}


/* Üye / özgeçmiş detay düzeltmeleri */
.member-detail-page { padding-bottom: 24px; }
.member-detail-content img {
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
}
.member-detail-content p:empty,
.member-detail-content h2:empty { display: none; }
.member-detail-content > img,
.member-detail-content p > img {
  width: 100% !important;
  max-height: 260px;
  object-fit: cover;
  margin: 8px 0;
}
@media (min-width: 360px) {
  .member-detail-content {
    display: block;
  }
  .member-detail-content img {
    max-height: 280px;
  }
}

/* İş ilanı blokları: sadece kart ve en alttaki buton tıklanır. */
.job-post-card a:not(.job-action-button) {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}

/* Son düzeltme: Özgeçmiş/üyeler kartları her zaman düzenli 2 sütun */
.members-page .member-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}
.members-page .member-card {
  min-height: 176px;
  padding: 10px;
  justify-content: flex-start;
  overflow: hidden;
}
.members-page .member-card img {
  width: 100% !important;
  height: 112px !important;
  max-width: 100% !important;
  object-fit: cover !important;
  border-radius: 14px;
  display: block;
}
.members-page .member-card strong {
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.members-page .member-card small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Veri çekilemeyip ham özgeçmiş içeriği gelirse bile resimler sayfayı dağıtmasın */
.member-fallback-content .article-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.member-fallback-content .article-content img {
  width: 100% !important;
  height: 118px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
}
.member-fallback-content .article-content a,
.member-fallback-content .article-content p,
.member-fallback-content .article-content div {
  max-width: 100% !important;
}
@media (max-width: 330px) {
  .members-page .member-grid,
  .member-fallback-content .article-content {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }
  .members-page .member-card img,
  .member-fallback-content .article-content img {
    height: 96px !important;
  }
}

/* İş ilanlarında tek aksiyon: hemen ara */
.job-action-button[href^="mailto:"] { display: none !important; }

/* Yönetim kurulu / özgeçmiş sayfaları: sayfa.php üzerinden açılan yönetim kurulu sayfası da kartlı görünür. */
.board-members-page .page-title-card { margin-bottom: 14px; }
.board-member-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding-bottom: 18px;
}
.board-member-card {
  min-height: 190px !important;
  padding: 10px !important;
  justify-content: flex-start !important;
}
.board-member-card img {
  width: 100% !important;
  height: 122px !important;
  max-width: 100% !important;
  object-fit: cover !important;
  border-radius: 15px !important;
}
.board-member-card strong {
  font-size: 13.5px !important;
  line-height: 1.25 !important;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.board-member-card small {
  font-size: 11.5px !important;
  line-height: 1.25 !important;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.source-link-wrap { padding: 0 20px 24px; }

/* Kart yakalanamayan eski özgeçmiş HTML'i gelirse bile resimler iki sütun içinde dağılmasın. */
.board-raw-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.board-raw-content > h1,
.board-raw-content > h2,
.board-raw-content > h3,
.board-raw-content > p:only-child {
  grid-column: 1 / -1;
}
.board-raw-content img {
  width: 100% !important;
  height: 122px !important;
  max-width: 100% !important;
  object-fit: cover !important;
  border-radius: 15px !important;
}
.board-raw-content a {
  color: inherit !important;
  text-decoration: none !important;
}
.board-raw-content a[href*="ozgecmis"],
.board-raw-content a[href*="özgeçmiş"],
.board-raw-content a[href*="kisi"],
.board-raw-content a[href*="uye"],
.board-raw-content a[href*="detay"] {
  color: var(--brand) !important;
  font-weight: 850;
}
@media (max-width: 330px) {
  .board-member-grid,
  .board-raw-content { gap: 8px !important; }
  .board-member-card img,
  .board-raw-content img { height: 102px !important; }
}

/* Yönetim kurulu / özgeçmiş nihai görünüm */
.board-members-page .member-grid,
.board-member-grid,
.members-page .member-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding-left: 18px;
  padding-right: 18px;
}
.board-member-card,
.members-page .member-card.board-member-card {
  position: relative;
  min-height: 248px !important;
  padding: 0 !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid #ececec !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.055) !important;
  display: grid !important;
  grid-template-rows: 126px auto auto 44px !important;
  gap: 0 !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  text-align: center !important;
}
.board-photo-wrap {
  display: block;
  width: 100%;
  height: 126px;
  overflow: hidden;
  background: #f7f7f7;
}
.board-member-card .board-photo-wrap img,
.board-member-card img,
.members-page .member-card.board-member-card img {
  width: 100% !important;
  height: 126px !important;
  max-width: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  background: #f7f7f7 !important;
}
.board-member-card strong,
.members-page .member-card.board-member-card strong {
  padding: 14px 8px 4px !important;
  min-height: 52px !important;
  font-size: 16px !important;
  line-height: 1.15 !important;
  color: #4d535a !important;
  font-weight: 950 !important;
  text-transform: uppercase;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.board-member-card small,
.members-page .member-card.board-member-card small {
  padding: 0 8px 10px !important;
  min-height: 46px !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  color: var(--brand) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.board-card-footer {
  min-height: 44px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: #fff;
}
.board-card-footer::before {
  content: '';
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
}
.board-members-page .source-link-wrap,
.board-members-page .source-link { display: none !important; }

@media (max-width: 360px) {
  .board-members-page .member-grid,
  .board-member-grid,
  .members-page .member-grid { gap: 10px !important; padding-left: 14px; padding-right: 14px; }
  .board-member-card,
  .members-page .member-card.board-member-card { min-height: 224px !important; grid-template-rows: 108px auto auto 42px !important; }
  .board-photo-wrap,
  .board-member-card .board-photo-wrap img,
  .board-member-card img,
  .members-page .member-card.board-member-card img { height: 108px !important; }
  .board-member-card strong,
  .members-page .member-card.board-member-card strong { font-size: 14px !important; }
  .board-member-card small,
  .members-page .member-card.board-member-card small { font-size: 11px !important; }
}

/* Özgeçmiş detay sayfası */
.profile-detail-page {
  padding: 0 0 28px;
}
.profile-detail-card {
  position: relative;
  margin: 0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  min-height: calc(100vh - 86px);
}
.profile-close {
  position: fixed;
  top: 0;
  right: max(0px, calc((100vw - 480px) / 2));
  width: 52px;
  height: 52px;
  z-index: 60;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}
.profile-hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 300px;
  border-bottom: 1px solid var(--line);
}
.profile-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  background: #f7f7f7;
}
.profile-main-info {
  padding: 72px 28px 34px;
}
.profile-main-info h1 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.profile-main-info h1::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 14px;
  background: var(--brand);
}
.profile-main-info h2 {
  margin: 24px 0 18px;
  color: #555c63;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  text-transform: uppercase;
}
.profile-contact-box {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.profile-contact-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 16px;
  font-weight: 950;
  text-transform: uppercase;
}
.profile-contact-box a {
  display: block;
  color: var(--brand);
  font-weight: 800;
  margin: 6px 0;
  overflow-wrap: anywhere;
}
.profile-bio-content {
  padding: 26px 28px 100px;
  color: #777;
  font-size: 16px;
  line-height: 1.75;
}
.profile-bio-content h1,
.profile-bio-content h2,
.profile-bio-content h3 { color: var(--brand); }
.profile-bio-content img { max-height: 220px; object-fit: cover; }
.profile-bio-content a { color: var(--brand); }

@media (max-width: 430px) {
  .profile-hero { grid-template-columns: 1fr; }
  .profile-photo { height: 330px; min-height: 330px; }
  .profile-main-info { padding: 26px 22px 24px; }
  .profile-main-info h1 { font-size: 25px; }
  .profile-bio-content { padding: 22px 22px 100px; }
}

/* 2026-05 özgeçmiş kart ve detay düzeltmesi
   - Fotoğraflar kırpılıp yüzün yarısını göstermesin diye contain yapılır.
   - Liste görünümü yalnızca fotoğraf + ad + Özgeçmiş butonu şeklinde kalır.
*/
.board-members-page .member-grid,
.board-member-grid,
.members-page .member-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
.board-member-card,
.members-page .member-card.board-member-card {
  min-height: 270px !important;
  grid-template-rows: 178px auto 52px !important;
  border-radius: 2px !important;
  background: #fff !important;
}
.board-photo-wrap,
.board-member-card .board-photo-wrap {
  height: 178px !important;
  background: #f6f6f6 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.board-member-card .board-photo-wrap img,
.board-member-card img,
.members-page .member-card.board-member-card img {
  width: 100% !important;
  height: 178px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #f6f6f6 !important;
}
.board-member-card strong,
.members-page .member-card.board-member-card strong {
  min-height: 40px !important;
  padding: 12px 6px 10px !important;
  font-size: 15px !important;
  line-height: 1.12 !important;
}
.board-member-card small,
.members-page .member-card.board-member-card small {
  display: none !important;
}
.board-card-footer {
  min-height: 52px !important;
  height: 52px !important;
  font-size: 14px !important;
}

@media (max-width: 360px) {
  .board-member-card,
  .members-page .member-card.board-member-card {
    min-height: 238px !important;
    grid-template-rows: 150px auto 46px !important;
  }
  .board-photo-wrap,
  .board-member-card .board-photo-wrap,
  .board-member-card .board-photo-wrap img,
  .board-member-card img,
  .members-page .member-card.board-member-card img {
    height: 150px !important;
  }
}

/* board-members.php uyumlu final: kişi fotoğrafları kırpılmasın */
.board-member-card,
.members-page .member-card.board-member-card {
  overflow: hidden !important;
}
.board-member-card .board-photo-wrap,
.members-page .member-card.board-member-card .board-photo-wrap {
  padding: 8px !important;
  box-sizing: border-box !important;
}
.board-member-card .board-photo-wrap img,
.board-member-card img,
.members-page .member-card.board-member-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.profile-detail-page .profile-photo {
  object-fit: contain !important;
  object-position: center top !important;
  background: #f7f7f7 !important;
}
.profile-bio-content img {
  object-fit: contain !important;
}


/* App Store / Play Store hazırlığı: native loading, offline state, erişilebilir dokunma alanları */
.native-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .28s ease, visibility .28s ease;
}
.native-loading.hide { opacity: 0; visibility: hidden; }
.native-loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--kirsiad, #8b001d);
  font-weight: 800;
  letter-spacing: .02em;
}
.native-loading-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 12px 36px rgba(139,0,29,.14);
}
.offline-banner {
  position: fixed;
  left: 50%;
  top: env(safe-area-inset-top, 0);
  transform: translateX(-50%);
  max-width: 480px;
  width: 100%;
  z-index: 9998;
  background: #8b001d;
  color: #fff;
  text-align: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.icon-button,
.bottom-nav a,
.drawer-menu-link,
.lang-choice,
.sheet-panel a,
.quick-card,
.btn-yellow,
.btn-red,
.whatsapp-float,
.member-card,
.board-member-card,
.profile-close,
.job-call-button,
.job-card a,
button,
.button,
.back-link {
  min-width: 44px;
  min-height: 44px;
}
.source-link { display: none !important; }
.app-shell { -webkit-tap-highlight-color: transparent; }
.privacy-card ul { padding-left: 20px; }
.privacy-card li { margin: 8px 0; }
.offline-page {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.offline-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.offline-card img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 14px; }
.offline-card h1 { margin: 0 0 10px; color: #8b001d; font-size: 24px; }
.offline-card p { color: #666; line-height: 1.55; }
.offline-card .retry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0 24px;
  border-radius: 14px;
  background: #8b001d;
  color: #fff;
  font-weight: 800;
  min-height: 48px;
}


/* App Store / Play Store native wrapper helpers */
.native-update-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}
.native-update-card {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 28px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}
.native-update-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 16px;
}
.native-update-card h1 {
  margin: 0 0 12px;
  color: #8b001d;
  font-size: 24px;
  line-height: 1.2;
}
.native-update-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.native-update-card a {
  display: inline-flex;
  min-height: 48px;
  min-width: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #8b001d;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.app-update-card { max-width: 420px; }


/* LIVE10 slider: kirsiad.org canlı slider görünümü */
.hero .btn-yellow,
.hero a.btn-yellow,
.hero .hero-bottom .btn-yellow {
  background: var(--brand) !important;
  color: #fff !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  box-shadow: 0 10px 22px rgba(139,0,29,.24) !important;
}
.hero .btn-yellow svg,
.hero a.btn-yellow svg {
  color:#fff !important;
  stroke:#fff !important;
}
.hero .slider-dots {
  display:flex !important;
  align-items:center !important;
  gap:5px !important;
  min-width:58px !important;
  justify-content:flex-end !important;
}
.hero .slider-dots button {
  display:block !important;
  width:18px !important;
  height:3px !important;
  border:0 !important;
  padding:0 !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.52) !important;
  opacity:1 !important;
  cursor:pointer !important;
}
.hero .slider-dots button.active {
  width:28px !important;
  height:3px !important;
  background:var(--brand) !important;
}


/* LIVE10 kesin slider düzeltmesi: bordo buton, beyaz yazı, ince kontrol */
.hero .hero-bottom .btn-yellow,
.hero .btn-yellow,
.hero a.btn-yellow {
  background: #8b001d !important;
  background-color: #8b001d !important;
  color: #ffffff !important;
  border: 0 !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  box-shadow: 0 10px 22px rgba(139,0,29,.24) !important;
}
.hero .hero-bottom .btn-yellow *,
.hero .btn-yellow *,
.hero a.btn-yellow * { color: #ffffff !important; stroke: #ffffff !important; }
.hero .slider-dots {
  display: flex !important;
  gap: 5px !important;
  min-width: auto !important;
  align-items: center !important;
}
.hero .slider-dots button {
  display: block !important;
  width: 18px !important;
  height: 3px !important;
  min-width: 18px !important;
  min-height: 3px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: rgba(255,255,255,.45) !important;
  opacity: 1 !important;
}
.hero .slider-dots button.active {
  width: 26px !important;
  height: 3px !important;
  min-width: 26px !important;
  background: #8b001d !important;
}

/* LIVE14: Slider görselleri inc/slider.php data-slide-bg alanından gelir. */
.hero-media-empty {
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.14), transparent 42%), linear-gradient(135deg, #8b001d 0%, #4d0010 100%) !important;
}
.hero-media-empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
}
.hero .btn-yellow,
.hero a.btn-yellow,
.hero .hero-bottom .btn-yellow {
  background: #8b001d !important;
  color: #ffffff !important;
  border-color: #8b001d !important;
}
.hero .btn-yellow *,
.hero a.btn-yellow * { color: #ffffff !important; stroke: #ffffff !important; }


/* LIVE14: inc/slider.php uyumlu gerçek slider */
.hero[data-slider-source="inc-slider-php"] .btn-yellow,
.hero[data-slider-source="inc-slider-php"] a.btn-yellow,
.hero[data-slider-source="inc-slider-php"] .hero-bottom .btn-yellow {
  background:#8b001d !important;
  background-color:#8b001d !important;
  color:#ffffff !important;
  border-color:#8b001d !important;
}
.hero[data-slider-source="inc-slider-php"] .btn-yellow *,
.hero[data-slider-source="inc-slider-php"] a.btn-yellow * { color:#ffffff !important; stroke:#ffffff !important; }
.hero[data-slider-source="inc-slider-php"] .slider-dots button {
  width:18px !important;
  height:3px !important;
  min-width:18px !important;
  min-height:3px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.45) !important;
}
.hero[data-slider-source="inc-slider-php"] .slider-dots button.active {
  width:26px !important;
  background:#8b001d !important;
}
