/* Başarılı Okulları — premium conversion school theme */

:root {
  --bo-primary: #A82018;
  --bo-primary-dark: #8a1a14;
  --bo-charcoal: #201818;
  --bo-ink: #2a2222;
  --bo-muted: #6b5f5f;
  --bo-line: #e6e0e0;
  --bo-surface: #f6f4f4;
  --bo-white: #ffffff;
  --bo-font-display: "Outfit", system-ui, sans-serif;
  --bo-font-body: "Source Sans 3", system-ui, sans-serif;
  --bo-radius: 10px;
  --bo-shadow: 0 18px 50px rgba(32, 24, 24, 0.12);
  --bo-header-h: 76px;
  --bo-max: 1180px;
  --bo-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bo-img-hero: none;
  --bo-img-kampus: none;
  --bo-img-cta: none;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.bo-body {
  margin: 0;
  font-family: var(--bo-font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bo-ink);
  background: var(--bo-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bo-primary); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--bo-primary-dark); }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.bo-container {
  width: min(100% - 2.5rem, var(--bo-max));
  margin-inline: auto;
}

/* Buttons */
.bo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--bo-ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.bo-btn:hover { transform: translateY(-1px); text-decoration: none; }
.bo-btn--primary {
  background: var(--bo-primary);
  color: var(--bo-white);
  box-shadow: 0 10px 24px rgba(168, 32, 24, 0.28);
}
.bo-btn--primary:hover { background: var(--bo-primary-dark); color: var(--bo-white); }
.bo-btn--ghost {
  background: transparent;
  border-color: rgba(32,24,24,.18);
  color: var(--bo-charcoal);
}
.bo-btn--ghost:hover { border-color: var(--bo-primary); color: var(--bo-primary); }
.bo-btn--light {
  background: var(--bo-white);
  color: var(--bo-charcoal);
}
.bo-btn--light:hover { color: var(--bo-primary); }
.bo-btn--lg { min-height: 54px; padding-inline: 1.7rem; font-size: 1.02rem; }
.bo-btn--block { width: 100%; }
.bo-link {
  font-family: var(--bo-font-display);
  font-weight: 600;
  color: var(--bo-primary);
  text-decoration: none;
}
.bo-link:hover { text-decoration: underline; }

/* Header */
.bo-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.bo-header.is-scrolled {
  border-color: var(--bo-line);
  box-shadow: 0 8px 30px rgba(32,24,24,.06);
}
.bo-header__bar {
  width: min(100% - 2rem, var(--bo-max));
  margin-inline: auto;
  min-height: var(--bo-header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.bo-header__brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}
.bo-header__brand-text {
  font-family: var(--bo-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bo-charcoal);
  text-decoration: none;
}
.bo-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.bo-header__cta { white-space: nowrap; }
.bo-header__toggle {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--bo-line);
  background: var(--bo-white);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 160;
  color: var(--bo-charcoal);
}
.bo-header__toggle-icon { display: grid; place-items: center; }
.bo-header__toggle-icon .bo-icon { width: 22px; height: 22px; }
.bo-header__toggle-icon--close { display: none; }
html.bo-nav-open .bo-header__toggle-icon--open { display: none; }
html.bo-nav-open .bo-header__toggle-icon--close { display: grid; }
.bo-header__phone {
  display: none;
  align-items: center;
  gap: .4rem;
  color: var(--bo-charcoal);
  text-decoration: none;
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: .92rem;
}
.bo-header__phone .bo-icon { width: 18px; height: 18px; color: var(--bo-primary); }
.bo-header__cta { display: inline-flex; gap: .45rem; }
.bo-header__cta .bo-icon { width: 18px; height: 18px; }

