/* Allen & Co — Redesigned Site CSS (mobile-first) */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--ac-ink); background: var(--ac-bg); -webkit-font-smoothing: antialiased; line-height: var(--lh-body); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ac-ocean); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--dur-base) ease; }
a:hover { border-bottom-color: var(--ac-ocean); }
:focus-visible { outline: 2px solid var(--ac-red); outline-offset: 3px; border-radius: 2px; }

/* Container */
.ac-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .ac-container { padding: 0 24px; } }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ac-navy); color: white; padding: 8px 16px; z-index: 100; }
.skip-link:focus { left: 0; }

/* Top nav — mobile first with hamburger */
.ac-nav { position: sticky; top: 0; z-index: 50; background: var(--ac-bg); border-bottom: 1px solid var(--ac-rule); }
.ac-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
.ac-nav__brand img { height: 28px; }
@media (min-width: 768px) { .ac-nav__inner { height: 72px; } .ac-nav__brand img { height: 36px; } }

.ac-nav__toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; }
.ac-nav__toggle svg { width: 24px; height: 24px; stroke: var(--ac-navy); }
@media (min-width: 980px) { .ac-nav__toggle { display: none; } }

.ac-nav__links { display: none; gap: 16px; align-items: center; flex: 1; justify-content: center; }
.ac-nav__cta   { display: none; }
@media (min-width: 980px) {
  .ac-nav__links { display: flex; }
  .ac-nav__cta { display: inline-flex; }
}
.ac-nav__link { color: var(--ac-ink); border-bottom: 0; font-weight: 500; font-size: 14px; padding: 8px 0; }
.ac-nav__link[aria-current="page"] { color: var(--ac-red); font-weight: 600; }

/* Mobile drawer */
.ac-mobile-drawer { display: none; background: var(--ac-bg); border-top: 1px solid var(--ac-rule); padding: 16px; }
.ac-mobile-drawer[open] { display: block; }
.ac-mobile-drawer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.ac-mobile-drawer a { display: block; padding: 12px 8px; color: var(--ac-ink); border-bottom: 1px solid var(--ac-rule); font-weight: 500; }
.ac-mobile-drawer a:last-child { border-bottom: 0; }

