/* ============================================================
   EK Marine Service – Performant Static Site
   Design: Nautical Theme – Navy / Marine Blue / Gold
   ============================================================ */

:root {
  --navy:    #0a1f3c;
  --blue:    #0d5ea8;
  --blue-lt: #1a7ed4;
  --gold:    #e8a020;
  --gold-lt: #f5c050;
  --white:   #ffffff;
  --gray-10: #f4f6f9;
  --gray-20: #e8ecf2;
  --gray-60: #6b7a8e;
  --gray-90: #1e2a38;
  --text:    #2d3748;
  --radius:  6px;
  --shadow:  0 4px 24px rgba(10,31,60,.12);
  --trans:   .25s ease;
}

/* ---------- Reset & Base ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ------------------------------------- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex   { display: flex; }
.center { text-align: center; }
.items-center { align-items: center; }
.gap-2  { gap: 1rem; }

/* ---------- Header / Navigation --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: .7rem;
  color: var(--white); font-size: 1.1rem; font-weight: 700;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.logo-text span { color: var(--gold); }

.site-nav { display: flex; gap: .25rem; align-items: center; }
.site-nav a {
  color: rgba(255,255,255,.85);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  font-size: .9rem;
  transition: background var(--trans), color var(--trans);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a { display: flex; align-items: center; gap: .3rem; }
.nav-dropdown > a::after { content: '▾'; font-size: .7rem; opacity: .8; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  min-width: 220px;
  padding: .5rem 0;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .88rem;
  border-radius: 0;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.08); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; transition: var(--trans);
}

/* ---------- Hero Slider ----------------------------------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  background: var(--navy);
}
.hs-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hs-slide.active { opacity: 1; z-index: 1; }
.hs-slide.active .hs-content > * {
  animation: hs-fadeup .9s cubic-bezier(.4,0,.2,1) both;
}
.hs-slide.active .hs-eyebrow  { animation-delay: .2s; }
.hs-slide.active .hs-title    { animation-delay: .4s; }
.hs-slide.active .hs-sub      { animation-delay: .55s; }
.hs-slide.active .hs-buttons  { animation-delay: .7s; }
@keyframes hs-fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,31,60,.35) 0%,
    rgba(10,31,60,.55) 50%,
    rgba(10,31,60,.72) 100%
  );
}
.hs-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}
.hs-eyebrow {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .8rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.hs-title {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 1.05;
  text-shadow: 1px 1px 6px rgba(0,0,0,.6);
  margin-bottom: .7rem;
  text-transform: uppercase;
}
.hs-sub {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: clamp(.95rem, 2.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: .1em;
  opacity: .92;
  text-shadow: .5px .5px 3px rgba(0,0,0,.5);
  margin-bottom: 2.2rem;
  max-width: 600px;
}
.hs-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hs-btn {
  font-family: 'Oswald', 'Segoe UI', sans-serif;
  font-size: 1rem; font-weight: 500; letter-spacing: .06em;
  padding: .75rem 2.2rem;
  border-radius: 3px;
  cursor: pointer; border: none;
  text-decoration: none;
  transition: all .2s ease;
  text-transform: uppercase;
}
.hs-btn-primary {
  background: rgba(0,0,0,.32);
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.hs-btn-primary:hover { background: rgba(0,0,0,.52); border-color: #fff; }
.hs-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.hs-btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* Arrows */
.hs-arrow {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff; font-size: 1.4rem;
  cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.hs-arrow:hover { background: rgba(0,0,0,.58); }
.hs-prev { left: 1.8rem; }
.hs-next { right: 1.8rem; }

/* Dots */
.hs-dots {
  position: absolute; bottom: 1.8rem; left: 50%; z-index: 10;
  transform: translateX(-50%);
  display: flex; gap: .6rem;
}
.hs-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.hs-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ---------- Hero (page-hero sub-pages) -------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5c 60%, #0a3a6e 100%);
  color: var(--white);
  padding: 7rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff08" d="M0,96L80,112C160,128,320,160,480,160C640,160,800,128,960,112C1120,96,1280,96,1360,96L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"/></svg>') bottom/cover no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  padding: .3rem .9rem; border-radius: 50px;
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.15rem; opacity: .9; margin-bottom: 2rem; }
.hero-badge {
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  width: 240px; height: 240px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  font-size: .85rem; line-height: 1.4;
}
.hero-badge strong { font-size: 1.4rem; color: var(--gold); display: block; margin-bottom: .3rem; }

/* ---------- Buttons --------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline  { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue     { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-lt); }
.btn-sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ---------- Cards ----------------------------------------- */
.card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10,31,60,.08);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10,31,60,.14); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--gray-20); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gray-60);
}
.card-body { padding: 1.4rem; }
.card-badge {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: .5rem;
}
.card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.card-price {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin: .6rem 0 1rem;
}
.card-price .from { font-size: .8rem; font-weight: 400; color: var(--gray-60); }

/* ---------- Section Headers ------------------------------- */
.section-header { margin-bottom: 3rem; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .6rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--gray-60); max-width: 580px; font-size: 1.05rem; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 48px; height: 4px;
  background: var(--gold); border-radius: 2px;
  margin: .75rem 0;
}
.divider.center { margin: .75rem auto; }