/* Mega menu */
.bo-mega { display: flex; flex: 1; justify-content: center; }
.bo-mega__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: .15rem;
}
.bo-mega__item { position: relative; }
.bo-mega__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .7rem .85rem;
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--bo-charcoal);
  text-decoration: none;
  border-radius: 8px;
}
.bo-mega__link:hover,
.bo-mega__item:hover > .bo-mega__link {
  color: var(--bo-primary);
  background: rgba(168,32,24,.05);
}
.bo-mega__caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .55;
}
.bo-mega__panel {
  position: absolute;
  left: 0; top: calc(100% - 4px);
  min-width: 260px;
  padding: .85rem;
  background: var(--bo-white);
  border: 1px solid var(--bo-line);
  border-radius: 14px;
  box-shadow: var(--bo-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s var(--bo-ease), transform .22s var(--bo-ease), visibility .22s;
  z-index: 50;
}
.bo-mega__item--has-panel:hover .bo-mega__panel,
.bo-mega__item--has-panel:focus-within .bo-mega__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bo-mega__sub {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: .15rem;
}
.bo-mega__sub-link {
  display: block;
  padding: .65rem .8rem;
  border-radius: 8px;
  color: var(--bo-ink);
  text-decoration: none;
  font-weight: 500;
}
.bo-mega__sub-link:hover {
  background: var(--bo-surface);
  color: var(--bo-primary);
}

/* Icons */
.bo-icon {
  width: 22px; height: 22px;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}
.bo-btn .bo-icon { width: 18px; height: 18px; }
.bo-btn--ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.bo-btn--ghost-light:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: #fff;
}

/* Mobile drawer — ultra professional */
.bo-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
}
.bo-drawer[hidden] { display: block !important; visibility: hidden; pointer-events: none; }
.bo-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.bo-drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(20,12,12,.55);
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}
.bo-drawer.is-open .bo-drawer__scrim { opacity: 1; }
.bo-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(100%, 420px);
  background: linear-gradient(180deg, #fff 0%, #f7f5f5 100%);
  box-shadow: -24px 0 60px rgba(0,0,0,.22);
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform .38s var(--bo-ease);
}
.bo-drawer.is-open .bo-drawer__panel { transform: translateX(0); }
.bo-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--bo-line);
  background: #fff;
}
.bo-drawer__brand img { height: 40px; width: auto; }
.bo-drawer__close {
  width: 44px; height: 44px;
  border: 1px solid var(--bo-line);
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--bo-charcoal);
}
.bo-drawer__scroll {
  overflow: auto;
  padding: 1rem 1.15rem 2rem;
  display: grid;
  gap: 1.25rem;
  flex: 1;
}
.bo-mnav { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.bo-mnav__link,
.bo-mnav__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1rem;
  border: 1px solid var(--bo-line);
  border-radius: 14px;
  background: #fff;
  color: var(--bo-charcoal);
  text-decoration: none;
  font-family: var(--bo-font-display);
  font-weight: 650;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.bo-mnav__link:hover,
.bo-mnav__toggle:hover { border-color: rgba(168,32,24,.35); color: var(--bo-primary); }
.bo-mnav__ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(168,32,24,.08);
  color: var(--bo-primary);
  display: grid;
  place-items: center;
}
.bo-mnav__ico .bo-icon { width: 18px; height: 18px; }
.bo-mnav__ico--sm {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--bo-surface);
  color: var(--bo-muted);
}
.bo-mnav__ico--sm .bo-icon { width: 15px; height: 15px; }
.bo-mnav__chev { margin-left: auto; transition: transform .25s; color: var(--bo-muted); }
.bo-mnav__chev .bo-icon { width: 18px; height: 18px; }
.bo-mnav__toggle[aria-expanded="true"] .bo-mnav__chev { transform: rotate(180deg); color: var(--bo-primary); }
.bo-mnav__sub {
  list-style: none;
  margin: .35rem 0 .55rem;
  padding: .35rem;
  display: grid;
  gap: .2rem;
  background: #fff;
  border: 1px solid var(--bo-line);
  border-radius: 14px;
}
.bo-mnav__sub[hidden] { display: none !important; }
.bo-mnav__sub a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .75rem;
  border-radius: 10px;
  color: var(--bo-ink);
  text-decoration: none;
  font-weight: 550;
}
.bo-mnav__sub a:hover { background: var(--bo-surface); color: var(--bo-primary); }
.bo-drawer__cta { display: grid; gap: .65rem; }
.bo-drawer__contact {
  display: grid;
  gap: .65rem;
  padding: 1rem;
  border-radius: 16px;
  background: var(--bo-charcoal);
  color: rgba(255,255,255,.9);
}
.bo-drawer__contact a,
.bo-drawer__contact p {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: 0;
  color: inherit;
  text-decoration: none;
  font-size: .95rem;
}
.bo-drawer__contact .bo-icon { width: 18px; height: 18px; color: #ffb4ae; margin-top: .15rem; }

html.bo-nav-open,
body.bo-nav-open,
html.bo-modal-open { overflow: hidden; }

@media (max-width: 980px) {
  .bo-mega { display: none; }
  .bo-header__cta { display: none; }
  .bo-header__toggle { display: inline-flex; }
}
@media (min-width: 981px) and (max-width: 1180px) {
  .bo-header__phone { display: none; }
}
@media (min-width: 1181px) {
  .bo-header__phone { display: inline-flex; }
}

.bo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.bo-eyebrow {
  margin: 0 0 .55rem;
  font-family: var(--bo-font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bo-primary);
}
.bo-eyebrow--light { color: #ffb4ae; }
.bo-section__head--center { flex-direction: column; align-items: center; text-align: center; gap: .25rem; }
.bo-section__head--center .bo-section__lead { margin-inline: auto; }

/* Kademeler cards */
.bo-kademeler {
  background: var(--bo-surface);
  color: var(--bo-charcoal);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.bo-kademeler__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.bo-kademeler__card {
  display: grid;
  grid-template-rows: 160px auto;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--bo-line);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(32,24,24,.05);
  transition: transform .25s var(--bo-ease), box-shadow .25s;
  height: 100%;
}
.bo-kademeler__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(32,24,24,.12);
  color: inherit;
}
.bo-kademeler__media {
  display: block;
  background: center/cover no-repeat #d9d2d2;
  min-height: 160px;
}
.bo-kademeler__body {
  display: grid;
  gap: .35rem;
  padding: 1rem 1.05rem 1.15rem;
}
.bo-kademeler__icon {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(168,32,24,.08);
  color: var(--bo-primary);
  display: grid;
  place-items: center;
}
.bo-kademeler__icon .bo-icon { width: 18px; height: 18px; }
.bo-kademeler__title {
  font-family: var(--bo-font-display);
  font-weight: 750;
  font-size: 1.1rem;
}
.bo-kademeler__desc { color: var(--bo-muted); font-size: .92rem; }
.bo-kademeler__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .35rem;
  color: var(--bo-primary);
  font-family: var(--bo-font-display);
  font-weight: 650;
  font-size: .9rem;
}
.bo-kademeler__more .bo-icon { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .bo-kademeler__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bo-kademeler__list { grid-template-columns: 1fr; }
}

