/*
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:wght@600&display=swap');
p:last-child{
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --color-deep-navy:        #011D61;
  --color-electric-blue:    #1C58F2;
  --color-azure-spark:      #3C95FD;
  --color-sky-glaze:        #7DA5FF;
  --color-sky-glaze-20:     rgba(125, 165, 255, 0.20);
  --color-sky-glaze-50:     rgba(125, 165, 255, 0.50);

  --color-action-yellow:    #FFB428;
  --color-action-yellow-40: rgba(255, 180, 40, 0.40);
  --color-premium-orange:   #FF7700;

  /* Neutrals */
  --color-neutral-1:   #172343;
  --color-neutral-2:   #525779;
  --color-neutral-3:   #878BA3;
  --color-neutral-4:   #A2A7C4;
  --color-neutral-5:   #C5C9E0;
  --color-neutral-6:   #EEF2F9;
  --color-white-ess:   #FCFCFE;
  --color-white:       #FFFFFF;

  /* Label colors */
  --color-label-trending:  #F37867;
  --color-label-premium:   #FFD67E;
  --color-label-hiring:    #A967FF;
  --color-label-distance:  #CCE0FF;

  /* Section backgrounds */
  --bg-white:     var(--color-white-ess);
  --bg-tint:      var(--color-neutral-6);   /* #EEF2F9 for Jobs Near Me */
  --bg-navy:      var(--color-deep-navy);

  /* Hero gradient */
  --gradient-hero: linear-gradient(90deg, var(--color-deep-navy) 0%, var(--color-electric-blue) 100%);

  /* Typography */
  --font-heading:  "Poppins", sans-serif;
  --font-body:     "Inter", sans-serif;

  --text-h1:       clamp(1.25rem, 3.5vw, 1.75rem);
  --text-h2:       clamp(1.25rem, 3vw, 1.75rem);
  --text-h3:       clamp(1rem, 2.5vw, 1.25rem);
  --text-body-lg:  1rem;
  --text-body:     0.875rem;
  --text-caption:  0.75rem;
  --text-salary:   1.125rem;

  /* Spacing */
  --sp-4:   0.25rem;
  --sp-5:   0.3125rem;
  --sp-8:   0.5rem;
  --sp-10:  0.625rem;
  --sp-14:  0.875rem;
  --sp-15:  0.9375rem;
  --sp-20:  1.25rem;
  --sp-30:  1.875rem;
  --sp-40:  2.5rem;
  --sp-48:  3rem;
  --sp-60:  3.75rem;
  --sp-80:  5rem;

  /* Radii */
  --r-4:    0.25rem;
  --r-10:   0.625rem;
  --r-15:   0.9375rem;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-card:  0 4px 20px rgba(0,0,0,0.06);
  --shadow-input: 0 5px 20px rgba(0,0,0,0.05);
  --shadow-hover: 0 8px 28px rgba(28,88,242,0.12);

  /* Layout */
  --container-max: 1200px;
  --page-px:       1.5rem;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  color: var(--color-neutral-2);
  background: var(--bg-white);
  line-height: 1.5;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* --------------------------------------------------------------------------
   3. CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--page-px);
  padding-right: var(--page-px);
}

/* --------------------------------------------------------------------------
   4. FULL-WIDTH SECTION WRAPPERS
   Each section spans 100vw; inner .container caps at 1200px
   -------------------------------------------------------------------------- */
.section-wrap {
  width: 100%;
  padding-top: var(--sp-48);
  padding-bottom: var(--sp-48);
}

.section-wrap--white   { background: var(--bg-white); }
.section-wrap--tint    { background: var(--bg-tint); }
.section-wrap--subscribe {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-60);
  padding-bottom: var(--sp-60);
}

/* --------------------------------------------------------------------------
   5. HERO BLOCK — full-width gradient background
   -------------------------------------------------------------------------- */
.hero-block {
  width: 100%;
  background: var(--gradient-hero);
}

/* Header */
.site-header { padding-top: var(--sp-30); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--sp-10);
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.5rem; }

.logo-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.25rem; height: 2rem;
  background: rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.logo-dot { width: 0.45rem; height: 0.45rem; background: #fff; border-radius: 50%; }
.logo-wordmark {
  font-family: var(--font-heading);
  font-weight: 600; font-size: 1.25rem;
  color: #fff; letter-spacing: -0.01em;
}

/* Header icons */
.header-icons { display: flex; align-items: center; gap: var(--sp-20); }

.icon-btn {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
  border-radius: var(--r-10);
  transition: background 0.15s;
}
.icon-btn:hover, .icon-btn:focus-visible {
  background: rgba(255,255,255,0.15);
  outline: 2px solid var(--color-sky-glaze); outline-offset: 2px;
}

/* Header divider */
.header-divider-wrap { padding-bottom: 0; }
.header-divider {
  height: 1px;
  background: linear-gradient(90deg,rgba(255,255,255,0.6),rgba(255,255,255,0));
  mix-blend-mode: overlay;
}

/* Hero content */
.hero-search {
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-40);
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600; font-size: var(--text-h1);
  color: #fff; line-height: 1.1; text-align: center;
}
.hero-subtitle {
  font-size: var(--text-body); color: #DEE7FF;
  line-height: 1.4; text-align: center;
}
.hero-subtitle strong { font-weight: 600; }

