:root {
  --primary: #1d66ad;
  --primary-dark: #091a34;
  --button: #243fbd;
  --accent: #1d66ad;
  --text: #0d1c2f;
  --muted: #66768a;
  --surface: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ececec;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

.top-strip {
  background: var(--primary-dark);
  height: 42px;
}
.top-strip-inner {
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-mini {
  display: flex;
  gap: 12px;
}
.social-mini a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(173, 201, 234, 0.4);
  background: rgba(16, 38, 71, 0.85);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.social-mini a svg {
  width: 18px;
  height: 18px;
}
.social-mini a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(5, 20, 40, 0.35);
}
.social-facebook:hover {
  background: #1877f2;
}
.social-instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}
.social-twitter:hover {
  background: #0f1419;
}
.social-youtube:hover {
  background: #ff0000;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #dfe5ee;
  position: sticky;
  top: 0;
  z-index: 120;
  box-shadow: 0 2px 10px rgba(9, 30, 60, 0.08);
}
.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.brand {
  min-width: 230px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.brand-logo {
  width: 210px;
  height: auto;
  display: block;
}

.top-menu, .footer-menu, .dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-menu {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.top-menu a, .footer-menu a {
  text-decoration: none;
  color: #122033;
  font-size: 14px;
  font-weight: 600;
}
/* Yalnızca üst düzey menü linkleri — imleç üstünde hafif kalkış + alt çizgi */
.top-menu > li > a {
  display: inline-block;
  padding: 4px 2px 6px;
  position: relative;
  transition: transform 0.22s ease, color 0.2s ease;
}
.top-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--primary, #1d5eb8), var(--accent, #2568c4));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.26s ease;
  opacity: 0.95;
}
.top-menu > li:hover > a {
  transform: translateY(-3px);
  color: var(--primary, #1d5eb8);
}
.top-menu > li:hover > a::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .top-menu > li > a,
  .top-menu > li > a::after {
    transition: none;
  }
  .top-menu > li:hover > a {
    transform: none;
  }
}
.top-menu li { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #fff;
  border: 1px solid #d8e2ef;
  border-radius: 6px;
  padding: 6px;
}
.top-menu li:hover > .dropdown { display: block; }
.dropdown li { padding: 5px 0; }

nav { flex: 1; }
.mobile-menu-toggle { display: none; }
.mobile-menu-overlay { display: none; }
.admin-backbar {
  background: #f5f9ff;
  border-bottom: 1px solid #d8e6f6;
}
.admin-backbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-back-btn,
.admin-back-link {
  text-decoration: none;
  border: 1px solid #c9d9ee;
  background: #fff;
  color: #1a426b;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}
.admin-back-btn {
  cursor: pointer;
}

.menu-actions {
  display: flex;
  gap: 10px;
}
.btn {
  text-decoration: none;
  display: inline-block;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 20px rgba(20, 49, 99, 0.22);
  filter: brightness(1.02);
}
.btn:active {
  transform: translateY(-1px) scale(0.99);
}
.btn-nav {
  border: 1px solid #2b46ba;
  color: #2b46ba;
  background: #fff;
}
.btn-nav-fill {
  border: 1px solid #2b46ba;
  color: #fff;
  background: #2b46ba;
}

main.container {
  max-width: none;
  padding: 0;
}

.hero-simple {
  min-height: 476px;
  display: grid;
  place-items: center;
  background: linear-gradient(95deg, #1d62a8, #1f79bb);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.is-active,
.hero-slide:first-child {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(29,98,168,.72), rgba(31,121,187,.72));
  z-index: 1;
}
.inner-page-hero {
  background: linear-gradient(95deg, #1d62a8, #1f79bb);
  color: #fff;
  padding: 42px 0 34px;
}
.inner-page-hero .section-inner {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
}
.inner-page-hero h1 {
  margin: 0 0 8px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
.inner-page-hero p {
  margin: 0;
  color: #e1eeff;
  font-size: 15px;
  font-weight: 600;
}
.page-body {
  background: #ececec;
  padding: 24px 0 28px;
}
.page-body .section-inner {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 10px;
}
.page-body .card {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16, 40, 72, 0.08);
}

/* Hakkımızda — uzun metin okunabilirliği */
.about-page .about-prose {
  max-width: 52rem;
  margin: 0 auto;
  padding: 22px 24px 26px;
}
.about-page .about-prose p {
  margin: 0 0 1rem;
  color: #3d4d62;
  line-height: 1.65;
  font-size: 16px;
}
.about-page .about-prose p:last-child {
  margin-bottom: 0;
}
.about-page .about-lead {
  font-size: 17px;
  color: #243547;
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-left {
  display: grid;
  gap: 12px;
}
.contact-info-card,
.contact-map-card,
.contact-form-card {
  background: #fff;
  border: 1px solid #d8e3ef;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(14, 37, 71, 0.07);
}
.contact-info-card {
  text-align: center;
  padding: 22px 14px;
}
.contact-icon {
  color: #1f49b1;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}
.contact-info-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #102749;
}
.contact-info-card p {
  margin: 0 0 6px;
  color: #5a6e86;
  font-size: 20px;
}
.contact-info-card small {
  color: #74879b;
  font-size: 14px;
}
.contact-map-card {
  overflow: hidden;
}
.contact-form-card {
  padding: 18px;
}
.contact-form-card h2 {
  margin: 0 0 12px;
  color: #102749;
  font-size: 32px;
}

/* Kariyer — Nest tarzı iki sütun + vurgulu form */
.career-hero {
  padding-bottom: 38px;
}
.career-body {
  padding-top: 8px;
  padding-bottom: 40px;
}
.career-inner {
  max-width: 1180px;
}
.career-split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(10, 35, 68, 0.14);
  border: 1px solid #d4e0ee;
  background: #fff;
}
.career-aside {
  position: relative;
  background: linear-gradient(165deg, #0f2848 0%, #153d72 38%, #1a6aad 100%);
  color: #fff;
  padding: 0;
}
.career-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(255, 255, 255, 0.14), transparent 52%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(255, 255, 255, 0.09), transparent 48%);
  pointer-events: none;
}
.career-aside-inner {
  position: relative;
  z-index: 1;
  padding: 36px 30px 38px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.career-aside h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.career-aside-lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.career-aside-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}
.career-aside-list li {
  margin-bottom: 10px;
}
.career-aside-list li::marker {
  color: rgba(255, 255, 255, 0.55);
}
.career-form-wrap {
  background: #fafbfd;
  padding: 28px 26px 32px;
}
.career-form-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e3eaf4;
  padding: 26px 22px 28px;
  box-shadow: 0 10px 28px rgba(15, 42, 78, 0.07);
}
.career-form-heading {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8eef6;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0c223d;
  letter-spacing: -0.02em;
}
.career-form .career-label {
  font-size: 13px;
  font-weight: 700;
  color: #3a4d63;
  margin-bottom: 2px;
}
.career-req {
  color: #c03434;
  font-weight: 800;
}
.career-form input,
.career-form textarea {
  border-radius: 10px;
  border: 1px solid #cfd9e8;
  background: #fcfdff;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.career-form input:focus,
.career-form textarea:focus {
  outline: none;
  border-color: #5a8fd4;
  box-shadow: 0 0 0 3px rgba(29, 102, 173, 0.18);
}
.career-form textarea {
  min-height: 140px;
  resize: vertical;
}
.career-file-input {
  padding: 10px 12px;
  border: 1px dashed #b0c4df;
  border-radius: 10px;
  background: #f8fafd;
  cursor: pointer;
  font-size: 14px;
}
.career-file-input::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #c5d6eb;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  color: var(--primary);
}
.career-cv-hint {
  margin: -4px 0 0;
  font-size: 12px;
  color: #627892;
  line-height: 1.45;
}
.career-submit {
  margin-top: 4px;
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #1d5eb8 0%, #2568c4 50%, #1e7a96 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(28, 72, 140, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.career-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 28px rgba(28, 72, 140, 0.42);
}
.career-form-msg {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
}
.career-form-msg.success {
  color: #0b6d2e;
}
.career-form-msg.error {
  color: #a32525;
}

/* Galeri (gallery.php) */
.gallery-page {
  padding-top: 8px;
  padding-bottom: 40px;
}
.gallery-empty {
  text-align: center;
  color: #5a6d84;
  font-size: 1.05rem;
  padding: 28px 12px;
}
.gallery-group {
  margin-bottom: 40px;
}
.gallery-group-title {
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #0a1f38;
  letter-spacing: -0.02em;
  padding-bottom: 10px;
  border-bottom: 2px solid #dbe7f3;
}
.gallery-group-empty {
  margin: 0;
  font-size: 15px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  align-items: start;
}
.gallery-tile {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #dfe8f3;
  box-shadow: 0 8px 22px rgba(12, 38, 72, 0.07);
  overflow: hidden;
}
.gallery-tile-media {
  line-height: 0;
  background: #f2f7fc;
  overflow: hidden;
  max-width: 100%;
}
.gallery-tile-media .blog-media-trigger {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.gallery-tile-media .blog-media,
.gallery-tile-media .blog-media-thumb {
  width: 100%;
  max-width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  border: 0;
  margin: 0;
  border-radius: 0;
  box-sizing: border-box;
}
.gallery-tile-media--video {
  padding: 0;
  background: #0d1c2f;
}
.gallery-video {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  vertical-align: middle;
}
.gallery-caption {
  margin: 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #3d5269;
}
.contact-form-card label {
  font-size: 17px;
  color: #435971;
  font-weight: 600;
}
.contact-form-card input,
.contact-form-card textarea {
  border-radius: 10px;
  border-color: #d3ddea;
  background: #fafbfd;
}
.contact-form-card textarea {
  min-height: 120px;
}
.hero-center {
  max-width: 1060px;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 24px 10px;
  position: relative;
  z-index: 2;
}
.hero-chip {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
    box-shadow 0.4s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}
.hero-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -40%;
  width: 50%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transform: skewX(-18deg) translateX(-120%);
  opacity: 0;
  pointer-events: none;
}
.hero-chip:hover,
.hero-chip:focus-visible {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 28px rgba(8, 24, 52, 0.45);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}
.hero-chip:focus-visible {
  box-shadow: 0 12px 28px rgba(8, 24, 52, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.45);
}
.hero-chip:hover::before,
.hero-chip:focus-visible::before {
  opacity: 1;
  animation: hero-chip-gleam 0.9s ease-out forwards;
}
@keyframes hero-chip-gleam {
  0% {
    transform: skewX(-18deg) translateX(-30%);
  }
  100% {
    transform: skewX(-18deg) translateX(280%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-chip,
  .hero-chip::before {
    transition: none;
    animation: none !important;
  }
  .hero-chip:hover,
  .hero-chip:focus-visible {
    transform: none;
    box-shadow: none;
  }
  .hero-chip:hover::before,
  .hero-chip:focus-visible::before {
    opacity: 0;
  }
}
.hero-center h1 {
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero-center p {
  margin: 0;
  color: #e4f0ff;
  font-size: 15px;
  font-weight: 600;
}
.cta-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.btn-hero-main {
  background: var(--button);
  color: #fff;
  min-width: 130px;
  box-shadow: 0 8px 20px rgba(19, 46, 128, 0.35);
}
.btn-hero-alt {
  background: rgba(255, 255, 255, 0.22);
  color: #2b46ba;
  border: 1px solid #2b46ba;
  min-width: 120px;
}

.countdown-section {
  background: #fff;
  padding: 18px 0;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.countdown-card {
  border: 1px solid #d8e4f1;
  border-radius: 8px;
  padding: 14px;
  background: #f9fcff;
}
.countdown-card h3 {
  margin: 0 0 4px;
  color: #0d2e51;
  font-size: 20px;
}
.countdown-card p {
  margin: 0 0 10px;
  color: #6a7b8f;
  font-size: 12px;
}
.countdown-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(60px, 1fr));
  gap: 8px;
}
.countdown-row div {
  background: #fff;
  border: 1px solid #dbe7f3;
  border-radius: 6px;
  text-align: center;
  padding: 7px 4px;
}
.countdown-row strong {
  display: block;
  color: #153d9f;
  font-size: 26px;
  line-height: 1.1;
}
.countdown-row span {
  color: #708197;
  font-size: 11px;
}

.quick-badges {
  background: #fff;
  padding: 10px 0 22px;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
}
.badges-grid div {
  border: 1px solid #d9e6f3;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  background: #f5faff;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.badges-grid div:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 14px 24px rgba(24, 61, 116, 0.18);
  background: #eef6ff;
}
.badges-grid strong {
  display: block;
  color: #0f4aa8;
  font-size: 21px;
}
.badges-grid span {
  color: #5f7083;
  font-size: 12px;
}

.home-enroll-cta {
  background: #ececec;
  padding: 0 0 20px;
}
.enroll-cta-box {
  border-radius: 12px;
  background: linear-gradient(95deg, #1f4fbf, #139bc2);
  text-align: center;
  color: #fff;
  padding: 38px 16px 34px;
  box-shadow: 0 12px 26px rgba(20, 56, 126, 0.2);
  position: relative;
  overflow: hidden;
}
.enroll-cta-box::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 35%, rgba(255,255,255,.2), rgba(255,255,255,0) 40%),
              radial-gradient(circle at 70% 65%, rgba(255,255,255,.18), rgba(255,255,255,0) 42%);
  animation: ctaGlowShift 9s ease-in-out infinite alternate;
  pointer-events: none;
}
.enroll-cta-box > * {
  position: relative;
  z-index: 1;
}
.enroll-cta-box h3 {
  margin: 0 0 8px;
  font-size: 42px;
  font-weight: 800;
}
.enroll-cta-box p {
  margin: 0;
  font-size: 18px;
  color: #e7f4ff;
}
.enroll-cta-btn {
  margin-top: 18px;
  background: #2e3fbf;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  min-width: 130px;
}

@keyframes ctaGlowShift {
  0% { transform: translate3d(-2%, 0, 0) scale(1); opacity: .78; }
  50% { transform: translate3d(2%, -1%, 0) scale(1.04); opacity: .92; }
  100% { transform: translate3d(1%, 2%, 0) scale(1.02); opacity: .82; }
}

.section-gray {
  background: #ececec;
  padding: 44px 0 30px;
}

/* Hızlı linkler — ayrı bölüm; gri «Başarılar» zeminiyle birleşmez */
.section-home-quicklinks {
  background: #f5f8fc;
  padding: 40px 0 32px;
}
.section-home-quicklinks + .section-gray {
  padding-top: 40px;
}

/* Ana sayfa — Başarılar üstü hızlı link butonları (ayrı zemin şeridi) */
.home-quicklinks-wrap {
  margin: 0;
  padding: 20px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, #d8e7f8 0%, #e8f1fc 45%, #dde9f6 100%);
  border: 1px solid #b3c9e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 6px 20px rgba(20, 55, 100, 0.08);
}
.home-quicklinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
}
.home-quicklink-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #0f3d7a;
  background: #fff;
  border: 1px solid #b8cdea;
  box-shadow: 0 4px 12px rgba(20, 55, 110, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.home-quicklink-btn:hover {
  color: #fff;
  background: var(--button, #1d5eb8);
  border-color: var(--button, #1d5eb8);
  box-shadow: 0 8px 20px rgba(25, 72, 150, 0.3);
  transform: translateY(-2px);
}
.home-quicklink-btn:focus-visible {
  outline: 2px solid #1d5eb8;
  outline-offset: 2px;
}
.section-white {
  background: #fff;
  padding: 44px 0 30px;
}
.section-inner {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 6px;
}
.section-title {
  text-align: center;
  margin: 0 0 24px;
  color: #08192f;
  font-size: 42px;
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}
.stat-clean {
  background: #dce8f3;
  border: 1px solid #d2ddea;
  border-radius: 6px;
  min-height: 120px;
  text-align: center;
  padding: 14px 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-clean:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 28px rgba(28, 60, 115, 0.2);
}
.stat-icon {
  height: 26px;
  margin-bottom: 6px;
  color: #264db3;
}
.stat:nth-child(1) .stat-icon::before { content: "\1F3C6"; }
.stat:nth-child(2) .stat-icon::before { content: "\1F393"; }
.stat:nth-child(3) .stat-icon::before { content: "\1F396"; }
.stat:nth-child(4) .stat-icon::before { content: "\2714"; }
.stat-icon::before { font-size: 20px; }
.stat-value {
  color: #204ab4;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}
.stat-label {
  color: #627186;
  font-size: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}
.feature-card {
  background: #fff;
  border: 1px solid #d9e2ec;
  border-radius: 6px;
  min-height: 150px;
  text-align: center;
  padding: 16px 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 42, 79, 0.1);
}
.feature-card span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0e74b9;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.feature-card h3 {
  margin: 12px 0 7px;
  font-size: 35px;
  line-height: 1.2;
  color: #071c36;
}
.feature-card p {
  margin: 0;
  color: #6f7b8b;
  font-size: 17px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 12px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  padding: 16px;
}
.testimonial-card p {
  margin: 0 0 10px;
  color: #4d6179;
  font-size: 14px;
}
.testimonial-card strong {
  color: #18365e;
  font-size: 12px;
}

.testimonial-stats {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.testimonial-stat {
  background: #dce8f3;
  text-align: left;
  padding: 16px 14px;
  min-height: 170px;
}
.testimonial-stat .stat-icon {
  height: 22px;
  margin-bottom: 8px;
}
.testimonial-stat .stat-icon::before {
  content: "\201C";
  font-size: 24px;
  color: #264db3;
}
.testimonial-stat p {
  margin: 0 0 12px;
  color: #4d6179;
  font-size: 14px;
  line-height: 1.5;
}
.testimonial-stat strong {
  display: block;
  color: #18365e;
  font-size: 13px;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 18px 0;
  min-width: 0;
}
.card {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid #dce8f4;
  padding: 16px;
}
.card h3 a {
  color: inherit;
  text-decoration: none;
}
.card h3 a:hover {
  text-decoration: underline;
}
.card-more {
  margin-top: 10px;
  font-size: 14px;
}
.card-more a {
  font-weight: 600;
  color: var(--accent);
}

/* Liste kartları — kurs / öğretmen / blog */
.card-grid--listing {
  gap: 22px;
}
.card-listing {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #d0dff0;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(12, 38, 72, 0.09);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card-listing:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 38, 72, 0.14);
  border-color: #b8cdea;
}
.card-listing-media {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #e8eef6;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  /* Tek tip kart görünümü; görsel kutuya sığar, orantı bozulmaz */
  aspect-ratio: 16 / 10;
  min-height: 168px;
}
.card-listing-media .blog-media-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.card-listing-media .blog-media,
.card-listing-media .blog-media-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 0;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 0;
  border: 0;
  margin: 0;
  display: block;
  box-sizing: border-box;
}
.card-listing-media video.blog-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  background: #0d1c2f;
}
.card-listing-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.card-listing-meta {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a6fa8;
}
.card-listing h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0a1f38;
}
.card-listing h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
.card-listing h3 a:hover {
  color: var(--primary);
}
.card-listing-excerpt {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #516175;
  flex: 1;
}
.card-listing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #1d5eb8 0%, #2568c4 45%, #1a7eb8 100%);
  box-shadow: 0 6px 16px rgba(25, 72, 150, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.card-listing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(25, 72, 150, 0.42);
  filter: brightness(1.05);
  color: #fff;
}
.card-listing-cta-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.card-listing-cta:hover .card-listing-cta-icon {
  transform: translateX(3px);
}

/* İçerik detay (content.php) */
.content-article {
  margin: 0;
}
.content-article-masthead {
  position: relative;
  padding: 28px 0 72px;
  overflow: hidden;
}
.content-article-masthead-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #153d72 0%, #1d66ad 42%, #1f8ab8 100%);
}
.content-article-masthead-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 255, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 50% at 85% 60%, rgba(255, 255, 255, 0.1), transparent 45%);
  pointer-events: none;
}
.content-article-masthead-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: left;
}
.content-article-crumb {
  margin: 0 0 14px;
}
.content-article-crumb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 6px 12px 6px 8px;
  margin: 0 0 0 -8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.18s ease, transform 0.18s ease;
}
.content-article-crumb-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-2px);
  color: #fff;
}
.content-article-crumb-arrow {
  opacity: 0.9;
  font-weight: 800;
}
.content-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
}
.content-article-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d2a52;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.content-article-date {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.content-article-title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}
.content-article-body {
  margin-top: -48px;
  padding-top: 0;
  padding-bottom: 36px;
  position: relative;
  z-index: 2;
}
.content-article-sheet {
  max-width: 800px;
  margin: 0 auto;
  padding: 28px 32px 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #dde8f4;
  box-shadow: 0 24px 48px rgba(15, 45, 88, 0.12);
}
.content-article-lead {
  margin: 0 0 22px;
  padding: 16px 18px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #1a3355;
  background: linear-gradient(90deg, #f0f6ff 0%, #f8fbff 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
}
.content-article-media {
  margin: 0 0 24px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid #e2ebf5;
  box-shadow: 0 8px 24px rgba(12, 40, 75, 0.1);
  background: #f4f8fc;
}
.content-article-media .blog-media-trigger {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  line-height: 0;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}
.content-article-media .blog-media-thumb,
.content-article-media .blog-media {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 520px);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  border: 0;
  margin: 0;
  display: block;
  box-sizing: border-box;
}
.content-article-media video.blog-media {
  width: 100%;
  max-width: 100%;
  max-height: min(72vh, 520px);
  min-height: 200px;
  object-fit: contain;
  background: #0d1c2f;
}
.content-article-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #243547;
}
.content-article-prose p {
  margin: 0 0 1.1em;
}
.content-article-prose p:last-child {
  margin-bottom: 0;
}
.content-article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e8eef5;
}
.content-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  border: 1px solid #c5d6eb;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(20, 55, 110, 0.08);
}
.content-article-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(20, 55, 110, 0.14);
  border-color: #9eb8dc;
  color: #0f4a8c;
}
.content-article-back--ghost {
  border-style: dashed;
  border-color: #c9d4e2;
  background: #f8fafc;
  color: #4a5f78;
  box-shadow: none;
}
.content-article-back--ghost:hover {
  background: #eef3f9;
  border-color: #aebccf;
  color: #2c3e56;
}