/* Neden */
.bo-neden__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.bo-neden__media {
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  background: var(--bo-surface);
}
.bo-neden__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.bo-neden__points {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.bo-neden__points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  padding: .95rem 1rem;
  border: 1px solid var(--bo-line);
  border-radius: 14px;
  background: #fff;
}
.bo-neden__ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(168,32,24,.08);
  color: var(--bo-primary);
  display: grid;
  place-items: center;
}
.bo-neden__points strong { display: block; font-family: var(--bo-font-display); }
.bo-neden__points small { color: var(--bo-muted); font-size: .92rem; }

.bo-feature-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.bo-feature-list li {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: var(--bo-ink);
}
.bo-feature-list .bo-icon { color: var(--bo-primary); width: 18px; height: 18px; }

/* Kampus mosaic */
.bo-kampus { background: #fff; }
.bo-kampus__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: .85rem;
  margin-top: 1.5rem;
}
.bo-kampus__hero {
  grid-row: 1 / span 2;
  border-radius: 20px;
  background: center/cover no-repeat #2a1a1a;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 360px;
}
.bo-kampus__hero::after,
.bo-kampus__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20,12,12,.72));
}
.bo-kampus__hero > span,
.bo-kampus__tile > span {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--bo-font-display);
  font-weight: 700;
}
.bo-kampus__tile {
  border-radius: 18px;
  background: center/cover no-repeat #3a2a2a;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.bo-kampus__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.bo-cta { position: relative; overflow: hidden; padding: clamp(3.5rem, 8vw, 6rem) 0; color: #fff; }
.bo-cta__bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat #201818;
  transform: scale(1.03);
}
.bo-cta__veil {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(32,24,24,.88), rgba(168,32,24,.55));
}
.bo-cta__inner { position: relative; z-index: 1; max-width: 720px; }
.bo-cta__title {
  margin: 0 0 .75rem;
  font-family: var(--bo-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
}
.bo-cta__text { margin: 0 0 1.35rem; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.bo-cta__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.bo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin: 1.5rem 0 3rem;
}
.bo-gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bo-surface);
  aspect-ratio: 4/5;
}
.bo-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.bo-footer__contact li,
.bo-footer__contact a {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
}
.bo-footer__contact .bo-icon,
.bo-footer__social .bo-icon {
  width: 18px; height: 18px;
  color: #ffb4ae;
}
.bo-footer__social {
  display: flex;
  gap: .55rem;
  margin-top: 1rem;
}
.bo-footer__social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}
.bo-footer__social a:hover { background: rgba(255,255,255,.08); color: #fff; }

@media (max-width: 900px) {
  .bo-neden__grid { grid-template-columns: 1fr; }
  .bo-kampus__mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 140px 140px;
  }
  .bo-kampus__hero { grid-column: 1 / -1; grid-row: auto; min-height: 220px; }
  .bo-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bo-gallery-grid { grid-template-columns: 1fr; }
  .bo-kampus__mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
}