/* Hero */
.ac-hero { background: var(--ac-navy); color: white; padding: 56px 0 64px; position: relative; overflow: hidden; }
.ac-hero--image { background-color: var(--ac-navy); background-size: cover; background-position: center; padding: 96px 0 104px; }
.ac-hero--image h1 { font-size: clamp(28px, 4vw, 48px); line-height: 1.1; max-width: 22ch; }
.ac-hero--image p { color: rgba(255,255,255,0.92); }
.ac-hero__inner { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.ac-hero h1 { color: white; font-size: clamp(32px, 6vw, 56px); line-height: 1.05; letter-spacing: -0.01em; max-width: 14ch; }
.ac-hero p { color: var(--ac-beige); font-size: clamp(15px, 2vw, 18px); max-width: 50ch; }
.ac-hero__plus { display: none; position: absolute; right: -2vw; top: 50%; transform: translateY(-50%); font-size: 280px; line-height: 1; color: var(--ac-red); font-weight: 800; }
@media (min-width: 980px) { .ac-hero__plus { display: block; } .ac-hero__inner { max-width: 60%; } }

/* Buttons */
.ac-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 12px; font-weight: 600; font-size: 14px; line-height: 1; border: 1.5px solid transparent; cursor: pointer; }
.ac-btn--primary   { background: var(--ac-red); color: white; }
.ac-btn--primary:hover { background: #b00022; }
.ac-btn--ghost     { background: transparent; color: white; border-color: white; }
.ac-btn--ghost:hover { background: white; color: var(--ac-navy); }
.ac-btn--secondary { background: var(--ac-navy); color: white; }
.ac-btn--secondary:hover { background: #0b1f32; }
.ac-btn--ocean     { background: var(--ac-ocean); color: white; }
.ac-btn--ocean:hover { background: #155e96; }

/* Stats strip */
.ac-stats { background: var(--ac-bg-soft); padding: 40px 0; }
.ac-stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: center; }
@media (min-width: 768px) { .ac-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.ac-stat__num { font-size: clamp(32px, 5vw, 48px); font-weight: 700; color: var(--ac-navy); }
.ac-stat__lbl { font-size: 13px; color: var(--ac-ink-muted); }

/* Section */
.ac-section { padding: 56px 0; }
.ac-eyebrow { color: var(--ac-red); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; margin-bottom: 8px; }
.ac-section h2 { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; margin-bottom: 16px; }
.ac-rule { display: block; width: 48px; height: 3px; background: var(--ac-red); border: 0; margin: 16px 0 24px; }

/* Category grid */
.ac-cats { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .ac-cats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ac-cats { grid-template-columns: repeat(3, 1fr); } }
.ac-cat { display: block; padding: 24px; background: white; border: 1px solid var(--ac-rule); border-radius: 16px; color: var(--ac-ink); border-bottom: 1px solid var(--ac-rule); transition: box-shadow var(--dur-base), transform var(--dur-base); }
.ac-cat:hover { box-shadow: 0 4px 16px rgba(18,48,74,0.08); transform: translateY(-2px); }
.ac-cat h3 { color: var(--ac-navy); font-size: 18px; margin-bottom: 8px; }
.ac-cat p  { color: var(--ac-ink-muted); font-size: 14px; }

/* Product cards */
.ac-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .ac-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ac-cards { grid-template-columns: repeat(3, 1fr); } }
.ac-card { display: flex; flex-direction: column; background: white; border: 1px solid var(--ac-rule); border-radius: 16px; overflow: hidden; color: var(--ac-ink); border-bottom: 1px solid var(--ac-rule); }
.ac-card__media { height: 180px; background: var(--ac-bg-soft); background-size: cover; background-position: center; }
.ac-card__body  { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ac-card__mfr   { font-size: 11px; color: var(--ac-red); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.ac-card__title { font-size: 18px; font-weight: 700; color: var(--ac-navy); }
.ac-card__cat   { font-size: 13px; color: var(--ac-ink-muted); }
.ac-card__cta   { margin-top: auto; font-size: 13px; color: var(--ac-ocean); font-weight: 600; padding-top: 8px; border-bottom: 0; }

/* Product detail */
.ac-product { display: grid; grid-template-columns: 1fr; gap: 24px; padding-top: 24px; padding-bottom: 24px; }
@media (min-width: 980px) {
  .ac-product { grid-template-columns: 1.1fr 1fr; gap: 48px; }
  .ac-product > *:nth-child(2) { display: flex; flex-direction: column; }
  .ac-product > *:nth-child(2) > div:last-child { margin-top: auto !important; }
}
.ac-product__media { background: var(--ac-bg-soft); border-radius: 16px; min-height: 320px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.ac-product h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; margin-bottom: 8px; }
.ac-product__partner { color: var(--ac-ink-muted); font-size: 14px; margin-bottom: 16px; }
.ac-product__tagline { color: var(--ac-ocean); font-style: italic; font-size: 17px; margin-bottom: 16px; }
.ac-product__benefits { list-style: none; padding: 0; margin: 16px 0; }
.ac-product__benefits li { padding-left: 22px; position: relative; margin-bottom: 6px; font-size: 15px; }
.ac-product__benefits li::before { content: "›"; color: var(--ac-red); font-weight: 700; position: absolute; left: 0; }
.ac-product + .ac-section { padding-top: 32px; }

/* Specs table */
.ac-specs { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 16px; }
.ac-specs th, .ac-specs td { padding: 10px 12px; text-align: left; vertical-align: top; }
.ac-specs thead th { background: var(--ac-navy); color: white; font-weight: 600; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.ac-specs tbody tr:nth-child(even) td { background: var(--ac-bg-soft); }
.ac-specs th[scope="row"] { width: 40%; color: var(--ac-ink-muted); font-weight: 500; }

/* Breadcrumbs */
.ac-crumbs { font-size: 13px; color: var(--ac-ink-muted); padding: 16px 0 0; }
.ac-crumbs a { color: var(--ac-ink-muted); border-bottom: 0; }
.ac-crumbs span { margin: 0 6px; color: var(--ac-rule); }

/* CTA strip */
.ac-cta-strip { background: var(--ac-navy); color: white; padding: 48px 0; text-align: center; }
.ac-cta-strip h2 { color: white; font-size: clamp(24px, 4vw, 32px); margin-bottom: 16px; }

/* Footer — 4-col signature */
.ac-footer { margin-top: 48px; }
.ac-footer__grid { display: grid; grid-template-columns: 1fr; min-height: 110px; }
@media (min-width: 768px) { .ac-footer__grid { grid-template-columns: 2.2fr 1.1fr 1fr 0.4fr; } }
.ac-footer__grid > * { padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; }
.ac-footer__brand { background: var(--ac-navy); color: white; align-items: center; text-align: center; }
.ac-footer__logo { height: 44px; width: auto; margin: 0 auto 8px; }
.ac-footer__contact { font-size: 13px; }
.ac-footer__contact a { color: white; border-bottom: 0; }
.ac-footer__sep { color: var(--ac-red); margin: 0 6px; font-weight: 700; }
.ac-footer__address { background: var(--ac-ocean); color: white; text-align: center; font-size: 14px; line-height: 1.55; font-style: normal; }
@media (min-width: 768px) { .ac-footer__address { text-align: right; } }
.ac-footer__qr { background: var(--ac-bg-soft); color: var(--ac-navy); align-items: center; text-align: center; }
.ac-footer__qr-label { font-weight: 700; font-size: 14px; }
.ac-footer__qr-sub { font-size: 11px; color: var(--ac-ink-muted); }
.ac-footer__plus { background: var(--ac-red); color: white; font-weight: 800; font-size: 48px; line-height: 1; align-items: center; text-align: center; }
.ac-footer__bar { background: #0B1F32; color: var(--ac-beige); }
.ac-footer__bar-inner { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px; font-size: 11px; }
@media (min-width: 768px) { .ac-footer__bar-inner { flex-direction: row; justify-content: space-between; } }
/* Executive board — About page */
.ac-team { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 24px; }
@media (min-width: 860px) { .ac-team { grid-template-columns: 1fr 1fr; gap: 40px; } }
.ac-exec { display: flex; gap: 20px; align-items: flex-start; }
.ac-exec__photo { flex: 0 0 120px; }
.ac-exec__photo img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; display: block; background: var(--ac-bg-soft); }
.ac-exec__body { flex: 1 1 auto; min-width: 0; }
.ac-exec__name { font-size: 24px; margin-bottom: 2px; color: var(--ac-navy); }
.ac-exec__title { color: var(--ac-ocean); font-weight: 600; font-size: 14px; letter-spacing: 0.02em; margin-bottom: 10px; }
.ac-exec__bio { list-style: none; padding: 0; margin: 0; }
.ac-exec__bio li { position: relative; padding-left: 14px; font-size: 14px; line-height: 1.55; color: var(--ac-ink); margin-bottom: 8px; }
.ac-exec__bio li::before { content: "·"; color: var(--ac-red); font-weight: 800; position: absolute; left: 0; top: -2px; font-size: 18px; }

/* --- Lines of Business (homepage) --- */
.lob-section { padding-top: 56px; padding-bottom: 56px; }
.lob-heading { text-align: center; color: var(--ac-navy); font-size: clamp(28px, 4vw, 40px); margin-bottom: 32px; }
.lob-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 860px) { .lob-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.lob-item { display: flex; flex-direction: column; }
.lob-header { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; border: 0; }
.lob-header img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.2); }
.lob-header::after { content: ""; position: absolute; inset: 0; mix-blend-mode: multiply; }
.lob-header--blue::after   { background: rgba(18, 48, 74, 0.72); }
.lob-header--red::after    { background: rgba(214, 37, 55, 0.72); }
.lob-header--yellow::after { background: rgba(244, 192, 45, 0.82); }
.lob-title { position: absolute; left: 20px; bottom: 14px; color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1; z-index: 2; text-shadow: 0 1px 2px rgba(0,0,0,0.25); }
.lob-body { padding: 20px 4px 8px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.lob-body p { color: var(--ac-ink); font-size: 15px; line-height: 1.55; margin: 0; }
.lob-btn { align-self: stretch; text-align: center; padding: 14px 16px; border: 1.5px solid var(--ac-navy); color: var(--ac-navy); font-weight: 600; font-size: 15px; transition: background 0.2s ease, color 0.2s ease; margin-top: auto; }
.lob-btn:hover { background: var(--ac-navy); color: #fff; border-bottom-color: var(--ac-navy); }

/* --- Live-style footer --- */
.ac-footer, .ac-footer__grid, .ac-footer__brand, .ac-footer__address, .ac-footer__qr, .ac-footer__plus, .ac-footer__bar, .ac-footer__bar-inner, .ac-footer__logo, .ac-footer__contact, .ac-footer__sep { /* legacy styles preserved but old footer is no longer rendered */ }

.site-footer { background: #0F2A44; color: #fff; margin-top: 48px; }
.site-footer a { color: #fff; border-bottom: 0; }
.site-footer a:hover { color: var(--ac-beige); border-bottom: 0; }
.site-footer__wrapper { max-width: 1280px; margin: 0 auto; padding: 40px 24px 32px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 860px) { .site-footer__wrapper { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 28px; } }

.site-footer__col { min-width: 0; }
.site-footer__business .site-footer__logo { display: inline-block; margin-bottom: 16px; }
.site-footer__business .site-footer__logo img { height: 48px; width: auto; }
.site-footer__contact { list-style: none; padding: 0; margin: 0 0 14px 0; font-size: 15px; line-height: 1.7; }
.site-footer__phone { display: flex; align-items: center; gap: 6px; }
.site-footer__icon { display: inline-flex; align-items: center; }
.site-footer__cta { display: inline-block; background: var(--ac-red); color: #fff !important; padding: 14px 32px; font-weight: 700; font-size: 15px; border-bottom: 0; transition: background 0.2s ease; }
.site-footer__cta:hover { background: #b21c2e; }

.site-footer__address address { font-style: normal; font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.site-footer__sponsor { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; }
.site-footer__sponsor img { width: 76px; height: auto; display: block; }
.site-footer__sponsor span { font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.15; }

.site-footer__menu { list-style: none; padding: 0; margin: 0; font-size: 15px; line-height: 1.8; }
.site-footer__menu li { margin-bottom: 2px; }
.site-footer__menu li:first-child a { font-weight: 700; text-transform: uppercase; }

.site-footer__search { display: flex; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); margin-bottom: 16px; }
.site-footer__search label { flex: 1; display: block; }
.site-footer__search-input { width: 100%; background: transparent; border: 0; color: #fff; padding: 10px 12px; font-family: inherit; font-size: 14px; outline: none; }
.site-footer__search-input::placeholder { color: rgba(255,255,255,0.55); }
.site-footer__search-btn { background: transparent; border: 0; padding: 0 12px; color: #fff; cursor: pointer; }

.site-footer__social { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; font-size: 14px; letter-spacing: 0.05em; }
.site-footer__social-label { text-transform: uppercase; }
.site-footer__social svg { flex-shrink: 0; background: rgba(255,255,255,0.12); border-radius: 50%; padding: 4px; width: 28px; height: 28px; }

.site-footer__bar { border-top: 1px solid rgba(255,255,255,0.12); background: #0B1F32; }
.site-footer__bar-inner { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.7); }
@media (min-width: 600px) { .site-footer__bar-inner { flex-direction: row; justify-content: space-between; align-items: center; } }
.site-footer__legal a { color: rgba(255,255,255,0.75); }
.site-footer__sep { color: rgba(255,255,255,0.4); margin: 0 6px; }

/* --- Verticals (industries served) grid --- */
.ac-verticals { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 600px) { .ac-verticals { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.ac-verticals li { background: white; border: 1px solid var(--ac-rule); border-radius: 16px; padding: 24px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ac-verticals__icon { width: 48px; height: 48px; color: var(--ac-red); display: flex; align-items: center; justify-content: center; }
.ac-verticals__icon svg { width: 100%; height: 100%; }
.ac-verticals__label { font-size: 13px; font-weight: 700; color: var(--ac-navy); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.25; }

/* --- Country list (where we work) --- */
.ac-countries { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 600px) { .ac-countries { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .ac-countries { grid-template-columns: repeat(4, 1fr); } }
.ac-countries li { display: flex; gap: 8px; align-items: center; padding: 10px 12px; background: white; border: 1px solid var(--ac-rule); border-radius: 8px; font-size: 13.5px; color: var(--ac-ink); }
.ac-countries li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ac-red); flex: 0 0 8px; }

/* --- Testimonial blockquotes --- */
.ac-quotes { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 24px; }
@media (min-width: 860px) { .ac-quotes { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.ac-quote { background: white; border: 1px solid var(--ac-rule); border-left: 4px solid var(--ac-red); border-radius: 12px; padding: 24px 26px; margin: 0; }
.ac-quote p { font-size: 15px; line-height: 1.6; color: var(--ac-ink); margin: 0 0 12px; font-style: italic; }
.ac-quote cite { font-style: normal; font-size: 13px; color: var(--ac-ink-muted); display: block; line-height: 1.45; }
.ac-quote cite strong { color: var(--ac-navy); display: block; font-weight: 700; }

/* --- Manufacturer hero banner --- */
.ac-mfr-hero { background-color: var(--ac-navy); background-size: cover; background-position: center; color: #fff; padding: 72px 0 64px; }
.ac-mfr-hero h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin-bottom: 16px; }
.ac-mfr-hero .ac-eyebrow { color: var(--ac-yellow); }

/* --- Enhanced manufacturer context grid (Volkan page) --- */
.ac-mfr-context { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
@media (min-width: 860px) { .ac-mfr-context { grid-template-columns: repeat(3, 1fr); } }
.ac-mfr-context h3 { color: var(--ac-navy); font-size: 18px; margin-bottom: 8px; }
.ac-mfr-context p { font-size: 14.5px; line-height: 1.55; color: var(--ac-ink); }

.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Partner / supplier logo grid --- */
.ac-logos { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px; align-items: center; }
@media (min-width: 600px) { .ac-logos { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; } }
@media (min-width: 860px) { .ac-logos { grid-template-columns: repeat(4, 1fr); gap: 40px 32px; } }
.ac-logos__item { display: flex; align-items: center; justify-content: center; min-height: 96px; padding: 12px; }
.ac-logos__item a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-bottom: 0; }
.ac-logos__item img { max-width: 100%; max-height: 80px; width: auto; height: auto; object-fit: contain; filter: grayscale(0.15); opacity: 0.92; transition: filter var(--dur-base), opacity var(--dur-base), transform var(--dur-base); }
.ac-logos__item a:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }

/* --- Training program tiles --- */
.ac-training { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 24px; }
@media (min-width: 860px) { .ac-training { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.ac-training__item { background: white; border: 1px solid var(--ac-rule); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.ac-training__media { aspect-ratio: 16 / 9; background: var(--ac-bg-soft); background-size: cover; background-position: center; }
.ac-training__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ac-training__eyebrow { font-size: 11px; color: var(--ac-red); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.ac-training__title { color: var(--ac-navy); font-size: 22px; font-weight: 700; }
.ac-training__body p { color: var(--ac-ink); font-size: 14.5px; line-height: 1.6; }
.ac-training__cta { margin-top: auto; align-self: flex-start; }

/* --- Course list (training pages) --- */
.ac-course-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 760px) { .ac-course-list { grid-template-columns: repeat(2, 1fr); } }
.ac-course-list li { background: white; border: 1px solid var(--ac-rule); border-radius: 12px; padding: 14px 18px; font-size: 14.5px; color: var(--ac-ink); display: flex; gap: 12px; align-items: flex-start; }
.ac-course-list li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--ac-red); margin-top: 7px; }
