:root {
  --pathway-green: #4F6249;
  --pathway-green-deep: #3A4A36;
  --pathway-green-soft: #6F8268;
  --coastal-sage: #8B9D82;
  --coastal-sage-light: #B8C4B0;
  --northern-slate: #2A2F33;
  --northern-slate-soft: #3F464B;
  --river-stone: #9A8568;
  --river-stone-deep: #7A6850;
  --sandstone: #C9B89C;
  --sandstone-light: #E0D3BE;
  --linen: #F5F0E6;
  --linen-deep: #EBE3D2;
  --mist: #E8E2D2;
  --paper: #FBF8F1;
  --stone-grey: #6E6A60;
  --soft-grey: #A8A398;
  --morning-sun: #D4A75C;
  --rust: #B8643F;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', Menlo, Consolas, monospace;

  --base-size: 19px;
  --max-content: 760px;
  --max-wide: 1200px;
  --header-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--base-size);
  line-height: 1.7;
  color: var(--northern-slate);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pathway-green-deep); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--pathway-green); }
strong { font-weight: 600; color: var(--northern-slate); }
em { font-style: italic; color: var(--river-stone-deep); }

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--northern-slate); color: var(--paper);
  padding: 12px 18px; font-size: 14px;
  z-index: 1000; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* Header */
.site-header {
  background: var(--linen);
  border-bottom: 1px solid var(--mist);
  position: sticky; top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex; align-items: center;
}
.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex; align-items: center;
  text-decoration: none;
  color: var(--northern-slate);
  flex-shrink: 0;
}
.brand img { height: 52px; width: auto; }
.brand-text {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500;
  line-height: 1.1;
  color: var(--northern-slate);
}
.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river-stone-deep);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--northern-slate);
  padding: 10px 14px;
  border-radius: 4px;
  transition: background 0.15s;
}
.nav a:hover { background: var(--linen-deep); color: var(--pathway-green-deep); }
.nav a.cta {
  background: var(--pathway-green);
  color: var(--paper);
  margin-left: 8px;
  padding: 10px 18px;
}
.nav a.cta:hover { background: var(--pathway-green-deep); color: var(--paper); }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--mist); padding: 10px 14px; border-radius: 4px; font-family: var(--font-body); font-size: 14px; color: var(--northern-slate); cursor: pointer; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-height); left: 0; right: 0;
    background: var(--linen);
    flex-direction: column;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--mist);
    gap: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--mist); border-radius: 0; font-size: 17px; }
  .nav a:hover { background: transparent; }
  .nav a.cta { background: var(--pathway-green); color: var(--paper); margin: 12px 0 0; padding: 14px 18px; border-radius: 4px; text-align: center; border: none; }
  .brand-text { display: none; }
}

/* Sticky mobile call bar */
.mobile-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--pathway-green);
  color: var(--paper);
  text-align: center;
  padding: 14px;
  font-family: var(--font-body);
  font-size: 16px; font-weight: 500;
  text-decoration: none;
  z-index: 99;
  letter-spacing: 0.02em;
}
.mobile-call:hover { color: var(--paper); }
@media (max-width: 720px) {
  .mobile-call { display: block; }
  body { padding-bottom: 56px; }
}

/* Main content shell */
main { display: block; }
.container { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 24px; }

section { padding: 64px 0; }
section.tight { padding: 40px 0; }
section.bg-paper { background: var(--paper); border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
section.bg-deep { background: var(--linen-deep); }
section.bg-slate { background: var(--northern-slate); color: var(--linen); }
section.bg-slate h1, section.bg-slate h2, section.bg-slate h3 { color: var(--linen); }
section.bg-green { background: var(--pathway-green); color: var(--linen); }
section.bg-green h1, section.bg-green h2, section.bg-green h3 { color: var(--linen); }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--northern-slate);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 24px; }
h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 22px; }
h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 500; margin: 28px 0 14px; }
h4 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--river-stone-deep);
  margin: 32px 0 12px;
}
h1 em, h2 em { color: var(--pathway-green); font-style: italic; font-weight: 400; }

p { margin-bottom: 20px; max-width: 70ch; }
p.lead {
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
  color: var(--northern-slate-soft);
  font-weight: 300;
  margin-bottom: 32px;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river-stone-deep);
  margin-bottom: 16px;
  display: inline-block;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--pathway-green);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* Hero */