/* Hero */
.bo-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  place-items: end start;
  color: var(--bo-white);
  overflow: hidden;
  background: linear-gradient(145deg, #2a1a1a 0%, #201818 45%, #3a1c1a 100%);
}
.bo-hero__media {
  position: absolute;
  inset: 0;
  background-image: var(--bo-img-hero);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: bo-hero-zoom 12s var(--bo-ease) both;
}
.bo-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32,24,24,.28) 0%, rgba(32,24,24,.55) 45%, rgba(32,24,24,.82) 100%),
    radial-gradient(1200px 500px at 20% 10%, rgba(168,32,24,.22), transparent 60%);
}
.bo-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--bo-max));
  margin: 0 auto 12vh;
  max-width: 720px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--bo-ease), transform .9s var(--bo-ease);
}
.bo-hero__content.is-ready {
  opacity: 1;
  transform: translateY(0);
}
.bo-hero__brand {
  margin: 0 0 .35rem;
  font-family: var(--bo-font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.02em;
}
.bo-hero__tagline {
  margin: 0 0 1rem;
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
}
.bo-hero__slogan {
  margin: 0 0 1.6rem;
  font-family: var(--bo-font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 7.2vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: min(100%, 22ch);
}
.bo-hero__actions .bo-btn {
  flex: 1 1 auto;
  min-width: min(100%, 180px);
}
@keyframes bo-hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

/* Sections */
.bo-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.bo-section__title {
  margin: 0 0 .85rem;
  font-family: var(--bo-font-display);
  font-weight: 750;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bo-charcoal);
}
.bo-section__title--light { color: var(--bo-white); }
.bo-section__lead {
  margin: 0 0 1.25rem;
  color: var(--bo-muted);
  font-size: 1.08rem;
  max-width: 42rem;
}
.bo-section__lead--light { color: rgba(255,255,255,.88); }
.bo-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.bo-basarilar__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.bo-basarilar { background: linear-gradient(180deg, #fff 0%, var(--bo-surface) 100%); }
.bo-basarilar__media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--bo-shadow);
}
.bo-basarilar__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.bo-basarilar__accent {
  min-height: 280px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 30%, rgba(168,32,24,.35), transparent 50%),
    linear-gradient(135deg, #2a1c1c, #201818 60%, #4a2220);
}

.bo-haberler { background: var(--bo-white); }
.bo-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.bo-news-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bo-white);
  border: 1px solid var(--bo-line);
  transition: transform .3s var(--bo-ease), box-shadow .3s;
}
.bo-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bo-shadow);
}
.bo-news-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bo-surface);
}
.bo-news-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--bo-ease);
}
.bo-news-card:hover .bo-news-card__media img { transform: scale(1.04); }
.bo-news-card__ph {
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #ddd8d8, #f0ecec);
}
.bo-news-card__body { padding: 1.15rem 1.2rem 1.35rem; }
.bo-news-card__body time {
  display: block;
  font-size: .85rem;
  color: var(--bo-muted);
  margin-bottom: .4rem;
}
.bo-news-card__title {
  margin: 0 0 .45rem;
  font-family: var(--bo-font-display);
  font-size: 1.15rem;
  line-height: 1.3;
}
.bo-news-card__title a {
  color: var(--bo-charcoal);
  text-decoration: none;
}
.bo-news-card__title a:hover { color: var(--bo-primary); }
.bo-news-card__excerpt {
  margin: 0;
  color: var(--bo-muted);
  font-size: .95rem;
}