.content-detail .lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #334;
}
.content-detail .content-body {
  margin-top: 1rem;
  line-height: 1.65;
}
.blog-media {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d7e4f1;
  margin-bottom: 12px;
  background: #f2f7fc;
}
.blog-media-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.blog-media-thumb {
  height: 180px;
  object-fit: contain;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-media-trigger:hover .blog-media-thumb {
  transform: scale(1.02);
  box-shadow: 0 12px 20px rgba(20, 46, 90, 0.18);
}
/* Liste kartlarında hover büyütmesi kırpma hissini artırır — kapat */
.card-listing-media .blog-media-trigger:hover .blog-media-thumb {
  transform: none;
  box-shadow: none;
}
/* .blog-media-thumb (contain) genel kuralından sonra: liste görselleri yalnız cover */
article.card-listing .card-listing-media img.blog-media.blog-media-thumb {
  object-fit: cover;
  object-position: center 28%;
}
.blog-image-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 30, 0.84);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 240;
  padding: 22px;
}
.blog-image-modal.is-open {
  display: flex;
}
.blog-image-modal-inner {
  position: relative;
  max-width: min(95vw, 1080px);
  max-height: 92vh;
}
.blog-image-modal-preview {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.35);
}
.blog-image-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(8, 16, 30, 0.8);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}
.admin-media-thumb {
  width: 64px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #d3e0ee;
  background: #fff;
}
.admin-media-trigger {
  display: inline-block;
  cursor: zoom-in;
  vertical-align: middle;
  line-height: 0;
}
.admin-media-badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid #cbd9ea;
  background: #edf4ff;
  color: #1c4272;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
}

