:root {
  --orange: #f47920;
  --orange-2: #ff8a2a;
  --black: #030505;
  --ink: #0d1111;
  --ink-2: #161a1a;
  --muted: #667070;
  --muted-2: #9aa3a3;
  --line: #e4e7e7;
  --surface: #f6f7f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 5, 5, .14);
  --radius: 26px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 760; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
}
.skip-link:focus { left: 16px; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 5, 5, .92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}
.brand img { width: 196px; display: block; background: transparent; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: .94rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--white);
  background: rgba(244, 121, 32, .16);
}
.nav-cta {
  border: 1px solid rgba(244, 121, 32, .52);
  color: var(--orange) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 1px;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 10%, rgba(244, 121, 32, .22), transparent 32%),
    radial-gradient(circle at 14% 92%, rgba(244, 121, 32, .12), transparent 36%),
    var(--black);
  color: var(--white);
}
.hero:before,
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.08));
}
.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 50px;
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: 86px 0 72px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker:before {
  content: "";
  width: 31px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.05rem, 6.4vw, 6.9rem); max-width: 880px; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-brand-lockup {
  margin: 6px 0 8px;
}
.hero-brand-lockup img {
  width: min(100%, 540px);
  display: block;
}
.hero-intro {
  max-width: 720px;
}
h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.74rem); letter-spacing: -.03em; }
.lead {
  margin-top: 24px;
  max-width: 700px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}
.lead.dark { color: #455050; }
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 780;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--black);
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(244, 121, 32, .26);
}
.btn-primary:hover { background: var(--orange-2); }
.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255,255,255,.06);
}
.btn-secondary.dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 800;
}
.btn-text:after { content: "->"; transition: transform .2s ease; }
.btn-text:hover:after { transform: translateX(5px); }
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 34px 60px rgba(0,0,0,.45));
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.08);
}
.trust-item {
  padding: 24px 22px;
  background: rgba(3,5,5,.72);
}
.trust-item strong { display: block; color: var(--white); font-size: 1.1rem; }
.trust-item span { color: rgba(255,255,255,.62); font-size: .93rem; }

.section { padding: 104px 0; }
.section.tight { padding: 72px 0; }
.section.light { background: var(--surface); }
.section.dark {
  background: var(--black);
  color: var(--white);
}
.section.dark .lead,
.section.dark .eyebrow-copy { color: rgba(255, 255, 255, .68); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.section-head.center .kicker { justify-content: center; }
.eyebrow-copy {
  color: #536060;
  font-size: 1.08rem;
}

.grid { display: grid; gap: 22px; }
.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 {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(3,5,5,.03);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 121, 32, .32);
  box-shadow: var(--shadow);
}
.card.dark-card {
  color: var(--white);
  background: linear-gradient(145deg, #111313, #080909);
  border-color: rgba(255,255,255,.1);
}
.card.dark-card p,
.card.dark-card li { color: rgba(255,255,255,.68); }
.card h3 { margin-bottom: 14px; }
.card p { color: #566060; }
.icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: transparent url('../img/s5-circle.svg') no-repeat center/contain;
  text-indent: -9999px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(3,5,5,.08);
}
.card-list { display: grid; gap: 12px; margin-top: 20px; }
.card-list li {
  position: relative;
  padding-left: 24px;
  color: #4c5757;
}
.card-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.dark-card .card-list li:before { box-shadow: 0 0 0 5px rgba(244,121,32,.12); }

.split {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1fr);
  gap: 58px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, 1fr) minmax(0, .96fr); }
.split-visual {
  border-radius: 34px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}
.split-visual.clean {
  background: transparent;
  box-shadow: none;
}
.feature-panel {
  padding: 36px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0, rgba(244,121,32,.19), transparent 32%),
    #0b0d0d;
  color: var(--white);
  box-shadow: var(--shadow);
}
.feature-panel .metric-grid { margin-top: 30px; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.metric {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
}
.metric strong { display: block; color: var(--orange); font-size: 1.7rem; line-height: 1; }
.metric span { display: block; margin-top: 9px; color: rgba(255,255,255,.66); font-size: .9rem; }

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.module-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}
.module-card .status {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(244,121,32,.12);
  color: #9a420d;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.module-card p { color: #596363; font-size: .96rem; }

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.process-step {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}
.process-step:before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .14em;
}
.process-step p { color: #586363; font-size: .95rem; }

.page-hero .container { padding: 98px 0 72px; }
.page-hero h1 { max-width: 920px; font-size: clamp(2.7rem, 5.2vw, 5.8rem); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255,255,255,.58);
  font-size: .92rem;
}
.breadcrumbs a { color: var(--orange); }

.band {
  overflow: hidden;
  background: var(--orange);
  color: var(--black);
}
.band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-block: 46px;
}
.band h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.band p { max-width: 590px; color: rgba(3,5,5,.72); }
.band .btn { background: var(--black); color: var(--white); }

.callout {
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244,121,32,.2), transparent 34%),
    var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}
.callout p { color: rgba(255,255,255,.7); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(0, 1fr);
  gap: 32px;
}
.contact-card {
  padding: 34px;
  border-radius: 30px;
  background: var(--black);
  color: var(--white);
}
.contact-card p { color: rgba(255,255,255,.68); }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-line strong { display: block; }
.contact-line span { color: rgba(255,255,255,.62); }
.form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 750; color: var(--ink); }
input, textarea, select {
  width: 100%;
  border: 1px solid #d7dddd;
  border-radius: 16px;
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 156px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,121,32,.14);
}
.honeypot { display: none; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, .95fr) repeat(3, minmax(130px, .35fr));
  gap: 38px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { width: 220px; margin-bottom: 20px; background: transparent; }