/* Sub pages */
.bo-subhero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  background:
    radial-gradient(800px 240px at 10% 0%, rgba(168,32,24,.12), transparent 60%),
    linear-gradient(180deg, var(--bo-surface), var(--bo-white));
}
.bo-subhero--media {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(32,24,24,.55), rgba(32,24,24,.82)),
    var(--bo-subhero-img) center/cover no-repeat;
  min-height: 280px;
  display: grid;
  align-items: end;
}
.bo-subhero--media .bo-eyebrow { color: #ffb4ae; }
.bo-subhero--media .bo-subhero__title { color: #fff; }

.bo-subhero__eyebrow {
  margin: 0 0 .4rem;
  font-family: var(--bo-font-display);
  font-weight: 600;
  color: var(--bo-primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.bo-subhero__title {
  margin: 0;
  font-family: var(--bo-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--bo-charcoal);
}
.bo-subhero__meta {
  margin: 0 0 .6rem;
  color: var(--bo-muted);
  font-size: .95rem;
}
.bo-page-head { margin: 2.5rem 0 1.75rem; }
.bo-page-head__title {
  margin: 0;
  font-family: var(--bo-font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--bo-charcoal);
}
.bo-page-head__desc { color: var(--bo-muted); margin: .5rem 0 0; }
.bo-archive__inner { padding-bottom: 4rem; }
.bo-prose {
  max-width: 720px;
  padding: 1.5rem 0 4rem;
}
.bo-prose > *:first-child { margin-top: 0; }
.bo-prose h2, .bo-prose h3 {
  font-family: var(--bo-font-display);
  color: var(--bo-charcoal);
  letter-spacing: -0.02em;
}
.bo-article__thumb {
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  overflow: hidden;
}
.bo-article__thumb img { width: 100%; max-height: 480px; object-fit: cover; }

.bo-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  padding: 1rem 0 3rem;
}
.bo-contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.bo-contact-list li {
  display: grid;
  gap: .25rem;
}
.bo-contact-list span {
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--bo-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bo-contact-list a {
  color: var(--bo-charcoal);
  text-decoration: none;
  font-weight: 600;
}
.bo-contact-list a:hover { color: var(--bo-primary); }
.bo-map {
  margin-top: 1rem;
  min-height: 360px;
  background: var(--bo-surface);
}
.bo-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.bo-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1rem 0 4rem;
}
.bo-staff-card {
  text-align: center;
}
.bo-staff-card__media {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bo-surface);
  margin-bottom: .85rem;
}
.bo-staff-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s var(--bo-ease);
}
.bo-staff-card:hover .bo-staff-card__media img { transform: scale(1.04); }
.bo-staff-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #d8d2d2, #f4f1f1);
}
.bo-staff-card__name {
  margin: 0;
  font-family: var(--bo-font-display);
  font-size: 1.05rem;
  color: var(--bo-charcoal);
}
.bo-staff-card__role {
  margin: .25rem 0 0;
  color: var(--bo-muted);
  font-size: .92rem;
}
.bo-kademe-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 0 0 4rem;
}

