:root {
  --ink: #162126;
  --muted: #667278;
  --paper: #fbf8f1;
  --white: #ffffff;
  --clay: #c95f42;
  --teal: #0f6e78;
  --lemon: #f4d957;
  --charcoal: #243036;
  --line: rgba(22, 33, 38, 0.16);
  --shadow: 0 22px 60px rgba(22, 33, 38, 0.18);
  --soft-shadow: 0 16px 44px rgba(22, 33, 38, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 248, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(22, 33, 38, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  line-height: 1.05;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--lemon);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  place-items: center;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 26, 32, 0.86), rgba(15, 26, 32, 0.62) 45%, rgba(15, 26, 32, 0.12)),
    linear-gradient(0deg, rgba(15, 26, 32, 0.72), rgba(15, 26, 32, 0.08) 46%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 138px 0 70px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero .eyebrow {
  color: var(--lemon);
}

.section-label {
  color: var(--lemon);
}

#about .section-label {
  color: var(--lemon);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  font-weight: 700;
}

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 11vw, 9.2rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.6vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--white);
}

.hero-actions,
.shop-links,
.footer-actions,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.shop-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.primary {
  background: var(--lemon);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(244, 217, 87, 0.26);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button.dark {
  background: var(--charcoal);
  color: var(--white);
}

.button.text-button {
  min-height: auto;
  padding: 10px 0;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  color: var(--teal);
}

.button:hover,
.shop-links a:hover {
  transform: translateY(-2px);
}

.button.primary:hover {
  background: #ffe769;
  box-shadow: 0 16px 34px rgba(244, 217, 87, 0.34);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.text-button:hover {
  color: var(--clay);
  transform: translateY(-1px);
}

.band {
  background: var(--white);
}

.intro,
.book-section,
.praise,
.visits,
.writers,
.events,
.media,
.about,
.footer {
  padding: clamp(70px, 10vw, 125px) 0;
}

.hero-actions .button.primary {
  min-width: 180px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: center;
}

.clean-image {
  position: relative;
}

.clean-image::before {
  content: "";
  position: absolute;
  inset: 26px -16px -20px 26px;
  background: var(--teal);
  z-index: 0;
}

.clean-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: var(--shadow);
}

.quote-panel {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 33, 38, 0.12);
  box-shadow: var(--soft-shadow);
}

.rotating-quote {
  height: 360px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#book .rotating-quote {
  height: 430px;
}

.rotating-quote:hover {
  transform: none;
  box-shadow: none;
}

.rotating-quote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.45vw, 2.4rem);
  line-height: 1.14;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}

#book .rotating-quote p {
  font-size: clamp(1.28rem, 2.05vw, 2.05rem);
  -webkit-line-clamp: 10;
}

.rotating-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--teal);
  flex: 0 0 auto;
}

.rotator-controls {
  display: flex;
  gap: 10px;
  margin: 22px 0;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.dot.is-active {
  background: var(--teal);
}

.yellow-links a {
  background: var(--lemon);
  border-color: var(--lemon);
  color: var(--ink);
}

.yellow-links a:hover {
  background: #ffe769;
  color: var(--ink);
}

.about-grid .button,
.split-copy .button,
.writer-panel .button {
  margin-top: 12px;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 8vw, 86px);
  align-items: center;
}

.visit-rotator {
  display: grid;
  gap: 22px;
}

.visit-rotator img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.compact-quote {
  height: 300px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.compact-quote p {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.16;
  -webkit-line-clamp: 7;
}

.writer-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: center;
}

.social-icon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.social-icon-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  background: rgba(15, 110, 120, 0.1);
  border: 1px solid rgba(15, 110, 120, 0.25);
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.social-icon-grid a:hover {
  transform: translateY(-2px);
  background: var(--teal);
  color: var(--white);
}

.social-icon-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 950;
}

.media {
  background: var(--paper);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.media-feature,
.media-grid a {
  position: relative;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 168px;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(22, 33, 38, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.media-feature::before,
.media-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 110, 120, 0.14), transparent 44%),
    linear-gradient(0deg, rgba(244, 217, 87, 0.18), transparent 52%);
  opacity: 0.9;
}

.media-feature::after,
.media-grid a::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -42px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  border: 1px solid rgba(15, 110, 120, 0.22);
}

.media-feature:hover,
.media-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 110, 120, 0.35);
  box-shadow: var(--soft-shadow);
}

.media-feature {
  min-height: 420px;
  background: var(--charcoal);
  color: var(--white);
}

