/* ============================================================
   PROCOM — public marketing site surfaces
   Translated 1:1 from the design-system React kit:
     components/core/Button.jsx      -> .pc-btn
     components/core/IconCoin.jsx    -> .pc-coin
     ui_kits/website/SiteHeader.jsx  -> .pc-header
     ui_kits/website/Hero.jsx        -> .pc-hero
     ui_kits/website/ServiceGrid.jsx -> .pc-services
     ui_kits/website/CTABand.jsx     -> .pc-cta
     ui_kits/website/SiteFooter.jsx  -> .pc-footer
   Values are taken verbatim from those files. Tokens come from
   procom-ds.css — no invented names.
   ============================================================ */

/* ============================================================
   BUTTON  — Button.jsx
   ============================================================ */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: var(--fw-heavy);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transform: translateY(0);
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}

.pc-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.pc-btn[disabled],
.pc-btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

/* --- sizes --- */
.pc-btn--sm { padding: 8px 16px;  font-size: 13px; height: 36px; }
.pc-btn--md { padding: 12px 22px; font-size: 15px; height: 46px; }
.pc-btn--lg { padding: 16px 30px; font-size: 17px; height: 56px; }

/* --- primary --- */
.pc-btn--primary {
  background: var(--procom-orange);
  color: var(--text-on-brand);
  box-shadow: none;
}
.pc-btn--primary:hover {
  background: var(--orange-600);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
  color: var(--text-on-brand);
}
.pc-btn--primary:active {
  background: var(--orange-700);
  transform: translateY(0);
}

/* --- dark --- */
.pc-btn--dark {
  background: var(--ink-900);
  color: var(--white);
  box-shadow: none;
}
.pc-btn--dark:hover {
  background: var(--ink-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  color: var(--white);
}
.pc-btn--dark:active {
  background: var(--true-black);
  transform: translateY(0);
}

/* --- ghost (outline, fills in on hover) --- */
.pc-btn--ghost {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--black);
}
.pc-btn--ghost:hover {
  background: var(--procom-orange);
  border-color: var(--procom-orange);
  color: var(--text-on-brand);
  transform: translateY(-1px);
}
.pc-btn--ghost:active { transform: translateY(0); }

/* Ghost sitting on dark art / on the orange band: white border + label.
   Hero.jsx and CTABand.jsx pass style={{borderColor:"#fff",color:"#fff"}}. */
.pc-btn--on-dark {
  border-color: var(--white);
  color: var(--white);
}
.pc-btn--on-dark:hover {
  background: var(--procom-orange);
  border-color: var(--procom-orange);
  color: var(--text-on-brand);
}

/* --- link --- */
.pc-btn--link {
  background: transparent;
  color: var(--procom-orange);
  border: 2px solid transparent;
  padding: 4px 2px;
  height: auto;
  border-radius: 0;
}
.pc-btn--link:hover {
  color: var(--orange-700);
  text-decoration: underline;
  text-underline-offset: 4px;
  transform: translateY(0);
}

/* ============================================================
   ICON COIN  — IconCoin.jsx
   Circular, orange fill, white glyph at 46% of coin size.
   ============================================================ */
.pc-coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  flex: none;
  background: var(--procom-orange);
  color: var(--white);
  box-shadow: none;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.pc-coin svg,
.pc-coin i { stroke-width: 2; }

.pc-coin--52 { width: 52px; height: 52px; }
.pc-coin--52 svg,
.pc-coin--52 i { width: 24px; height: 24px; }   /* round(52 * 0.46) */

.pc-coin--dark  { background: var(--ink-900); color: var(--procom-orange); }
.pc-coin--white { background: var(--white);   color: var(--procom-orange); }
.pc-coin.is-glow { box-shadow: var(--shadow-orange); }

/* ============================================================
   SITE HEADER  — SiteHeader.jsx
   ============================================================ */
.pc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border-hairline);
  font-family: var(--font-sans);
}

.pc-header__logo { display: inline-flex; flex-shrink: 0; text-decoration: none; }
.pc-header__logo img { height: 40px; width: auto; display: block; }

.pc-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-nav > li { position: relative; }