/* ---------- Feature Boxes --------------------------------- */
.feature-box {
  padding: 2rem;
  border-radius: 10px;
  background: var(--gray-10);
  border-left: 4px solid var(--blue);
  transition: border-color var(--trans), background var(--trans);
}
.feature-box:hover { background: #ecf3fb; border-color: var(--gold); }
.feature-icon {
  font-size: 2.2rem; margin-bottom: 1rem;
}
.feature-box h4 { margin-bottom: .5rem; color: var(--navy); }

/* ---------- Brand Logos ----------------------------------- */
.partner-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: center;
  padding: 2rem 0;
}
.partner-logo {
  background: var(--white);
  border: 1px solid var(--gray-20);
  border-radius: 8px;
  padding: .6rem 1.2rem;
  font-weight: 700; font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: .03em;
  transition: box-shadow var(--trans);
  display: flex; align-items: center; justify-content: center;
  min-width: 100px; min-height: 56px;
}
.partner-logo img {
  max-height: 44px; max-width: 120px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.partner-logo:hover { box-shadow: 0 4px 16px rgba(13,94,168,.15); }

/* ---------- CTA Banner ------------------------------------ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p  { opacity: .85; margin-bottom: 1.8rem; font-size: 1.05rem; }
.cta-buttons   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact Form ---------------------------------- */
.contact-form { max-width: 600px; }
.form-group   { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .9rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--gray-20);
  border-radius: var(--radius);
  font-size: .95rem; font-family: inherit;
  transition: border-color var(--trans), box-shadow var(--trans);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,94,168,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---------- Info List -------------------------------------- */
.info-list li {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-20);
}
.info-list li:last-child { border-bottom: none; }
.info-list .info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.info-list .info-label { font-weight: 600; font-size: .85rem; color: var(--gray-60); margin-bottom: .15rem; }
.info-list .info-val   { color: var(--text); }

/* ---------- Testimonials ---------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: 0 2px 16px rgba(10,31,60,.07);
  border-top: 4px solid var(--gold);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .8rem; }
.testimonial-card p { color: var(--gray-60); font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; font-size: .9rem; }

/* ---------- Footer ---------------------------------------- */
.site-footer {
  background: var(--gray-90);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .9rem; margin-top: .8rem; line-height: 1.6; }
.footer-col h5 {
  color: var(--white); font-size: .9rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a { display: block; padding: .25rem 0; font-size: .9rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.social-row { display: flex; gap: .7rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background var(--trans);
}
.social-link:hover { background: var(--gold); color: var(--navy); }

/* ---------- Breadcrumb ------------------------------------- */
.breadcrumb {
  background: var(--gray-10);
  padding: .75rem 0;
  font-size: .85rem;
  color: var(--gray-60);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; }

/* ---------- Page Hero ------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5c 100%);
  color: var(--white);
  padding: 4rem 0;
}
.page-hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--gold-lt);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .8rem;
  border-radius: 50px; margin-bottom: 1rem;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p   { opacity: .85; max-width: 600px; font-size: 1.05rem; }

/* ---------- Product Detail Lists -------------------------- */
.product-card {
  display: flex;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10,31,60,.08);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(10,31,60,.13); }
.product-card-img {
  width: 200px; flex-shrink: 0;
  background: var(--gray-10);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.product-card-body { padding: 1.5rem; flex: 1; }
.product-card-body h3 { margin-bottom: .4rem; }
.product-card-body .price { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: .5rem 0 .8rem; }
.product-card-body p { color: var(--gray-60); font-size: .9rem; margin-bottom: .8rem; }

/* ---------- Table ----------------------------------------- */
.specs-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.specs-table th {
  background: var(--navy); color: var(--white);
  padding: .75rem 1rem; text-align: left; font-weight: 600;
}
.specs-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--gray-20); }
.specs-table tr:nth-child(even) td { background: var(--gray-10); }

/* ---------- Alert / Notice -------------------------------- */
.notice {
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-size: .9rem;
  margin: 1.5rem 0;
}
.notice-info  { background: #e8f4fd; border-color: var(--blue); color: #0a3d7a; }
.notice-gold  { background: #fdf5e6; border-color: var(--gold); color: #7a4a00; }

/* ---------- Responsive ------------------------------------ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-badge { display: none; }
}
@media (max-width: 768px) {
  /* Slider mobile */
  .hero-slider { height: 70vh; min-height: 420px; }
  .hs-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hs-sub { font-size: .92rem; margin-bottom: 1.6rem; }
  .hs-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .hs-prev { left: .8rem; }
  .hs-next { right: .8rem; }
  .hs-btn { font-size: .85rem; padding: .6rem 1.4rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--navy); padding: 1rem; gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .site-nav.open { display: flex; }
  .site-nav a { border-radius: 0; padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .dropdown-menu { position: static; display: none; border: none; padding: 0 0 0 1rem; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-toggle { display: block; }
  .header-inner { flex-wrap: wrap; position: relative; }
  .site-header { position: sticky; }
  .product-card { flex-direction: column; }
  .product-card-img { width: 100%; height: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .partner-row { gap: .8rem; }
  .hs-buttons { flex-direction: column; gap: .6rem; }
}

/* ---------- Utilities ------------------------------------- */
.text-gold  { color: var(--gold); }
.text-blue  { color: var(--blue); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--gray-60); }
.bg-gray    { background: var(--gray-10); }
.bg-navy    { background: var(--navy); color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.tag {
  display: inline-block;
  background: var(--gray-20); color: var(--navy);
  border-radius: 50px; padding: .2rem .8rem;
  font-size: .78rem; font-weight: 600;
}
.tag-blue { background: #dbeeff; color: var(--blue); }