.bo-404__inner {
  min-height: 55vh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: .75rem;
  padding: 4rem 0;
}
.bo-404__code {
  margin: 0;
  font-family: var(--bo-font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--bo-primary);
  line-height: 1;
}
.bo-404__title {
  margin: 0;
  font-family: var(--bo-font-display);
  font-size: 2rem;
}

/* Footer */
.bo-footer {
  background: #171212;
  color: rgba(255,255,255,.82);
  padding-top: 3.5rem;
}
.bo-footer a { color: rgba(255,255,255,.9); text-decoration: none; }
.bo-footer a:hover { color: #fff; }
.bo-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.bo-footer__school-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}
.bo-footer__brand p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255,255,255,.7);
}
.bo-footer__col h3 {
  margin: 0 0 1rem;
  font-family: var(--bo-font-display);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.bo-footer__contact,
.bo-footer__links {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: .55rem;
}
.bo-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: .92rem;
}
.bo-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
}
.bo-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bo-footer__bottom p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.55); }
.bo-footer__narda img {
  height: 26px;
  width: auto;
  opacity: .92;
}
.bo-footer__narda:hover img { opacity: 1; }

/* Forms */
.bo-form { display: grid; gap: .9rem; }
.bo-form__field { display: grid; gap: .35rem; }
.bo-form__field span {
  font-family: var(--bo-font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--bo-charcoal);
}
.bo-form input[type="text"],
.bo-form input[type="tel"],
.bo-form input[type="email"],
.bo-form select,
.bo-form textarea {
  width: 100%;
  min-height: 48px;
  padding: .7rem .9rem;
  border: 1px solid var(--bo-line);
  border-radius: 10px;
  font: inherit;
  background: var(--bo-white);
  color: var(--bo-ink);
  transition: border-color .2s, box-shadow .2s;
}
.bo-form textarea { min-height: 120px; resize: vertical; }
.bo-form input:focus,
.bo-form select:focus,
.bo-form textarea:focus {
  outline: none;
  border-color: var(--bo-primary);
  box-shadow: 0 0 0 3px rgba(168,32,24,.12);
}
.bo-form__check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--bo-muted);
}
.bo-form__check input { margin-top: .25rem; }
.bo-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.bo-form__status { margin: 0; font-weight: 600; }
.bo-form__status.is-ok { color: #1b7a3d; }
.bo-form__status.is-err { color: var(--bo-primary); }
.bo-form-notice {
  padding: .85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.bo-form-notice--ok { background: #e8f7ee; color: #145c2e; }
.bo-form-notice--err { background: #fdeceb; color: var(--bo-primary); }
.bo-contact-form-wrap {
  background: var(--bo-surface);
  border-radius: 18px;
  padding: 1.5rem;
}

/* Modal */
.bo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.bo-modal[hidden] { display: none !important; }
.bo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32,24,24,.55);
  backdrop-filter: blur(4px);
}
.bo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: var(--bo-white);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--bo-shadow);
}
.bo-modal__close {
  position: absolute;
  top: .65rem; right: .75rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--bo-muted);
}
.bo-modal__title {
  margin: 0 0 .35rem;
  font-family: var(--bo-font-display);
  font-size: 1.45rem;
  color: var(--bo-charcoal);
}
.bo-modal__lead {
  margin: 0 0 1.1rem;
  color: var(--bo-muted);
}

