:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --dark: #122029;
  --radius: 0px;
  --radius-card: 24px;
  --radius-btn: 999px;
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --max-w: 1320px;
  --header-h: 80px;
  --space-section: 120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.wrap {
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
}

.section {
  padding: var(--space-section) 0;
  border-top: 1px solid var(--border);
}

.section--tight {
  padding: 80px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 240ms ease, background 240ms ease, color 240ms ease;
}

.btn:hover {
  box-shadow: 0 12px 32px rgba(21, 32, 42, 0.14);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--block {
  width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.site-header.is-solid {
  position: sticky;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 32px;
  object-fit: contain;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

.nav-center a,
.nav-contact a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-center a:hover,
.nav-contact a:hover,
.nav-center a[aria-current="page"],
.nav-contact a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-contact {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.independence {
  margin: 1.5rem 0 0;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 52rem;
}

.independence--home {
  margin: 0 auto;
  width: min(100% - 48px, var(--max-w));
  margin-top: -40px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero__image {
  grid-column: 2;
  grid-row: 1;
  min-height: 520px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: center;
  margin-left: max(24px, calc((100vw - var(--max-w)) / 2));
  margin-right: -12%;
  position: relative;
  z-index: 2;
  background: var(--surface);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--border);
  max-width: 560px;
}

.hero__panel p {
  margin-top: 1.25rem;
  color: var(--text-muted);
  max-width: 38ch;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--border);
}

.cat-band:nth-child(even) .cat-band__copy {
  order: -1;
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.cat-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.cat-band:nth-child(even) .cat-band__copy {
  border-left: none;
  border-right: 1px solid var(--border);
}

.cat-band__copy p {
  margin: 1rem 0 1.75rem;
  color: var(--text-muted);
  max-width: 42ch;
}

.accordion {
  max-width: 780px;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
}

.accordion__btn::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__item.is-open .accordion__btn::after {
  content: "–";
}

.accordion__panel {
  display: none;
  padding: 0 0 1.5rem;
  color: var(--text-muted);
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.photo-strip figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.regions {
  background: var(--dark);
  color: var(--on-accent);
  border-top: 1px solid var(--border);
  padding: var(--space-section) 0;
}

.regions .kicker {
  color: rgba(255, 255, 255, 0.55);
}

.regions p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  margin-top: 1.5rem;
}

.regions__names {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3rem;
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0;
}

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-top: 0.25rem;
}

.page-hero .lede {
  margin-top: 1.25rem;
  color: var(--text-muted);
  max-width: 58ch;
}

.catalog-list {
  display: flex;
  flex-direction: column;
}

.catalog-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.catalog-row__thumb {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.catalog-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-row__body {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-row__body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 0.35rem;
}

.catalog-row__region {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.catalog-row__body > p:not(.catalog-row__region) {
  color: var(--text-muted);
  max-width: 52ch;
}

.catalog-row__action {
  justify-self: end;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.heritage-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 240ms ease;
}

.heritage-card:hover {
  box-shadow: 0 16px 40px rgba(21, 32, 42, 0.1);
}

.heritage-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.heritage-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heritage-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.heritage-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.heritage-card__meta h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.35;
}

.heritage-card__meta p {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin: 0;
}

.heritage-card__body > p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.5rem;
}

.catalog-close {
  padding: 64px 0 var(--space-section);
  color: var(--text-muted);
  max-width: 56ch;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: var(--space-section) 0;
  border-top: 1px solid var(--border);
}

.editorial-band:nth-child(even) {
  background: var(--surface);
}

.editorial-band__inner {
  width: min(100% - 48px, 820px);
  margin-inline: auto;
}

.editorial-band h2 {
  margin-bottom: 1.5rem;
}

.editorial-band p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.editorial-band p:last-child {
  margin-bottom: 0;
}

.contact-wrap {
  padding: 64px 0 var(--space-section);
}

.contact-panel {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.contact-panel > p,
#contact-form-view > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-body > p:first-child {
  font-size: 0.9rem;
}

.contact-email {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  display: none;
  margin-top: 0.5rem;
  color: #8b2e2e;
  font-size: 0.85rem;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  display: none;
  margin-top: 1rem;
  color: #8b2e2e;
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.confirm-panel {
  text-align: left;
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-body {
  padding: 64px 0 var(--space-section);
  max-width: 780px;
}

.legal-body h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 0.75rem;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 2.5rem 0 1rem;
}

.legal-body h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 64px 0 var(--space-section);
}

.sitemap-group h2 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sitemap-group ul {
  list-style: none;
}

.sitemap-group li {
  margin-bottom: 0.75rem;
}

.sitemap-group a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.1rem;
}

.sitemap-group a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
  padding-bottom: 3rem;
}

.footer-brand .brand {
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 42ch;
  margin-bottom: 1rem;
}

.footer-adults {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-groups-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-group ul {
  list-style: none;
}

.footer-group li {
  margin-bottom: 0.55rem;
}

.footer-group a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-top {
  align-self: flex-end;
  text-align: right;
}

.footer-top a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  width: min(100% - 48px, var(--max-w));
  margin-inline: auto;
  padding: 1.5rem 0 2rem;
}

.footer-independence {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-in {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  pointer-events: none;
}

.consent__sheet {
  pointer-events: auto;
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 64px rgba(21, 32, 42, 0.22);
  padding: 1.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(0);
}

.consent__copy {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.consent__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.consent__actions .btn {
  width: 100%;
  order: 2;
}

.consent__actions [data-consent="accept"] {
  order: 1;
}

.consent__actions [data-consent="reject"] {
  order: 3;
}

.consent__actions [data-consent="manage"] {
  order: 4;
}

.consent__policy {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  text-align: center;
}

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(18, 32, 41, 0.45);
}

.consent-dialog[hidden] {
  display: none;
}

.consent-dialog__panel {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 64px rgba(21, 32, 42, 0.22);
  padding: 1.75rem;
  width: min(100%, 420px);
  max-height: 90vh;
  overflow: auto;
}

.consent-dialog__panel h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.consent-cat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.consent-cat strong {
  font-weight: 400;
  font-family: var(--font-heading);
}

.consent-dialog__actions {
  margin-top: 1.5rem;
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 0;
    width: 400px;
  }

  .consent__sheet {
    margin: 0;
  }

  .consent__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .consent__actions .btn {
    width: auto;
    flex: 1 1 auto;
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .consent__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .consent__actions .btn {
    width: auto;
    flex: 1 1 40%;
  }
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .heritage-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-center,
  .nav-contact {
    display: none;
  }

  .nav.is-open .nav-center,
  .nav.is-open .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-column: 1 / -1;
    padding-bottom: 1.25rem;
    gap: 0.85rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__image {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
  }

  .hero__panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    max-width: none;
    border-left: none;
    border-right: none;
  }

  .cat-band {
    grid-template-columns: 1fr;
  }

  .cat-band:nth-child(even) .cat-band__copy {
    order: 0;
  }

  .cat-band__copy,
  .cat-band:nth-child(even) .cat-band__copy {
    border: none;
    border-top: 1px solid var(--border);
  }

  .cat-band__media img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: 80px;
  }

  .wrap {
    width: min(100% - 32px, var(--max-w));
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .photo-strip img {
    height: 220px;
  }

  .catalog-row {
    grid-template-columns: 96px 1fr;
    gap: 1.25rem;
  }

  .catalog-row__thumb {
    width: 96px;
    height: 96px;
  }

  .catalog-row__action {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.5rem;
  }


  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .footer-groups {
    grid-template-columns: 1fr 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .regions__names {
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 560px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 24px, var(--max-w));
  }

  .catalog-row {
    grid-template-columns: 1fr;
  }

  .catalog-row__thumb {
    width: 100%;
    height: 200px;
  }

  .footer-groups {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .catalog-row__action .btn {
    width: auto;
  }
}