.pc-nav a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.pc-nav a:hover,
.pc-nav a.nav-active { color: var(--orange-700); }

.pc-nav a:focus-visible {
  outline: none;
  border-radius: var(--radius-xs);
  box-shadow: var(--focus-ring);
}

/* Services dropdown — real site functionality, styled to the kit. */
.pc-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color var(--dur-fast) var(--ease-out);
}
.pc-nav__toggle:hover { color: var(--orange-700); }
.pc-nav__toggle:focus-visible {
  outline: none;
  border-radius: var(--radius-xs);
  box-shadow: var(--focus-ring);
}
.pc-nav__caret { width: 14px; height: 14px; }

.pc-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  min-width: 232px;
  background: var(--white);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  z-index: 200;
}

/* Bridges the 16px gap so the menu survives the pointer crossing it. */
.pc-dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0;
  height: 16px;
}

.pc-nav__item--has-menu:hover .pc-dropdown,
.pc-nav__item--has-menu:focus-within .pc-dropdown { display: block; }

.pc-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-body);
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.pc-dropdown a:hover {
  color: var(--orange-700);
  background: var(--orange-50);
}

.pc-header__cta { flex-shrink: 0; }

/* Hamburger */
.pc-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.pc-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out);
}
.pc-burger:focus-visible {
  outline: none;
  border-radius: var(--radius-xs);
  box-shadow: var(--focus-ring);
}

/* Mobile drawer */
.pc-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34,34,34,0.5);
  z-index: 38;
}
.pc-drawer-overlay.open { display: block; }

.pc-drawer {
  display: none;
  position: fixed;
  top: 77px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-md);
  z-index: 39;
  padding: 12px 0 20px;
  flex-direction: column;
  max-height: calc(100vh - 77px);
  overflow-y: auto;
}
.pc-drawer.open { display: flex; }

.pc-drawer a:not(.pc-btn) {
  padding: 12px 24px;
  color: var(--text-body);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.pc-drawer a:not(.pc-btn):hover,
.pc-drawer a:not(.pc-btn).nav-active { color: var(--orange-700); background: var(--orange-50); }

.pc-drawer .pc-btn { margin: 12px 24px 0; }

/* ============================================================
   HERO  — Hero.jsx
   ============================================================ */
.pc-hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--ink-900);
  font-family: var(--font-sans);
}

.pc-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.pc-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 78%);
}

.pc-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 90px;
}

.pc-hero__content { max-width: 680px; }

.pc-hero__eyebrow {
  display: inline-block;
  font-weight: var(--fw-heavy);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--procom-orange);
  margin-bottom: 22px;
}

.pc-hero__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: 88px;
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.pc-hero__sub {
  font-weight: var(--fw-regular);
  font-size: 21px;
  line-height: 1.5;
  color: var(--grey-300);
  margin: 26px 0 38px;
  max-width: 540px;
}

.pc-hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.pc-hero__tagline {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  z-index: 2;
  opacity: 0.8;
}

/* Tagline.jsx — lowercase, widely tracked, orange bullets. */
.pc-tagline {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  text-align: center;
  width: 100%;
  color: var(--white);
}
.pc-tagline b {
  color: var(--procom-orange);
  margin: 0 0.5em;
  font-weight: var(--fw-bold);
}

/* ============================================================
   SERVICE GRID  — ServiceGrid.jsx
   ============================================================ */
.pc-services {
  background: var(--bg-page);
  padding: 90px 48px;
  font-family: var(--font-sans);
}

.pc-services__inner { max-width: 1200px; margin: 0 auto; }

.pc-services__eyebrow {
  display: block;
  font-weight: var(--fw-heavy);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-700);
}

.pc-services__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: 48px;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 12px 0 44px;
  line-height: 1;
}