/* WhatsApp FAB */
.bo-wa-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 120;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #128C7E;
  color: #fff;
  box-shadow: 0 12px 28px rgba(18,140,126,.35);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px) scale(.92);
  pointer-events: none;
  transition: opacity .4s var(--bo-ease), transform .4s var(--bo-ease);
}
.bo-wa-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.bo-wa-fab:hover { color: #fff; transform: translateY(-2px) scale(1.03); }
.bo-wa-fab__tip {
  position: absolute;
  right: calc(100% + .6rem);
  white-space: nowrap;
  background: var(--bo-charcoal);
  color: #fff;
  font-size: .8rem;
  font-family: var(--bo-font-display);
  font-weight: 600;
  padding: .4rem .65rem;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.bo-wa-fab:hover .bo-wa-fab__tip {
  opacity: 1;
  transform: translateX(0);
}

/* Cookie */
.bo-cookie {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 140;
  display: flex;
  justify-content: center;
}
.bo-cookie[hidden] { display: none !important; }
.bo-cookie__panel {
  width: min(100%, 720px);
  background: var(--bo-white);
  border: 1px solid var(--bo-line);
  border-radius: 16px;
  box-shadow: var(--bo-shadow);
  padding: 1.15rem 1.25rem;
  display: grid;
  gap: 1rem;
}
.bo-cookie__title {
  margin: 0 0 .35rem;
  font-family: var(--bo-font-display);
  font-size: 1.1rem;
}
.bo-cookie__intro p { margin: 0; color: var(--bo-muted); font-size: .95rem; }
.bo-cookie__prefs { display: grid; gap: .65rem; }
.bo-cookie__prefs[hidden],
.bo-cookie__actions #boCookieSave[hidden],
.bo-cookie__actions #boCookieAccept[hidden] { display: none !important; }
.bo-cookie__opt {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .92rem;
}
.bo-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: flex-end;
}

/* Reveal */
.bo-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--bo-ease), transform .7s var(--bo-ease);
}
.bo-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Pagination */
.navigation.pagination {
  margin: 2.5rem 0 0;
  display: flex;
  justify-content: center;
}
.navigation.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.navigation.pagination a,
.navigation.pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 40px; min-height: 40px;
  padding: 0 .7rem;
  border-radius: 8px;
  border: 1px solid var(--bo-line);
  text-decoration: none;
  color: var(--bo-charcoal);
  font-family: var(--bo-font-display);
  font-weight: 600;
}
.navigation.pagination .current {
  background: var(--bo-primary);
  border-color: var(--bo-primary);
  color: #fff;
}

/* Responsive */
@media (max-width: 980px) {
  .bo-neden__grid,
  .bo-basarilar__grid,
  .bo-contact-grid,
  .bo-footer__grid {
    grid-template-columns: 1fr;
  }
  .bo-news-grid { grid-template-columns: repeat(2, 1fr); }
  .bo-staff-grid { grid-template-columns: repeat(3, 1fr); }
  .bo-kademeler__list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bo-hero { min-height: 86vh; place-items: end stretch; }
  .bo-hero__content { margin-bottom: 8vh; }
  .bo-news-grid,
  .bo-staff-grid { grid-template-columns: 1fr; }
  .bo-kademeler__list { grid-template-columns: 1fr 1fr; }
  .bo-wa-fab { right: 1rem; bottom: 1rem; }
  .bo-wa-fab__tip { display: none; }
  .bo-cookie { left: .75rem; right: .75rem; bottom: .75rem; }
  .bo-cookie__actions { justify-content: stretch; }
  .bo-cookie__actions .bo-btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bo-hero__media { transform: none; animation: none; }
  .bo-reveal { opacity: 1; transform: none; }
}