/* Search row — 3-col grid desktop, stacked mobile */
.search-row {
  display: flex;
  flex-direction: column;
  gap: var(--sp-15);
  margin-top: var(--sp-10);
}

.header-search .input-field {
  display: flex; align-items: center; gap: var(--sp-10);
  height: 3.375rem;
  padding: 0 var(--sp-14);
  background: var(--color-white-ess);
  border: 1.4px solid var(--color-neutral-6);
  border-radius: var(--r-10);
  box-shadow: var(--shadow-input);
}
.input-icon  { color: var(--color-neutral-4); font-size: 0.95rem; flex-shrink: 0; }
.header-search .input-text  {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: var(--text-body-lg);
  color: var(--color-neutral-1);
}
.header-search .input-text::placeholder { color: var(--color-neutral-4); }

/* Filter tags */
.filter-tags {
  display: flex; gap: var(--sp-5);
  flex-wrap: wrap; align-items: center;
  margin-top: var(--sp-5);
}
.filter-tag {
  display: flex; align-items: center; gap: var(--sp-10);
  flex: 1 0 0; min-width: 0;
  padding: var(--sp-8) var(--sp-14) var(--sp-8) var(--sp-10);
  background: var(--color-white-ess);
  border-radius: var(--r-10);
  font-family: var(--font-body); font-size: var(--text-body);
  color: var(--color-neutral-2); white-space: nowrap;
  transition: background 0.15s;
}
.filter-tag:hover { background: #f0f2fa; }
.filter-tag--icon-only {
  flex: 0 0 2.25rem; width: 2.25rem; height: 2.25rem;
  padding: 0; justify-content: center;
  border: 1.4px solid var(--color-neutral-6);
  box-shadow: var(--shadow-input);
}
.tag-icon { font-size: 0.85rem; color: var(--color-neutral-2); }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn-primary {
  display: flex; align-items: center; justify-content: center;
  height: 3.5rem;
  padding: 0 var(--sp-60);
  background: var(--color-action-yellow);
  color: var(--color-white-ess);
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--text-body-lg); line-height: 1;
  border-radius: var(--r-15); border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover    { background: #f5aa20; }
.btn-primary:active   { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* Search button — full on mobile, auto on desktop */
.btn-search {
  width: 100%;
  height: 3.375rem; /* match input */
  border-radius: var(--r-10);
  padding: 0 var(--sp-30);
}

/* Subscribe button */
.btn-subscribe { width: 100%; max-width: 22rem; margin-top: 0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: var(--sp-10);
  padding: var(--sp-10) var(--sp-20);
  background: var(--color-sky-glaze-20);
  border-radius: var(--r-pill);
  color: var(--color-azure-spark);
  font-weight: 600; font-size: var(--text-body-lg); line-height: 1;
  transition: background 0.15s;
}
.btn-ghost:hover { background: rgba(125,165,255,0.32); }
.btn-ghost__arrow { font-size: 0.5rem; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 1.875rem;
  border: 3px solid var(--color-azure-spark);
  border-radius: var(--r-10);
  color: var(--color-azure-spark);
  font-weight: 600; font-size: var(--text-body-lg); line-height: 1;
  background: transparent;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--color-azure-spark); color: #fff; }

.btn-outline-full {
  display: flex; align-items: center; justify-content: center;
  height: 3.5rem;
  padding: 0 var(--sp-60);
  border: 3px solid var(--color-azure-spark);
  border-radius: var(--r-15);
  color: var(--color-azure-spark);
  font-weight: 600; font-size: var(--text-body-lg); line-height: 1;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.btn-outline-full:hover { background: var(--color-azure-spark); color: #fff; }

/* --------------------------------------------------------------------------
   7. SECTION HEADER
   -------------------------------------------------------------------------- */
.section-header { margin-bottom: var(--sp-20); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 600; font-size: var(--text-h3);
  color: var(--color-neutral-1); line-height: 1.1;
}
.section-title--lead {
  font-family: var(--font-body);
  font-weight: 700; font-size: var(--text-salary); line-height: 1.5;
}

.show-all-wrap {
  display: flex; justify-content: center;
  margin-top: var(--sp-20);
}

/* --------------------------------------------------------------------------
   8. CARDS GRID
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-20);
}

/* --------------------------------------------------------------------------
   9. JOB CARD
   -------------------------------------------------------------------------- */
.job-card {
  background: var(--color-white);
  border-radius: var(--r-10);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.15s, transform 0.15s;
}
.job-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.job-card--premium { border: 1px solid var(--color-action-yellow-40); }

/* Label badge */
.job-card__label {
  display: inline-flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) 0.75rem var(--sp-4) 0.375rem;
  border-radius: 0 0 var(--r-10) 0;
  font-size: var(--text-caption); font-weight: 400; line-height: 1.4;
}
.label-icon { font-size: 0.58rem; }

.job-card__label--trending  { background: var(--color-label-trending); color: #fff; }
.job-card__label--premium   { background: var(--color-label-premium); color: var(--color-premium-orange); }
.job-card__label--hiring    { background: var(--color-label-hiring); color: #fff; }
.job-card__label--distance  { background: var(--color-label-distance); color: var(--color-electric-blue); }

/* Card body */
.job-card__body {
  display: flex; flex-direction: column; gap: var(--sp-15);
  padding: var(--sp-14) var(--sp-20) var(--sp-20);
}

.job-card__top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: var(--sp-8);
  min-height: 4.3125rem;
}
.job-card__info {
  display: flex; flex-direction: column; gap: var(--sp-5);
  justify-content: center; flex: 1; min-width: 0;
}
.job-card__title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-h3); color: var(--color-neutral-1); line-height: 1.1;
}
.job-card__company { font-size: var(--text-body); color: var(--color-neutral-1); line-height: 1.4; }

/* Company logo placeholder */
.company-logo {
  flex-shrink: 0; width: 6.5625rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-neutral-6);
  border: 1px dashed var(--color-sky-glaze);
  border-radius: 1.125rem; overflow: hidden;
}
.company-logo--filled {
  background: linear-gradient(135deg,#e8eeff 0%,#d0dbff 100%);
}
.company-logo__abbr {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 0.75rem; color: var(--color-electric-blue); letter-spacing: 0.05em;
}
.company-logo__icon { color: var(--color-neutral-3); font-size: 1.3rem; }

/* Salary */
.job-card__salary {
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-salary); color: var(--color-electric-blue); line-height: 1.5;
}

/* Meta items */
.job-card__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: flex-end;
}
.meta-item {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: var(--text-body); color: var(--color-neutral-2);
  line-height: 1.4; white-space: nowrap;
}
.meta-icon { font-size: 0.7rem; color: var(--color-neutral-3); }

/* Skills */
.job-card__skills {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-10);
}
.skills-label { font-size: var(--text-body); color: var(--color-neutral-4); }
.skill-tag {
  background: var(--color-neutral-6); color: var(--color-deep-navy);
  font-size: var(--text-body); line-height: 1.4;
  padding: 0.125rem 0.625rem; border-radius: var(--r-4);
}

