/* =====================================================================
   Target Language Academy — Component styles only.
   Uses Webflow's design system + Instrument Sans. No custom palette,
   no custom fonts. Every custom variable below maps to a Webflow value.
   ===================================================================== */

/* ---------- 1. Map custom variables to Webflow values ---------- */
:root {
  /* Colours — all resolve to Webflow's palette */
  --tla-navy:        var(--_colors---core-neutral-color--neutral-inverse);  /* #1e1e1f */
  --tla-navy-80:     rgba(30, 30, 31, 0.8);
  --tla-navy-90:     rgba(30, 30, 31, 0.9);
  --tla-charcoal:    var(--_colors---core-neutral-color--neutral-inverse);
  --tla-gold:        var(--_colors---core-accent-color--accent-primary);    /* #1032cf */
  --tla-gold-hover:  var(--_colors---core-accent-color--accent-primary-hover);
  --tla-cream:       var(--_colors---background-color--bg-secondary);
  --tla-cream-warm:  var(--_colors---background-color--bg-secondary);
  --tla-slate:       var(--_colors---text-color--text-tertiary, #888);
  --tla-border:      var(--_colors---border-color--border-primary, #e5e5e5);
  --tla-green:       #2db742;
  --tla-text:        var(--_colors---text-color--text-primary);
  --tla-text-body:   var(--_colors---text-color--text-secondary, #333);
  --tla-text-muted:  var(--_colors---text-color--text-tertiary, #888);
  --tla-white:       var(--_colors---core-neutral-color--neutral-primary);

  /* Fonts — all Instrument Sans via Webflow */
  --tla-font-body:    var(--_typography---font--body-font);
  --tla-font-heading: var(--_typography---font--heading-font);
  --tla-font-mono:    var(--_typography---font--body-font);

  /* Radii — Webflow values */
  --tla-radius-card:   var(--_sizes---card--card-radius);
  --tla-radius-button: var(--_sizes---button--button-radius);
}

/* ---------- 2. Components (Webflow-skinned) ---------- */

/* Mobile nav — enforce single-row layout below Webflow's medium breakpoint (991px).
   The w-nav CSS already hides .w-nav-menu + shows .w-nav-button below 991px when
   data-collapse="medium" is set. We also hide the external CTA button-group so
   the bar stays one clean row (logo + hamburger). Users open the hamburger to
   reach nav links; the hero and CTA banners on each page carry the primary CTA. */
@media (max-width: 991px) {
  .nav_container.w-nav {
    flex-wrap: nowrap !important;
    align-items: center;
  }
  .nav_left {
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav_left .paragraph_large {
    font-size: 14px;
    line-height: 1.2;
  }
  .nav_right > .button-group {
    display: none !important;
  }
}

/* ProVisas micro-text under logo */
.a-provisas-company {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sticky nav */
.nav.is-inverse { position: sticky; top: 0; z-index: 100; }

/* Brand mark sizing (applies to nav + footer logo containers) */
.nav_logo-icon { width: 40px; height: 40px; flex: 0 0 40px; }
.nav_logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stats__item { display: flex; flex-direction: column; gap: 4px; }
.hero-stats__value { font-size: 22px; font-weight: 700; color: var(--tla-white); }
.hero-stats__label { color: rgba(255,255,255,0.6); font-size: 13px; }
.hero-rule { display: none; }

/* Test selector cards */
.test-card {
  display: block;
  padding: 32px 28px;
  background: var(--tla-white);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius-card);
  text-decoration: none;
  color: var(--tla-text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.test-card:hover { transform: translateY(-4px); border-color: var(--tla-gold); }
.test-card__eyebrow { font-size: 11px; color: var(--tla-gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; font-weight: 600; }
.test-card__title { font-size: 26px; margin: 0 0 12px; color: var(--tla-text); font-weight: 600; }
.test-card__desc { color: var(--tla-text-body); margin: 0 0 20px; line-height: 1.5; }
.test-card__link { color: var(--tla-gold); font-weight: 600; }
.test-card__link::after { content: " →"; }

/* Score badge */
.score-badge {
  background: var(--tla-navy);
  color: var(--tla-white);
  padding: 28px 24px;
  border-radius: var(--tla-radius-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.score-badge__score { font-size: 44px; font-weight: 700; line-height: 1; color: var(--tla-white); }
.score-badge__test { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.score-badge__name { color: rgba(255,255,255,0.9); font-size: 18px; font-weight: 600; }
.score-badge__visa {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--tla-white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
  font-weight: 600;
}

/* Course card */
.course-card {
  background: var(--tla-white);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.course-card__eyebrow { font-size: 11px; color: var(--tla-gold); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.course-card__title { font-size: 24px; color: var(--tla-text); margin: 0; font-weight: 600; }
.course-card__desc { color: var(--tla-text-body); line-height: 1.55; margin: 0; flex: 1; }
.course-card__meta { display: flex; gap: 16px; font-size: 12px; color: var(--tla-text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.course-card__price { font-size: 30px; font-weight: 700; color: var(--tla-text); }
.course-card__price-note { font-size: 12px; color: var(--tla-text-muted); font-weight: 400; letter-spacing: 0; text-transform: none; }
.course-card__cta {
  margin-top: auto;
  display: inline-block;
  background: var(--tla-gold);
  color: var(--tla-white);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--tla-radius-button);
  text-decoration: none;
  text-align: center;
  transition: background 0.18s ease;
}
.course-card__cta:hover { background: var(--tla-gold-hover); }

/* Tutor card */
.tutor-card {
  background: var(--tla-white);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tutor-card__img { aspect-ratio: 4/5; overflow: hidden; background: var(--tla-cream); }
.tutor-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tutor-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.tutor-card__name { font-size: 22px; color: var(--tla-text); margin: 0; font-weight: 600; }
.tutor-card__role {
  display: inline-block;
  background: var(--tla-cream);
  color: var(--tla-text);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-start;
  font-weight: 600;
}
.tutor-card__bio { color: var(--tla-text-body); font-size: 14px; line-height: 1.55; margin: 0; }
.tutor-card__stat { font-size: 13px; color: var(--tla-gold); font-weight: 600; margin-top: 4px; }

/* Review card */
.review-card {
  background: var(--tla-white);
  border: 1px solid var(--tla-border);
  border-radius: var(--tla-radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.review-card__stars { color: var(--tla-gold); letter-spacing: 2px; font-size: 16px; }
.review-card__quote { color: var(--tla-text); font-size: 16px; line-height: 1.55; margin: 0; }
.review-card__meta { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-weight: 700; color: var(--tla-text); }
.review-card__score { font-size: 12px; color: var(--tla-text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--tla-border);
  padding: 20px 0;
}
.faq-item summary {
  font-size: 18px;
  color: var(--tla-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--tla-gold); font-size: 24px; line-height: 1; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item__answer { margin-top: 12px; color: var(--tla-text-body); line-height: 1.6; }

/* CTA banner */
.cta-banner {
  background: var(--tla-navy);
  color: var(--tla-white);
  padding: 80px 40px;
  border-radius: var(--tla-radius-card);
  text-align: center;
}
.cta-banner__title { color: var(--tla-white); font-size: clamp(28px, 3.5vw, 42px); margin: 0 0 16px; line-height: 1.15; font-weight: 600; }
.cta-banner__sub { color: rgba(255,255,255,0.7); font-size: 17px; margin: 0 auto 28px; max-width: 540px; }

/* ProVisas split */
.provisas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--tla-radius-card);
  overflow: hidden;
  border: 1px solid var(--tla-border);
}
.provisas-split__left { background: var(--tla-navy); color: var(--tla-white); padding: 48px; }
.provisas-split__right { background: var(--tla-cream); padding: 48px; }
.provisas-split h2 { font-size: 30px; color: var(--tla-white); margin: 0 0 16px; font-weight: 600; }
.provisas-split__right h2 { color: var(--tla-text); }
.provisas-split p { line-height: 1.6; margin: 0 0 20px; }
@media (max-width: 768px) { .provisas-split { grid-template-columns: 1fr; } }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--tla-text-muted);
}
.breadcrumb a { color: var(--tla-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--tla-gold); }
.breadcrumb__sep { margin: 0 8px; color: var(--tla-border); }
.breadcrumb { display: none !important; }

/* TLA form modal (used by js/hs-forms.js for assessment / employer CTAs) */
html.tla-hs-modal-open { overflow: hidden; }
.tla-hs-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.tla-hs-modal[hidden] { display: none; }
.tla-hs-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 20, 22, 0.66);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.tla-hs-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.tla-hs-modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px; line-height: 1;
  background: transparent; border: 0; cursor: pointer;
  font-size: 28px; color: var(--tla-text-muted, #666);
  border-radius: 50%;
}
.tla-hs-modal__close:hover { color: var(--tla-text, #111); background: rgba(0,0,0,0.04); }
.tla-hs-modal__title {
  margin: 0 0 20px; font-size: 22px; font-weight: 600;
  color: var(--tla-text, #1e1e1f); padding-right: 32px;
}
.tla-hs-modal__form form { margin: 0; }
.tla-hs-modal__form .form_block { width: 100%; }

/* Wider dialog when showing the Google Calendar booking iframe */
.tla-hs-modal.is-calendar .tla-hs-modal__dialog { max-width: 820px; padding: 32px 28px 24px; }
.tla-hs-modal.is-calendar .tla-hs-modal__form { margin-top: 12px; }

/* Google Calendar booking — wrapper contains centre picker + note + iframe */
.tla-cal-wrapper { display: flex; flex-direction: column; gap: 12px; }
.tla-cal-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.tla-cal-pill {
  flex: 1 1 auto; min-width: 100px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--tla-border, #e5e5e5);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  color: var(--tla-text, #1e1e1f);
  text-align: left;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.tla-cal-pill:hover { border-color: var(--tla-gold, #1032cf); }
.tla-cal-pill.is-active {
  border-color: var(--tla-gold, #1032cf);
  background: rgba(16, 50, 207, 0.06);
  box-shadow: inset 0 0 0 1px var(--tla-gold, #1032cf);
}
.tla-cal-pill__label { font-size: 14px; font-weight: 600; }
.tla-cal-pill__detail { font-size: 11px; color: var(--tla-text-muted, #888); font-family: var(--tla-font-mono, inherit); }
.tla-cal-note {
  margin: 0;
  padding: 10px 14px;
  background: var(--tla-green-soft, #ebf5e8);
  border-left: 3px solid var(--tla-green, #2db742);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: #134d1c;
}

/* Google Calendar appointment scheduling iframe — used inline (contact.html) and in modal */
.tla-cal-iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: 8px;
  background: var(--tla-cream, #fafaf8);
}

@media (max-width: 520px) {
  .tla-hs-modal { padding: 12px; }
  .tla-hs-modal__dialog { padding: 32px 20px 24px; }
  .tla-hs-modal.is-calendar .tla-hs-modal__dialog { padding: 32px 16px 20px; }
  .tla-cal-iframe { min-height: 560px; }
}


/* Footer socials row */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer__socials-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-right: 4px;
}
.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .18s, border-color .18s, background .18s;
}
.footer__social-icon:hover {
  color: var(--tla-white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
}

/* Footer bottom bar */
.footer__provisas-bar {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer__provisas-bar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer__provisas-bar a:hover { color: var(--tla-white); }

/* Hero grid — text left, video right. Slightly wider video than default 3:2. */
.hero-grid {
  display: grid;
  grid-template-columns: 11fr 9fr;
  gap: 16px;
  align-items: stretch;
}
.hero-video-col {
  display: flex;
  align-items: stretch;
}
.hero-video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: var(--_sizes---image--image-radius);
  overflow: clip;
}
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-video { aspect-ratio: 9 / 16; height: auto; max-height: 70vh; }
}

/* Locations / maps */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.location-card {
  background: var(--tla-white, #fff);
  border: 1px solid var(--tla-border, rgba(0,0,0,0.08));
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.location-card__map {
  aspect-ratio: 16 / 10;
  background: #eee;
}
.location-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.location-card__body {
  padding: 24px 28px 28px;
}
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* About page — classroom moment (Rupinder candid + copy) */
.classroom-moment {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: center;
}
.classroom-moment__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .classroom-moment { grid-template-columns: 1fr; gap: 24px; }
}

/* Testimonial videos — portrait 3-up grid + shorter success stories below */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}
.testimonial-video {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-video__player {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #111;
  border-radius: 12px;
  display: block;
}
.testimonial-video__caption {
  font-size: 14px;
  color: var(--tla-text-muted);
  text-align: center;
}
.testimonial-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-story {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testimonial-story__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #111;
  border-radius: 12px;
  display: block;
}
.testimonial-story__caption {
  font-size: 13px;
  color: var(--tla-text-muted);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-video__player { aspect-ratio: 9 / 16; max-height: 70vh; }
  .testimonial-stories { grid-template-columns: 1fr; max-width: 420px; }
}

/* Instagram feed */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.0) 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.ig-tile:hover .ig-tile__overlay { opacity: 1; }
.ig-tile__caption {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ig-tile__overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%); }
  .ig-tile__caption { font-size: 11px; -webkit-line-clamp: 2; }
}

/* =====================================================================
   GREEN ACCENT PASS v1 — 2026-04-19
   All brand-green (#2db742) usage lives in this single block so the
   entire pass reverts cleanly by deleting everything below this header.
   Semantic uses only: success, verified trust, "visa secured" wins.
   Markup-side additions:
     - index.html — `is-verified` modifier on "Verified Google Reviews" eyebrow
     - courses/*.html — `check-list` class on curriculum <ul>
     - for-employers.html — `check-list` class on "What's included" <ul>
   Remove those classes (they no-op when this block is gone) to fully revert.
   ===================================================================== */
:root {
  --tla-green-hover: #26a339;
  --tla-green-soft:  #ebf5e8;
}

/* 1. Review card "Google Review" score label — verified trust marker */
.review-card__score {
  color: var(--tla-green);
  font-weight: 600;
}

/* 2. Score-badge visa pill — visa secured = success on Results/Homepage */
.score-badge__visa {
  background: rgba(45, 183, 66, 0.18);
  color: #8ee29e;
}

/* 3. Verified-eyebrow prefix dot — `<div class="eyebrow is-verified">…</div>` */
.eyebrow.is-verified::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--tla-green);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}

/* 4. Check-mark bullet list — `<ul class="check-list">` */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--tla-green-soft) no-repeat center / 13px 13px
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232db742' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  border: 1px solid var(--tla-green);
  border-radius: 5px;
}

/* 5. Form success message — semantic success */
.form_success-message.w-form-done,
.w-form-done {
  background: var(--tla-green-soft);
  border: 1px solid var(--tla-green);
  border-radius: 10px;
  padding: 16px 18px 16px 48px;
  color: #134d1c;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.form_success-message.w-form-done::before,
.w-form-done::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: var(--tla-green) no-repeat center / 12px 12px
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 8 7 12 13 4'/></svg>");
  border-radius: 50%;
}
/* === END GREEN ACCENT PASS v1 === */