/* Achievements component */
.bo-achievements {
  margin: 0 0 3rem;
  padding: 1.75rem;
  border: 1px solid var(--bo-line);
  border-radius: 22px;
  background:
    radial-gradient(700px 240px at 0% 0%, rgba(168,32,24,.08), transparent 55%),
    linear-gradient(180deg, #fff, #faf8f8);
  box-shadow: 0 18px 50px rgba(32,24,24,.06);
}
.bo-achievements__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.bo-achievements__badge {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: radial-gradient(circle at 35% 30%, #f6e2a8, #c9a227 70%);
  color: #201818;
  box-shadow: 0 10px 24px rgba(168,32,24,.18), inset 0 0 0 4px rgba(255,255,255,.35);
  font-family: var(--bo-font-display);
  line-height: 1.15;
}
.bo-achievements__badge span { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.bo-achievements__badge strong { font-size: 1rem; }
.bo-achievements__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: 1.35rem;
}
.bo-achievements__stat {
  padding: 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--bo-line);
  display: grid;
  gap: .25rem;
}
.bo-achievements__stat-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(168,32,24,.08);
  color: var(--bo-primary);
  display: grid;
  place-items: center;
  margin-bottom: .25rem;
}
.bo-achievements__stat-ico .bo-icon { width: 17px; height: 17px; }
.bo-achievements__stat strong {
  font-family: var(--bo-font-display);
  font-size: 1.55rem;
  color: var(--bo-charcoal);
  line-height: 1.1;
}
.bo-achievements__stat span { color: var(--bo-muted); font-size: .9rem; }
.bo-achievements__tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bo-achievements__table-wrap {
  overflow: auto;
  border: 1px solid var(--bo-line);
  border-radius: 16px;
  background: #fff;
}
.bo-achievements__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.bo-achievements__table th,
.bo-achievements__table td {
  padding: .75rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--bo-line);
}
.bo-achievements__table thead th {
  background: linear-gradient(90deg, #f0d78c, #e4c15d);
  color: #201818;
  font-family: var(--bo-font-display);
  font-weight: 750;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.bo-achievements__table tbody tr:last-child td { border-bottom: 0; }
.bo-achievements__table tbody tr.is-top { background: rgba(168,32,24,.04); }
.bo-achievements__type {
  display: inline-flex;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--bo-surface);
  font-weight: 650;
  font-size: .85rem;
}
.bo-achievements__rank {
  display: inline-flex;
  min-width: 3.2rem;
  justify-content: center;
  padding: .28rem .7rem;
  border-radius: 8px;
  background: var(--bo-primary);
  color: #fff;
  font-family: var(--bo-font-display);
  font-weight: 750;
}
.bo-achievements__note {
  margin: 1rem 0 0;
  color: var(--bo-muted);
  font-size: .88rem;
}
.bo-achievements-page__copy { margin: 2rem 0; }
.bo-achievements-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0 0 3rem;
}
@media (max-width: 900px) {
  .bo-achievements__head { grid-template-columns: 1fr; }
  .bo-achievements__stats,
  .bo-achievements__tables { grid-template-columns: 1fr; }
}

/* ---------- Mezunlarımız ---------- */
.bo-graduates {
  margin: 2.5rem 0 1rem;
}
.bo-graduates__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.75rem;
}
.bo-graduates__badge {
  display: grid;
  place-content: center;
  min-width: 4.5rem;
  min-height: 4.5rem;
  padding: .65rem;
  border-radius: 1rem;
  background: var(--bo-ink);
  color: #fff;
  text-align: center;
  line-height: 1.15;
}
.bo-graduates__badge span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.bo-graduates__badge strong { font-size: 1.35rem; font-family: var(--bo-font-display); }
.bo-graduates__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.bo-graduates__card {
  overflow: hidden;
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid rgba(32,24,24,.08);
  box-shadow: 0 10px 30px rgba(32,24,24,.05);
}
.bo-graduates__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.bo-graduates__play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #111;
  cursor: pointer;
}
.bo-graduates__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease, filter .35s ease;
  filter: brightness(.88);
}
.bo-graduates__play:hover .bo-graduates__thumb,
.bo-graduates__play:focus-visible .bo-graduates__thumb {
  transform: scale(1.06);
  filter: brightness(1);
}
.bo-graduates__play-ico {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(168,32,24,.94);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition: transform .25s ease, background .25s ease;
}
.bo-graduates__play:hover .bo-graduates__play-ico,
.bo-graduates__play:focus-visible .bo-graduates__play-ico {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--bo-brand);
}
.bo-graduates__frame {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 2;
}
.bo-graduates__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.bo-graduates__card.is-playing .bo-graduates__meta { opacity: .55; }
.bo-graduates__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  padding: 1rem 1.1rem 1.15rem;
}
.bo-graduates__index {
  font-family: var(--bo-font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--bo-brand);
  line-height: 1.2;
}
.bo-graduates__title {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
  line-height: 1.3;
}
.bo-graduates__sub {
  margin: 0;
  color: var(--bo-muted);
  font-size: .92rem;
  line-height: 1.45;
}
.bo-graduates-page__copy { margin: 2rem 0; }
.bo-graduates-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0 0 3rem;
}
@media (max-width: 900px) {
  .bo-graduates__head { grid-template-columns: 1fr; }
  .bo-graduates__grid { grid-template-columns: 1fr; }
}