.media-feature::before {
  background:
    linear-gradient(135deg, rgba(244, 217, 87, 0.38), transparent 38%),
    linear-gradient(0deg, rgba(15, 110, 120, 0.5), transparent 58%);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.media-grid a {
  min-height: 208px;
}

.media-logo,
.media-type,
.media-feature strong,
.media-feature small,
.media-grid strong,
.media-grid small {
  position: relative;
  z-index: 1;
}

.media-logo {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  background: var(--teal);
  color: var(--white);
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
}

.media-feature .media-logo {
  width: 72px;
  height: 72px;
  background: var(--lemon);
  color: var(--ink);
  font-size: 1.25rem;
}

.media-type {
  width: fit-content;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--lemon);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.media-feature strong,
.media-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.media-feature strong {
  max-width: 430px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.media-grid strong {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.media-feature small,
.media-grid small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.media-feature small {
  color: rgba(255, 255, 255, 0.72);
}

.intro-grid,
.book-grid,
.split,
.writers-grid,
.about-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.intro-grid p:last-child {
  max-width: 620px;
  font-size: 1.26rem;
  color: var(--charcoal);
}

.book-section {
  position: relative;
  padding-top: clamp(48px, 7vw, 86px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    var(--paper);
  scroll-margin-top: 84px;
}

.book-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.book-grid {
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
}

.book-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 10px;
}

.book-kicker .section-label {
  margin-bottom: 0;
}

.book-kicker span {
  padding: 6px 10px;
  background: rgba(15, 110, 120, 0.1);
  border: 1px solid rgba(15, 110, 120, 0.18);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.book-copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.55vw, 4.45rem);
}

.book-lede {
  max-width: 690px;
  margin-bottom: 20px;
  color: var(--charcoal);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.book-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin: 0 0 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-strip span {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--charcoal);
  font-weight: 850;
  line-height: 1.25;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 22px 0;
  padding: clamp(22px, 3.5vw, 34px);
  background: var(--white);
  border: 1px solid rgba(22, 33, 38, 0.12);
  box-shadow: var(--soft-shadow);
}

.booking-card h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.06;
}

.booking-card p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
}

.booking-button {
  min-width: 160px;
}

.book-image {
  position: relative;
  position: sticky;
  top: 104px;
}

.book-image::before {
  content: "";
  position: absolute;
  inset: 28px -18px -22px 28px;
  background: var(--teal);
  z-index: 0;
}

.book-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: var(--shadow);
}

.book-copy p:not(.section-label):not(.pullquote):not(.book-lede) {
  max-width: 620px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.pullquote {
  margin: 24px 0;
  padding-left: 22px;
  border-left: 5px solid var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.book-actions {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.shop-links a {
  background: var(--white);
  border-color: var(--line);
}

.shop-links a:hover {
  background: var(--ink);
  color: var(--white);
}

.shop-links.yellow-links a {
  background: var(--lemon);
  border-color: var(--lemon);
  color: var(--ink);
}

.shop-links.yellow-links a:hover {
  background: #ffe769;
  border-color: #ffe769;
  color: var(--ink);
}

.praise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.section-heading.compact {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.3vw, 4.1rem);
}

blockquote {
  min-height: 220px;
  margin: 0;
  padding: 34px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

blockquote:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}

blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.18;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.split img,
.about-grid img {
  width: 100%;
  box-shadow: var(--shadow);
}

.split img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-copy p:not(.section-label) {
  max-width: 620px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.feature-list span {
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.writers-grid {
  align-items: start;
}

.workshop-list {
  display: grid;
  gap: 14px;
}

.workshop-list article,
.event-item {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.workshop-list p,
.event-item p,
.about-grid p,
.footer p {
  color: var(--charcoal);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.event-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.event-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  background: var(--white);
}

time {
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

.about-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.footer {
  background: #23282c;
  color: var(--white);
}

.footer p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-grid {
  align-items: end;
}

.footer-actions {
  justify-content: flex-end;
}

.socials a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.socials a:hover {
  color: var(--lemon);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 26, 32, 0.86), rgba(15, 26, 32, 0.5)),
      linear-gradient(0deg, rgba(15, 26, 32, 0.78), rgba(15, 26, 32, 0.16));
  }

  .intro-grid,
  .book-grid,
  .showcase-grid,
  .split,
  .visit-grid,
  .writers-grid,
  .writer-panel,
  .about-grid,
  .footer-grid,
  .praise-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    order: 1;
  }

  .showcase-grid .clean-image {
    order: 2;
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-layout {
    grid-template-columns: 1fr;
  }

  .media-feature {
    min-height: 300px;
  }

  .book-image {
    position: relative;
    top: auto;
    max-width: 620px;
    order: 2;
  }

  .book-copy {
    order: 1;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: auto;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .booking-button {
    width: 100%;
  }

  .event-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .wrap,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
  }

  .brand span {
    font-size: 1.28rem;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .book-copy h2 {
    font-size: 2.35rem;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  blockquote,
  .workshop-list article,
  .event-item {
    padding: 22px;
  }

  .button,
  .shop-links a {
    width: 100%;
  }

  .hero-actions .button.primary {
    min-width: 0;
  }

  .rotating-quote {
    height: 330px;
  }

  #book .rotating-quote {
    height: 430px;
  }

  .rotating-quote p {
    font-size: 1.35rem;
  }

  #book .rotating-quote p {
    font-size: 1.22rem;
    -webkit-line-clamp: 12;
  }

  .compact-quote {
    height: 310px;
    padding: 22px;
  }

  .compact-quote p {
    font-size: 1.05rem;
  }

  .social-icon-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-feature,
  .media-grid a {
    min-height: 180px;
    padding: 22px;
  }

  .media-feature strong {
    font-size: 2.25rem;
  }

  .book-image::before {
    inset: 16px -10px -14px 16px;
  }
}