.pc-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.pc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-xs);
  transform: translateY(0);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.pc-card:hover {
  border-color: var(--procom-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pc-card:hover .pc-coin { box-shadow: var(--shadow-orange); }

.pc-card:focus-visible {
  outline: none;
  border-color: var(--procom-orange);
  box-shadow: var(--focus-ring);
}

.pc-card__title {
  font-family: var(--font-sans);
  font-weight: var(--fw-heavy);
  font-size: 20px;
  color: var(--text-strong);
  margin: 20px 0 8px;
}

.pc-card__body {
  font-weight: var(--fw-regular);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* Non-navigable placeholder cards keep the shape, drop the affordance. */
.pc-card--static { cursor: default; }
.pc-card--static:hover {
  border-color: var(--border-hairline);
  box-shadow: var(--shadow-xs);
  transform: translateY(0);
}
.pc-card--static:hover .pc-coin { box-shadow: none; }

/* ============================================================
   SOLUTION BUILDERS BAND  — "Build your own system"
   A light band sitting between the hero and the service grid, so
   the four builder entry points read as their own step.

   Background is --surface-sunken, not --bg-page: the service grid
   directly below is already --bg-page, so reusing it would erase
   the seam between the two. Sunken is one step down from it — a
   visible band edge that still reads as a light surface.

   No top border: the hero above is --ink-900, so the light band
   separates itself.
   ============================================================ */
.pc-builders {
  position: relative;
  background: var(--surface-sunken);
  overflow: hidden;
  padding: 90px 48px;
  font-family: var(--font-sans);
}

/* The brand's signature circular accent, in orange at low opacity. */
.pc-builders__circle {
  position: absolute;
  top: -40%;
  right: -8%;
  width: var(--accent-circle-md);
  height: var(--accent-circle-md);
  border-radius: var(--radius-circle);
  background: var(--procom-orange);
  opacity: 0.07;
  pointer-events: none;
}

.pc-builders__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.pc-builders__eyebrow {
  display: block;
  font-weight: var(--fw-heavy);
  font-size: 13px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--procom-orange);
}

/* Boris Black Bloxx only ever sits at 400 — never bold. */
.pc-builders__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: 48px;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  color: var(--text-strong);
  margin: 12px 0 0;
}

.pc-builders__sub {
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: var(--lh-normal);
  color: var(--text-body);
  margin: 14px 0 44px;
  max-width: 620px;
}

.pc-builders__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pc-builder-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--surface-card);
  border: 1px solid var(--procom-orange);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-decoration: none;
  cursor: pointer;
  transform: translateY(0);
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.pc-builder-card:hover {
  border-color: var(--orange-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Resting border is already --procom-orange, so focus matches hover's
   darker edge to stay distinguishable behind the ring. */
.pc-builder-card:focus-visible {
  outline: none;
  border-color: var(--orange-600);
  box-shadow: var(--focus-ring);
}

.pc-builder-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--procom-orange);
  color: var(--text-on-brand);
}
.pc-builder-card__icon svg { width: 24px; height: 24px; }

.pc-builder-card__label {
  flex: 1 1 auto;
  font-weight: var(--fw-heavy);
  font-size: 20px;
  color: var(--text-strong);
}

.pc-builder-card__arrow {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--procom-orange);
  transform: translateX(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.pc-builder-card__arrow svg { width: 20px; height: 20px; }
.pc-builder-card:hover .pc-builder-card__arrow { transform: translateX(4px); }

/* ============================================================
   CTA BAND  — CTABand.jsx
   ============================================================ */
.pc-cta {
  position: relative;
  background: var(--procom-orange);
  overflow: hidden;
  font-family: var(--font-sans);
}

.pc-cta__circle-lg,
.pc-cta__circle-sm {
  position: absolute;
  border-radius: var(--radius-circle);
  pointer-events: none;
}
.pc-cta__circle-lg {
  top: -120%;
  right: -6%;
  width: 520px;
  height: 520px;
  background: rgba(255,255,255,.10);
}
.pc-cta__circle-sm {
  bottom: -70%;
  right: 14%;
  width: 320px;
  height: 320px;
  background: rgba(34,34,34,.06);
}

.pc-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.pc-cta__title {
  font-family: var(--font-heading);
  font-weight: var(--fw-regular);
  font-size: 50px;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  line-height: 0.98;
}

.pc-cta__sub {
  font-weight: var(--fw-medium);
  font-size: 18px;
  color: rgba(255,255,255,.92);
  margin: 12px 0 0;
}

.pc-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SITE FOOTER  — SiteFooter.jsx
   ============================================================ */
.pc-footer {
  background: var(--ink-900);
  color: var(--grey-300);
  font-family: var(--font-sans);
}

.pc-footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.pc-footer__logo img { height: 42px; width: auto; display: block; }

.pc-footer__blurb {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-400);
  margin: 22px 0 0;
  max-width: 240px;
}