.hero {
  padding: 80px 0 72px;
  background: var(--linen);
}
.hero h1 { max-width: 16ch; }
.hero .lead { max-width: 50ch; margin-top: 12px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.btn-primary { background: var(--pathway-green); color: var(--linen); border-color: var(--pathway-green); }
.btn-primary:hover { background: var(--pathway-green-deep); border-color: var(--pathway-green-deep); color: var(--linen); }
.btn-secondary { background: transparent; color: var(--pathway-green-deep); border-color: var(--pathway-green); }
.btn-secondary:hover { background: var(--pathway-green); color: var(--linen); }
.btn-ghost { background: transparent; color: var(--northern-slate); border-color: var(--mist); }
.btn-ghost:hover { background: var(--paper); border-color: var(--coastal-sage); }

/* Cards & grids */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 28px;
  overflow-wrap: break-word;
}
.card-accent { border-left: 4px solid var(--pathway-green); }

/* Service cards */
.service-card {
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 28px;
  text-decoration: none;
  color: var(--northern-slate);
  display: block;
  transition: transform 0.15s, border-color 0.15s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--coastal-sage);
  color: var(--northern-slate);
}
.service-card-icon {
  width: 36px; height: 36px;
  display: block;
  margin-bottom: 16px;
  color: var(--pathway-green);
}
.service-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--northern-slate);
}
.service-card p {
  font-size: 16px;
  color: var(--northern-slate-soft);
  margin: 0;
  line-height: 1.55;
}
.service-card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: var(--pathway-green-deep);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.service-card-link::after { content: ' →'; }

/* Pillars */
.pillar {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 6px;
  border-top: 3px solid var(--pathway-green);
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--river-stone-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar h3 { font-size: 21px; margin: 0 0 12px; }
.pillar p { font-size: 16px; color: var(--northern-slate-soft); margin: 0; line-height: 1.6; }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}
.trust-item {
  text-align: center;
  font-size: 14px;
  color: var(--northern-slate-soft);
  line-height: 1.5;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--pathway-green-deep);
  margin-bottom: 4px;
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  color: var(--pathway-green-deep);
  border-left: 3px solid var(--pathway-green);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  max-width: 64ch;
}

/* Service detail page hero */
.service-hero {
  padding: 56px 0 48px;
  background: var(--linen-deep);
  border-bottom: 1px solid var(--mist);
}
.service-hero h1 { max-width: 18ch; }
.service-hero .lead { max-width: 56ch; }

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.service-meta-item {
  background: var(--paper);
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--pathway-green-deep);
  border: 1px solid var(--mist);
  font-weight: 500;
}

/* Process steps */
.process { counter-reset: step; margin: 32px 0; }
.process-step {
  counter-increment: step;
  padding: 24px 28px 24px 76px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 6px;
  margin-bottom: 14px;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 28px; top: 24px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--pathway-green);
  line-height: 1;
}
.process-step h3 { font-size: 19px; margin: 0 0 6px; }
.process-step p { font-size: 16px; color: var(--northern-slate-soft); margin: 0; line-height: 1.55; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--mist);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--mist); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--northern-slate);
  list-style: none;
  position: relative;
  padding-right: 36px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--pathway-green);
  font-weight: 300;
  line-height: 1.2;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--pathway-green-deep); }
.faq-item div {
  padding: 14px 0 4px;
  font-size: 16px;
  color: var(--northern-slate-soft);
  line-height: 1.7;
}
.faq-item div p { margin: 0 0 12px; max-width: none; }
.faq-item div p:last-child { margin: 0; }

/* Lists */
ul.styled, ol.styled { margin: 16px 0 24px; padding-left: 0; list-style: none; }
ul.styled li, ol.styled li { padding: 8px 0 8px 28px; position: relative; font-size: 17px; line-height: 1.65; }
ul.styled li::before { content: ''; position: absolute; left: 4px; top: 18px; width: 14px; height: 1.5px; background: var(--pathway-green); }
ol.styled { counter-reset: list; }
ol.styled li { counter-increment: list; }
ol.styled li::before { content: counter(list, decimal-leading-zero); position: absolute; left: 0; top: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--river-stone-deep); font-weight: 500; }

/* Two-column intake */
.intake-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.intake-form .field { margin-bottom: 20px; }
.intake-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--northern-slate);
  margin-bottom: 6px;
}
.intake-form label .req { color: var(--rust); }
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--northern-slate);
  background: var(--paper);
  border: 1.5px solid var(--mist);
  border-radius: 4px;
  transition: border-color 0.15s;
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--pathway-green);
}
.intake-form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.intake-form .help {
  font-size: 13px;
  color: var(--stone-grey);
  margin-top: 4px;
  line-height: 1.5;
}
.intake-form .submit-btn {
  background: var(--pathway-green);
  color: var(--linen);
  border: none;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.15s;
}
.intake-form .submit-btn:hover { background: var(--pathway-green-deep); }

