/* ============================================================
   ORDUS ACADEMY — ABOUT PAGE
   ============================================================ */

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

/* ── BREADCRUMB ── */
.crumb { display: flex; align-items: center; gap: 9px; padding: 1.5rem 0 0; font-size: 12px; font-weight: 300; color: var(--ink-muted); flex-wrap: wrap; }
.crumb a { text-decoration: none; color: var(--ink-muted); transition: color var(--trans); }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--ink-faint); font-size: 9px; }
.crumb .here { color: var(--ink); }

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-soft); border: 1px solid var(--border); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--black); color: var(--gold); border-radius: var(--radius); padding: 1.25rem 1.5rem; font-family: 'Montserrat', sans-serif; text-align: center; box-shadow: var(--shadow-md); }
.about-badge strong { display: block; font-size: 32px; font-weight: 800; }
.about-badge span { font-size: 10px; font-weight: 300; letter-spacing: 0.2em; opacity: 0.7; }
.about-text { font-size: 15px; font-weight: 300; color: var(--ink-mid); line-height: 1.9; margin-bottom: 1.5rem; }
.about-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 2rem 0; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 400; color: var(--ink); }
.about-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .wrap { padding: 0 1.25rem; }
}