/* Footer row */
.job-card__footer {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.job-card__time { font-size: var(--text-caption); color: var(--color-neutral-4); line-height: 1.4; }

/* --------------------------------------------------------------------------
   10. INSIGHTS (Today's Career Trends)
   -------------------------------------------------------------------------- */
.insights-title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-h2); color: var(--color-neutral-1);
  line-height: 1.2; text-align: center;
  margin-bottom: var(--sp-30);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-20);
}

.insight-card {
  background: var(--color-white-ess);
  border: 1px solid var(--color-neutral-5);
  border-radius: var(--r-10);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.insight-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.insight-card__image {
  position: relative; height: 12.5rem; overflow: hidden; flex-shrink: 0;
}
.insight-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insight-card__badge {
  position: absolute; top: 0; left: 0;
  padding: var(--sp-4) 0.75rem;
  border-radius: 0 0 var(--r-10) 0;
  font-family: var(--font-body); font-weight: 500;
  font-size: var(--text-body); color: #fff; line-height: 1.4;
  white-space: nowrap;
}
.insight-card__badge--purple { background: #9376FF; }
.insight-card__badge--green  { background: #68DD8F; color: var(--color-neutral-1); }
.insight-card__badge--blue   { background: var(--color-azure-spark); }

.insight-card__content {
  display: flex; flex-direction: column; gap: var(--sp-10);
  padding: var(--sp-20); flex: 1;
}
.insight-card__title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-h3); color: var(--color-neutral-1); line-height: 1.1;
}
.insight-card__date { display: block; font-size: var(--text-caption); color: var(--color-neutral-4); line-height: 1.4; }
.insight-card__excerpt { font-size: var(--text-body-lg); color: var(--color-neutral-2); line-height: 1.5; flex: 1; }

/* --------------------------------------------------------------------------
   11. SUBSCRIBE BLOCK
   -------------------------------------------------------------------------- */

/* Decorative rotated squares — anchored relative to the full-width section */
.subscribe-shape {
  position: absolute; border-radius: 19.6px; transform: rotate(-57deg);
}
.subscribe-shape--left {
  width: 5.5rem; height: 5.5rem;
  background: var(--color-azure-spark);
  left: max(0px, calc(50% - 660px));
  top: 4rem;
}
.subscribe-shape--right {
  width: 4.8rem; height: 4.8rem;
  background: var(--color-sky-glaze);
  right: max(0px, calc(50% - 660px));
  top: 6rem;
  border-radius: 17px;
}

.subscribe-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: var(--sp-20);
  text-align: center;
}