.form-grid { display: grid; gap: 10px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfddeb;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
}
textarea { min-height: 120px; }
button {
  border: 0;
  border-radius: 6px;
  padding: 11px 15px;
  background: #1d4cc0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 18px rgba(19, 47, 104, 0.2);
  filter: brightness(1.02);
}
button:active {
  transform: translateY(-1px) scale(0.99);
}
input[type="submit"] {
  border: 0;
  border-radius: 6px;
  padding: 11px 15px;
  background: #1d4cc0;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 18px rgba(19, 47, 104, 0.2);
  filter: brightness(1.02);
}
input[type="submit"]:active {
  transform: translateY(-1px) scale(0.99);
}

.site-footer {
  margin-top: 20px;
  background: #0b2945;
  border-top: 1px solid #133a5d;
  color: #d1e6fa;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 20px;
}
.site-footer h4 { color: #fff; margin-top: 0; }
.site-footer .footer-menu a { color: #d1e6fa; }
.muted { color: #96b8d6; }
.site-footer ul li { margin-bottom: 8px; }

main.container {
  min-height: calc(100vh - 200px);
}

.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, #25d366, #14b354);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(8, 87, 40, 0.34);
  z-index: 20;
}

.admin-wrap {
  background: #fff;
  border: 1px solid #d8e5f2;
  border-radius: 14px;
  padding: 18px;
  margin-top: 18px;
  box-shadow: 0 8px 20px rgba(15, 50, 84, 0.07);
}

table { width: 100%; border-collapse: collapse; }
th, td { border-bottom: 1px solid #e5edf6; text-align: left; padding: 8px; }
.success { color: #0b6d2e; }
.error { color: #a32525; }

.admin-hero h1 { margin-bottom: 6px; }
.admin-hero p { margin: 0; color: #5a6d84; }
.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.admin-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #d8e4f1;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(13, 43, 78, 0.08);
}
.admin-card h3 { margin: 0 0 8px; color: #153a61; }
.admin-card p { margin: 0; color: #607287; font-size: 13px; }
.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.admin-wrap label {
  display: block;
  font-size: 12px;
  color: #4e647d;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .top-strip { height: 48px; }
  .top-strip-inner { height: 48px; }

  .header-inner {
    gap: 10px;
    min-height: 72px;
    padding: 8px 0;
  }
  .brand { min-width: auto; }
  .brand-logo { width: 165px; }

  nav {
    order: 4;
    flex-basis: 100%;
    display: none;
    width: 100%;
    position: relative;
    z-index: 30;
  }
  nav.is-open { display: block; }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 19, 37, 0.45);
    z-index: 25;
  }
  .mobile-menu-overlay.is-open { display: block; }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 38px;
    height: 38px;
    border: 1px solid #d1dceb;
    background: #fff;
    color: #17345d;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 35;
  }
  .top-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid #dde5f0;
    border-radius: 10px;
    background: #fff;
    margin-top: 8px;
    overflow: hidden;
  }
  .top-menu li { flex: 1; border-bottom: 1px solid #edf2f8; }
  .top-menu li:last-child { border-bottom: 0; }
  .top-menu a {
    display: block;
    font-size: 13px;
    padding: 10px 12px;
  }

  .menu-actions { margin-left: 0; gap: 6px; order: 3; }
  .btn-nav, .btn-nav-fill {
    padding: 8px 11px;
    font-size: 11px;
  }

  .hero-simple {
    min-height: 300px;
    border-top: 1px solid rgba(255,255,255,.2);
  }
  .inner-page-hero { padding: 30px 0 26px; }
  .inner-page-hero h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.18;
  }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-card h2 { font-size: 26px; }

  .career-split {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .career-aside-inner {
    padding: 26px 18px 28px;
  }
  .career-form-wrap {
    padding: 18px 14px 22px;
  }
  .career-form-card {
    padding: 18px 14px 20px;
  }
  .contact-info-card p { font-size: 18px; }
  .hero-center { padding: 20px 8px; }
  .hero-center h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.18;
    margin-bottom: 12px;
  }
  .hero-center p {
    font-size: 14px;
    line-height: 1.45;
    max-width: 95%;
    margin: 0 auto;
  }
  .cta-group {
    margin-top: 18px;
    width: 100%;
    gap: 8px;
  }
  .btn-hero-main, .btn-hero-alt {
    min-width: 0;
    flex: 1;
    text-align: center;
  }

  .section-gray { padding: 34px 0 20px; }
  .section-home-quicklinks {
    padding: 28px 0 22px;
  }
  .section-home-quicklinks + .section-gray {
    padding-top: 26px;
  }
  .home-quicklinks-wrap {
    padding: 16px 12px;
    margin-bottom: 0;
    border-radius: 12px;
  }
  .section-title {
    font-size: clamp(28px, 7vw, 34px);
    margin-bottom: 16px;
  }
  .enroll-cta-box {
    border-radius: 10px;
    padding: 26px 12px 24px;
  }
  .enroll-cta-box h3 {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.2;
  }
  .enroll-cta-box p {
    font-size: 15px;
  }
  .countdown-grid { grid-template-columns: 1fr; }
  .countdown-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .countdown-row strong { font-size: 24px; }
  .badges-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .stat-clean {
    min-height: 108px;
    padding: 12px 6px;
  }
  .stat-value { font-size: 30px; }
  .stat-label { font-size: 11px; line-height: 1.35; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card {
    min-height: auto;
    padding: 14px 12px;
  }
  .feature-card h3 { font-size: 26px; }
  .feature-card p { font-size: 14px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-stats { grid-template-columns: 1fr; }

  .whatsapp-btn {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .admin-grid-2 { grid-template-columns: 1fr; }
  .admin-backbar-inner { min-height: 40px; }
  .admin-back-btn, .admin-back-link { padding: 6px 10px; font-size: 12px; }

  .content-article-masthead {
    padding: 22px 0 56px;
  }
  .content-article-body {
    margin-top: -36px;
  }
  .content-article-sheet {
    padding: 20px 16px 22px;
    border-radius: 12px;
  }
  .content-article-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .content-article-back,
  .content-article-back--ghost {
    justify-content: center;
  }
  .card-listing-media {
    aspect-ratio: 4 / 3;
    min-height: 156px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