.pc-footer__col h4 {
  font-weight: var(--fw-heavy);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 16px;
}

.pc-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pc-footer__col a {
  color: var(--grey-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--fw-medium);
  transition: color var(--dur-fast) var(--ease-out);
}
.pc-footer__col a:hover { color: var(--procom-orange); }
.pc-footer__col a:focus-visible {
  outline: none;
  border-radius: var(--radius-xs);
  box-shadow: var(--focus-ring);
}

.pc-footer__bar { border-top: 1px solid var(--ink-700); }

.pc-footer__bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-footer__copy { font-size: 12px; color: var(--grey-500); }

.pc-footer__tagline {
  font-weight: var(--fw-medium);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--grey-500);
}

/* ============================================================
   RESPONSIVE
   The kit is fixed-width; these steps carry it down to 380px.
   ============================================================ */
@media (max-width: 1024px) {
  .pc-header { padding: 18px 24px; }
  .pc-nav, .pc-header__cta { display: none; }
  .pc-burger { display: flex; }

  .pc-hero__inner { padding: 96px 24px 84px; }
  .pc-hero__title { font-size: 64px; }
  .pc-hero__sub { font-size: 19px; }

  .pc-services { padding: 72px 24px; }
  .pc-services__title { font-size: 40px; }

  .pc-builders { padding: 72px 24px; }
  .pc-builders__title { font-size: 40px; }
  .pc-builders__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .pc-cta__inner { padding: 56px 24px; }
  .pc-cta__title { font-size: 42px; }

  .pc-footer__top {
    grid-template-columns: 1fr 1fr;
    padding: 56px 24px 28px;
  }
  .pc-footer__bar-inner { padding: 20px 24px; }
}

@media (max-width: 720px) {
  .pc-hero { min-height: 560px; }
  .pc-hero__inner { padding: 72px 20px 76px; }
  .pc-hero__title { font-size: 48px; }
  .pc-hero__sub { font-size: 17px; margin: 20px 0 30px; }
  /* Split the row only when there is a pair; a lone button keeps its own width. */
  .pc-hero__actions .pc-btn:not(:only-child) { flex: 1 1 auto; }

  .pc-services { padding: 60px 20px; }
  .pc-services__title { font-size: 32px; }
  .pc-services__grid { grid-template-columns: 1fr; gap: 16px; }

  .pc-builders { padding: 60px 20px; }
  .pc-builders__title { font-size: 32px; }
  .pc-builders__sub { font-size: 17px; margin-bottom: 32px; }
  .pc-builders__grid { grid-template-columns: 1fr; gap: 16px; }

  .pc-cta__inner { padding: 48px 20px; }
  .pc-cta__title { font-size: 34px; }
  .pc-cta__actions { width: 100%; }
  .pc-cta__actions .pc-btn { flex: 1 1 auto; }

  .pc-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .pc-footer__bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .pc-header { padding: 14px 16px; }
  .pc-header__logo img { height: 32px; }
  .pc-drawer, .pc-drawer-overlay { top: 61px; }
  .pc-drawer { max-height: calc(100vh - 61px); }

  .pc-hero__inner { padding: 60px 16px 72px; }
  .pc-hero__title { font-size: 38px; }
  .pc-hero__eyebrow { font-size: 12px; margin-bottom: 16px; }
  .pc-hero__actions { gap: 10px; }

  .pc-services { padding: 52px 16px; }
  .pc-services__title { font-size: 28px; }
  .pc-card { padding: 24px 20px; }

  .pc-builders { padding: 52px 16px; }
  .pc-builders__title { font-size: 28px; }
  .pc-builder-card { padding: 24px 20px; }

  .pc-cta__inner { padding: 40px 16px; }
  .pc-cta__title { font-size: 28px; }
  .pc-cta__sub { font-size: 16px; }

  .pc-footer__top { padding: 44px 16px 24px; }
  .pc-footer__bar-inner { padding: 18px 16px; }
}
