/* ============================================================
   Site overrides — loaded after the Webflow shared CSS.
   Selectors here are scoped to specific blocks, so this file is
   safe to load on every page. Keep additions minimal + commented.
   ============================================================ */

/* ---- Coach Dan section: smaller portrait + readable, on-brand
        article typography. Keeps the site font (Work Sans); fixes the
        raw rich-text defaults (25px / pure-black / line-height 1.2). ---- */

.template-coach__card-image-wrapper {
  width: 156px;
  height: 156px;
  margin-right: 44px;
  padding: 6px;
}

.template-coach__card-name-wrapper {
  font-size: 14px;
  line-height: 20px;
  padding: 8px 22px;
}

.template-coach__card--quote {
  width: 52px;
  height: 41px;
  inset: -22px auto auto 40px;
}

/* article body */
.basketball-drill-coach__text {
  max-width: 68ch;
  color: #2a2342;            /* soft brand ink — never pure black */
  font-size: 18px;
  font-weight: 500;          /* Work Sans Medium */
  line-height: 1.7;
}

.basketball-drill-coach__text p {
  font-size: 18px;
  line-height: 1.7;
  color: #2a2342;
  font-weight: 500;
  margin: 0 0 16px;
}

.basketball-drill-coach__text h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d0331;            /* brand ink */
  letter-spacing: -0.01em;
  margin: 6px 0 18px;
}

.basketball-drill-coach__text h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  color: #0d0331;
  margin: 30px 0 10px;
}

.basketball-drill-coach__text ul,
.basketball-drill-coach__text ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.basketball-drill-coach__text li {
  font-size: 18px;
  line-height: 1.65;
  color: #2a2342;
  font-weight: 500;
  margin-bottom: 10px;
}

.basketball-drill-coach__text li::marker {
  color: #614cf3;
  font-weight: 700;
}

.basketball-drill-coach__text strong {
  color: #0d0331;
  font-weight: 700;
}

@media (max-width: 991px) {
  .template-coach__card-image-wrapper {
    width: 128px;
    height: 128px;
    margin: 0 auto 16px;
  }
  .basketball-drill-coach__text,
  .basketball-drill-coach__text p,
  .basketball-drill-coach__text li {
    font-size: 16px;
  }
  .basketball-drill-coach__text h2 { font-size: 25px; }
}

/* ---- Blog — reuses the site's listing/card/button components. These rules
        are only glue (category nav, hero meta, article typography that mirrors
        the Coach Dan treatment); no new visual language. ---- */
.blog-catnav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.blog-catnav a {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  border-radius: 100px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.blog-catnav a:hover { background: rgba(255, 255, 255, 0.28); }
.blog-post__meta { color: #fff; opacity: 0.88; font-weight: 600; font-size: 15px; margin-top: 14px; }
.blog-post__hero-img {
  display: block;
  width: 100%;
  border-radius: 20px;
  margin: 28px 0 0;
  box-shadow: 0 12px 40px rgba(13, 3, 49, 0.18);
}
.blog-post__body {
  max-width: 720px;
  margin: 36px auto 0;
  color: #2a2342;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.blog-post__body p { font-size: 18px; line-height: 1.7; color: #2a2342; font-weight: 500; margin: 0 0 18px; }
.blog-post__body h2 { font-size: 28px; line-height: 1.2; font-weight: 800; color: #0d0331; letter-spacing: -0.01em; margin: 34px 0 14px; }
.blog-post__body h3 { font-size: 21px; line-height: 1.3; font-weight: 700; color: #0d0331; margin: 28px 0 10px; }
.blog-post__body ul, .blog-post__body ol { padding-left: 22px; margin: 0 0 18px; }
.blog-post__body li { font-size: 18px; line-height: 1.65; color: #2a2342; font-weight: 500; margin-bottom: 10px; }
.blog-post__body li::marker { color: #614cf3; font-weight: 700; }
.blog-post__body strong { color: #0d0331; font-weight: 700; }
.blog-cta { text-align: center; }

/* ---- Language switcher (navbar) — CSS-only hover dropdown, on-brand ---- */
.lang-switch { position: relative; display: inline-block; margin-left: 8px; }
.lang-switch__current {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; font-weight: 600; font-size: 15px; cursor: pointer;
  padding: 8px 14px; border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 100px;
}
.lang-switch__current svg { width: 17px; height: 17px; }
.lang-switch__menu {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border-radius: 14px; box-shadow: 0 14px 40px rgba(13, 3, 49, 0.22);
  padding: 8px; min-width: 190px; z-index: 1000; max-height: 70vh; overflow: auto;
}
.lang-switch:hover .lang-switch__menu, .lang-switch:focus-within .lang-switch__menu { display: block; }
.lang-switch__menu a {
  display: block; padding: 9px 14px; color: #0d0331; font-weight: 600;
  font-size: 15px; text-decoration: none; border-radius: 9px; white-space: nowrap;
}
.lang-switch__menu a:hover { background: #f3f2f5; }
.lang-switch__menu a.on { color: #614cf3; }
@media (max-width: 991px) {
  .lang-switch { display: block; margin: 12px 0 0; }
  .lang-switch__menu { position: static; box-shadow: none; padding: 0; margin-top: 8px; }
  .lang-switch:hover .lang-switch__menu { display: block; }
}