.intake-side {
  padding: 28px;
  background: var(--paper);
  border-radius: 6px;
  border: 1px solid var(--mist);
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.intake-side h3 { margin-top: 0; font-size: 21px; }
.intake-side .next-steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  counter-reset: ns;
}
.intake-side .next-steps li {
  counter-increment: ns;
  padding: 12px 0 12px 36px;
  position: relative;
  font-size: 15px;
  color: var(--northern-slate-soft);
  border-bottom: 1px solid var(--mist);
  line-height: 1.5;
}
.intake-side .next-steps li:last-child { border: none; }
.intake-side .next-steps li::before {
  content: counter(ns, decimal-leading-zero);
  position: absolute;
  left: 0; top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pathway-green-deep);
  font-weight: 500;
  background: var(--linen-deep);
  padding: 2px 6px;
  border-radius: 3px;
}
.intake-side strong { display: block; color: var(--northern-slate); font-size: 15px; }
.intake-side .contact-line {
  display: flex; gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--mist);
  font-size: 16px;
}

/* Footer */
.site-footer {
  background: var(--northern-slate);
  color: var(--linen);
  padding: 64px 0 32px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: var(--coastal-sage-light); max-width: 30ch; margin: 0; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coastal-sage-light);
  margin: 0 0 16px;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: var(--linen);
  text-decoration: none;
  font-size: 15px;
}
.site-footer a:hover { color: var(--coastal-sage-light); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--northern-slate-soft);
  padding-top: 24px;
  font-size: 13px;
  color: var(--coastal-sage-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  line-height: 1.7;
}
.footer-bottom p { max-width: none; margin: 0; font-size: 13px; }

/* Acknowledgement of Country */
.acknowledgement {
  background: var(--pathway-green-deep);
  color: var(--linen);
  padding: 28px 0;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}
.acknowledgement p { margin: 0 auto; max-width: 56ch; font-size: 15px; }

/* Article (resources) */
.article-meta {
  font-size: 14px;
  color: var(--stone-grey);
  margin-bottom: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
article h1 { max-width: 24ch; }
article h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 48px; }
article p { font-size: 18px; }

/* Responsive */
@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { gap: 16px; }
  .intake-layout { grid-template-columns: 1fr; gap: 32px; }
  .intake-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; gap: 14px; }
  section { padding: 48px 0; }
  .hero { padding: 56px 0 40px; }
}

/* Photo placeholders — show brand-aligned fallback until real photos are added */
.photo {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--linen-deep), var(--sandstone-light));
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
.photo[data-aspect="hero"] { aspect-ratio: 16/9; }
.photo[data-aspect="portrait"] { aspect-ratio: 3/4; }
.photo[data-aspect="square"] { aspect-ratio: 1/1; }
.photo[data-aspect="wide"] { aspect-ratio: 21/9; }
.photo[data-aspect="standard"] { aspect-ratio: 4/3; }
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo .photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(154, 133, 104, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(139, 157, 130, 0.12) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
}
.photo .photo-placeholder .ph-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--river-stone-deep);
  margin-bottom: 12px;
}
.photo .photo-placeholder .ph-caption {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--pathway-green-deep);
  line-height: 1.4;
  max-width: 32ch;
}
.photo .photo-placeholder .ph-file {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--stone-grey);
  margin-top: 14px;
  letter-spacing: 0.05em;
  opacity: 0.7;
}
/* When the img inside .photo loads, hide the placeholder */
.photo img:not([src=""]):not([src*="placeholder"]) ~ .photo-placeholder { display: none; }

/* Decorative quote/figure section with optional image */
.figure-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 32px 0;
}
@media (max-width: 820px) {
  .figure-section { grid-template-columns: 1fr; gap: 28px; }
}

/* Profile / bio block */
.bio-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 36px;
  margin: 28px 0;
}
.bio-card .photo { margin: 0; }
.bio-card-body h3 { margin-top: 0; font-size: clamp(24px, 2.6vw, 28px); }
.bio-card-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--river-stone-deep);
  margin-bottom: 8px;
}
.bio-card-credentials {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--mist);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bio-credential {
  font-size: 13px;
  color: var(--northern-slate-soft);
  line-height: 1.5;
}
.bio-credential strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--river-stone-deep);
  margin-bottom: 4px;
  font-weight: 600;
}
@media (max-width: 820px) {
  .bio-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .bio-card-credentials { grid-template-columns: 1fr; }
}

/* Print */
@media print {
  .site-header, .mobile-call, .site-footer, .nav { display: none; }
  body { background: white; color: black; font-size: 11pt; }
}

/* Focus states for accessibility */
:focus-visible {
  outline: 3px solid var(--pathway-green);
  outline-offset: 2px;
  border-radius: 2px;
}