.subscribe-logo { display: flex; align-items: center; gap: 0.5rem; }
.subscribe-logo__pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 4rem; height: 2.5rem;
  background: var(--color-electric-blue);
  border-radius: var(--r-pill);
}
.subscribe-logo__dot { width: 0.55rem; height: 0.55rem; background: #fff; border-radius: 50%; }
.subscribe-logo__text {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.5rem; color: var(--color-neutral-1);
}

.subscribe-title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-h2); color: var(--color-neutral-1); line-height: 1.2;
}
.subscribe-subtitle {
  font-size: var(--text-body); color: var(--color-neutral-1); line-height: 1.4;
  max-width: 26rem;
}

/* --------------------------------------------------------------------------
   12. FOOTER — full deep-navy background
   -------------------------------------------------------------------------- */
.site-footer { width: 100%; background: var(--bg-navy); }

.footer-inner {
  display: flex; flex-direction: column; gap: var(--sp-20);
  padding-top: var(--sp-30); padding-bottom: var(--sp-20);
}

.footer-logo { display: flex; align-items: center; gap: 0.4rem; }
.footer-logo__pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 1.875rem;
  background: rgba(0,85,255,0.25);
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(125,165,255,0.4);
}
.footer-logo__dot { width: 0.4rem; height: 0.4rem; background: var(--color-white-ess); border-radius: 50%; }
.footer-logo__text {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.1rem; color: var(--color-white-ess);
}

.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-20); }
.footer-nav__group { display: flex; flex-direction: column; gap: var(--sp-10); }
.footer-nav__heading {
  font-family: var(--font-body); font-weight: 400;
  font-size: var(--text-body-lg); color: var(--color-white-ess); line-height: 1.5;
}
.footer-nav__divider {
  height: 1px; background: var(--color-sky-glaze-50); margin-bottom: var(--sp-4);
}
.footer-nav__link {
  font-size: var(--text-body); color: var(--color-neutral-5);
  line-height: 1.4; display: block;
  transition: color 0.15s;
}
.footer-nav__link:hover { color: var(--color-white-ess); }

.footer-bottom { display: flex; flex-direction: column; gap: var(--sp-10); }
.footer-bottom__divider { height: 1px; background: var(--color-sky-glaze-20); }
.footer-bottom__row {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.footer-copyright {
  font-size: var(--text-caption); color: var(--color-sky-glaze-50); text-align: center;
}
.footer-back-top {
  position: absolute; right: 0; bottom: -0.25rem;
  width: 2.75rem; height: 2.75rem;
  background: var(--color-electric-blue);
  border-radius: var(--r-10);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  transition: background 0.15s;
}
.footer-back-top:hover { background: var(--color-azure-spark); }

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* 480px — phablet: 2-col cards */
@media (min-width: 480px) {
  .cards-grid    { grid-template-columns: repeat(2, 1fr); }
}

/* 640px — tablet: search row 3-col */
@media (min-width: 640px) {
  .search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: var(--sp-10);
    align-items: stretch;
  }
  .btn-search {
    width: auto; min-width: 9rem; height: auto;
    border-radius: var(--r-10); padding: 0 1.75rem;
  }
}

/* 768px — tablet landscape */
@media (min-width: 768px) {
  :root { --page-px: 2rem; }

  .section-wrap { padding-top: var(--sp-60); padding-bottom: var(--sp-60); }

  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav    { grid-template-columns: repeat(4, 1fr); }

  .filter-tags { flex-wrap: nowrap; }
}

/* 1024px — desktop */
@media (min-width: 1024px) {
  :root { --page-px: 2.5rem; }

  .cards-grid    { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: repeat(3, 1fr); }

  .section-wrap { padding-top: var(--sp-80); padding-bottom: var(--sp-80); }
  .section-wrap--subscribe { padding-top: 5rem; padding-bottom: 5rem; }
}

/* 1280px+ — subscribe shapes stay pinned to container edge */
@media (min-width: 1280px) {
  .subscribe-shape--left  { left: calc(50% - 660px); }
  .subscribe-shape--right { right: calc(50% - 660px); }
}

/* --------------------------------------------------------------------------
   14. ACCESSIBILITY & UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--color-azure-spark); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