.footer-grid p { color: rgba(255,255,255,.64); max-width: 420px; }
.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 0;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
  color: rgba(255,255,255,.64);
}
.footer-grid a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255,255,255,.56);
  font-size: .92rem;
}
.footer-bottom a { color: var(--orange); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .hero-wrap,
  .split,
  .split.reverse,
  .section-head,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-wrap { min-height: auto; padding-top: 70px; }
  .hero-visual { max-width: 720px; }
  .grid-4, .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .navbar { min-height: 70px; }
  .brand img { width: 168px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    background: rgba(3,5,5,.98);
    box-shadow: 0 30px 80px rgba(0,0,0,.42);
  }
  .nav-links.open { display: flex; }
  .nav-links a { justify-content: center; }
  .section { padding: 78px 0; }
  .section-head { margin-bottom: 34px; }
  .grid-3, .grid-4, .module-grid, .grid-2 { grid-template-columns: 1fr; }
  .band .container { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero-wrap { padding: 54px 0 50px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.4rem); }
  .hero-brand-lockup img { width: min(100%, 360px); }
  .page-hero .container { padding: 72px 0 54px; }
  .trust-strip, .process, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .card, .form, .contact-card, .callout, .feature-panel { padding: 24px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; }
}
.section.dark .card-list li,
.callout .card-list li,
.feature-panel .card-list li {
  color: rgba(255,255,255,.72);
}
button.btn { cursor: pointer; font: inherit; }


.community-highlight {
  position: relative;
  overflow: hidden;
}
.community-split {
  align-items: stretch;
}
.community-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.story-card.dark-card {
  background: linear-gradient(145deg, #111313, #080909);
  border-color: rgba(255,255,255,.08);
}
.story-media {
  position: relative;
  background: #0a0d0d;
}
.story-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-media.tall {
  aspect-ratio: 4 / 5;
}
.story-body {
  padding: 24px 24px 26px;
}
.story-body h3 {
  margin-bottom: 12px;
}
.story-body p {
  color: #566060;
}
.story-card.dark-card .story-body p {
  color: rgba(255,255,255,.72);
}
.story-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(244,121,32,.12);
  color: #9a420d;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.story-card.dark-card .story-tag {
  background: rgba(244,121,32,.16);
  color: var(--orange);
}
.yacht-card .story-media {
  aspect-ratio: 4 / 3;
}
.community-hero {
  background:
    linear-gradient(90deg, rgba(3,5,5,.92) 0%, rgba(3,5,5,.78) 45%, rgba(3,5,5,.88) 100%),
    radial-gradient(circle at 74% 10%, rgba(244, 121, 32, .22), transparent 32%),
    var(--black);
}
.community-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../img/community/yacht-system5-1.jpg') center right / cover no-repeat;
  opacity: .22;
}
.community-feature {
  align-items: center;
}
.sponsor-photo {
  max-width: 520px;
}
.sponsor-photo img {
  display: block;
}
.yacht-showcase {
  position: relative;
}
.yacht-gallery {
  align-items: stretch;
}
.yacht-panel .story-media {
  aspect-ratio: 4 / 3;
}
.yacht-panel.wide .story-media {
  aspect-ratio: 5 / 4;
}

@media (max-width: 1060px) {
  .community-preview { grid-template-columns: 1fr; }
  .sponsor-photo { max-width: 100%; }
}


.sponsorship-showcase {
  position: relative;
  overflow: hidden;
}
.sponsorship-showcase:before {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,.12), transparent 70%);
  pointer-events: none;
}
.sponsorship-split {
  align-items: center;
}
.sponsorship-points {
  margin-top: 22px;
}
.sponsor-carousel {
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 86% 10%, rgba(244,121,32,.16), transparent 28%),
    #0b0d0d;
  color: var(--white);
  box-shadow: var(--shadow);
}
.carousel-window {
  overflow: hidden;
  border-radius: 24px;
}
.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform .45s ease;
  will-change: transform;
}
.carousel-slide {
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
}
.carousel-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  height: clamp(260px, 34vw, 400px);
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)), #090b0b;
}
.sponsor-gallery .story-media {
  aspect-ratio: 4 / 5;
}
.carousel-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
}
.carousel-caption {
  padding: 22px 24px 24px;
}
.carousel-caption h3 {
  margin-bottom: 12px;
}
.carousel-caption p {
  margin: 0;
  color: rgba(255,255,255,.72);
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 6px 4px;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(244,121,32,.16);
  border-color: rgba(244,121,32,.36);
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.dot.active,
.dot:hover,
.dot:focus-visible {
  background: var(--orange);
  transform: scale(1.15);
}
.sponsor-gallery {
  align-items: stretch;
}
.sponsor-gallery .story-card.dark-card .story-body {
  padding: 32px;
}
.sponsor-gallery .story-card.dark-card .card-list {
  margin-top: 20px;
}

@media (max-width: 1060px) {
  .sponsor-carousel {
    max-width: 760px;
  }
}

@media (max-width: 560px) {
  .sponsor-carousel {
    padding: 14px;
    border-radius: 24px;
  }
  .carousel-media {
    min-height: 220px;
    height: 220px;
    padding: 12px;
  }
  .carousel-caption {
    padding: 18px 18px 20px;
  }
  .carousel-controls {
    padding-inline: 0;
  }
}
