:root {
  --cream: #fffcef;
  --paper: #f7f0e3;
  --beige: #ead6c1;
  --olive: #7c9276;
  --olive-dark: #647962;
  --green: #0a4538;
  --wine: #7b0813;
  --wine-dark: #5d060e;
  --text: #24332d;
  --muted: #68736d;
  --line: rgba(10, 69, 56, 0.16);
  --shadow: 0 24px 60px rgba(58, 43, 28, 0.12);
  --container: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(10, 69, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 69, 56, 0.035) 1px, transparent 1px);
  background-size: 210px 210px;
  font-family: "Onest", Arial, sans-serif;
}

main {
  overflow: clip;
}

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

a {
  color: inherit;
}

.hg-skip-link {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 1000;
  padding: 10px 16px;
  transform: translate(-50%, -180%);
  color: var(--cream);
  background: var(--green);
}

.hg-skip-link:focus {
  transform: translate(-50%, 0);
}

.hg-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: var(--container);
  min-height: 66px;
  margin: 14px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 239, 0.94);
  box-shadow: 0 12px 36px rgba(53, 38, 23, 0.08);
  backdrop-filter: blur(14px);
}

.hg-logo {
  color: var(--green);
  font-family: "Forum", Georgia, serif;
  font-size: 27px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.hg-nav {
  display: flex;
  gap: 36px;
}

.hg-nav a,
.hg-mobile-menu a {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.hg-nav a:hover,
.hg-nav a:focus-visible,
.hg-mobile-menu a:hover,
.hg-mobile-menu a:focus-visible {
  color: var(--wine);
}

.hg-menu-button,
.hg-mobile-menu {
  display: none;
}

.hg-hero,
.hg-materials,
.hg-benefits,
.hg-examples,
.hg-contact {
  width: var(--container);
  margin-inline: auto;
}

.hg-section-marker,
.hg-kicker,
.hg-example__copy > span {
  margin: 0;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hg-section-marker span {
  display: inline-block;
  min-width: 46px;
}

.hg-kicker {
  margin-bottom: 20px;
}

.hg-section-marker--light,
.hg-kicker--light {
  color: #f0d7c0;
}

.hg-button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wine);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.hg-button:hover,
.hg-button:focus-visible {
  transform: translateY(-3px);
}

.hg-button--primary {
  color: var(--cream);
  background: var(--wine);
}

.hg-button--primary:hover,
.hg-button--primary:focus-visible {
  background: var(--wine-dark);
}

.hg-button--secondary {
  color: var(--wine);
}

.hg-button--secondary:hover,
.hg-button--secondary:focus-visible {
  color: var(--cream);
  background: var(--wine);
}

.hg-hero {
  min-height: calc(100vh - 94px);
  padding: 76px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 6vw, 88px);
}

.hg-hero h1,
.hg-section-head h2,
.hg-benefits h2,
.hg-contact h2,
.hg-project-panel h3 {
  margin: 0;
  color: var(--green);
  font-family: "Forum", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.hg-hero h1 {
  max-width: 720px;
  margin-top: 34px;
  font-size: clamp(55px, 5.1vw, 76px);
  line-height: 0.98;
}

.hg-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.55;
}

.hg-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hg-hero__visual {
  position: relative;
  min-height: 610px;
}

.hg-hero-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hg-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--paper);
}

.hg-hero-card--wide {
  top: 30px;
  right: 0;
  width: 91%;
  aspect-ratio: 1.6 / 1;
  padding: 13px;
  transform: rotate(1.5deg);
}

.hg-hero-card--small {
  right: 3%;
  bottom: 32px;
  z-index: 2;
  width: 46%;
  aspect-ratio: 1.28 / 1;
  padding: 10px;
  transform: rotate(-4deg);
}

.hg-hero__note {
  position: absolute;
  bottom: 45px;
  left: 3%;
  max-width: 300px;
  padding-left: 18px;
  border-left: 2px solid var(--wine);
  color: var(--green);
  font-family: "Forum", Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
}

.hg-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: 40px;
}

.hg-section-head h2,
.hg-benefits h2,
.hg-contact h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
}

.hg-materials {
  padding: 108px 0 120px;
}

.hg-materials .hg-section-head h2 {
  font-size: clamp(48px, 3.75vw, 54px);
  white-space: nowrap;
}

.hg-materials__list {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  list-style: none;
}

.hg-materials__list li {
  min-height: 104px;
  padding: 24px 28px 24px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.hg-materials__list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.hg-materials__list li:nth-child(even) {
  padding-left: 28px;
}

.hg-materials__list span,
.hg-benefits__grid span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hg-materials__list p {
  margin: 0;
  color: var(--green);
  font-family: "Forum", Georgia, serif;
  font-size: clamp(26px, 2.1vw, 33px);
  line-height: 1.15;
}

.hg-benefits {
  width: 100%;
  padding: 104px max(24px, calc((100vw - 1240px) / 2)) 112px;
  color: var(--cream);
  background: var(--olive-dark);
}

.hg-benefits__intro {
  max-width: 920px;
}

.hg-benefits h2 {
  color: var(--cream);
  font-size: clamp(52px, 4.3vw, 62px);
}

.hg-benefits__grid {
  margin: 64px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 252, 239, 0.32);
  border-bottom: 1px solid rgba(255, 252, 239, 0.32);
  list-style: none;
}

.hg-benefits__grid li {
  min-height: 220px;
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 1px solid rgba(255, 252, 239, 0.22);
}

.hg-benefits__grid li:last-child {
  border-right: 0;
}

.hg-benefits__grid span {
  color: #f0d7c0;
}

.hg-benefits__grid p {
  margin: 0;
  color: var(--cream);
  font-family: "Forum", Georgia, serif;
  font-size: clamp(24px, 1.8vw, 29px);
  line-height: 1.17;
}

.hg-examples {
  position: relative;
  padding: 120px 0 150px;
}

.hg-examples__intro h2 {
  max-width: none;
  font-size: clamp(48px, 4.3vw, 62px);
  line-height: 1;
  white-space: nowrap;
}

.hg-projects {
  margin-top: 68px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(12, 43, 34, 0.1);
}

.hg-projects__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.hg-projects__nav button {
  min-height: 76px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--green);
  background: var(--paper);
  font: 650 12px/1.35 "Onest", sans-serif;
  letter-spacing: 0.035em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.hg-projects__nav button:last-child {
  border-right: 0;
}

.hg-projects__nav button span {
  display: block;
  margin-bottom: 7px;
  color: var(--wine);
  font-size: 10px;
}

.hg-projects__nav button[aria-selected="true"] {
  color: var(--cream);
  background: var(--olive);
}

.hg-projects__nav button[aria-selected="true"] span {
  color: var(--cream);
}

.hg-projects__nav button:hover,
.hg-projects__nav button:focus-visible {
  color: var(--cream);
  background: var(--green);
}

.hg-project-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.9fr);
  background: var(--cream);
}

.hg-project-panel[hidden] {
  display: none;
}

.hg-project-panel__media {
  min-width: 0;
  padding: clamp(20px, 2.2vw, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 146, 118, 0.15);
}

.hg-project-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
}

.hg-project-panel__copy {
  min-width: 0;
  padding: clamp(32px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--line);
}

.hg-project-panel__copy > span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hg-project-panel h3 {
  margin-top: clamp(54px, 8vh, 96px);
  font-size: clamp(32px, 2.35vw, 37px);
  line-height: 1.08;
}

.hg-project-panel__copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hg-project-panel__action {
  margin-top: 32px;
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--wine);
  color: var(--cream);
  background: var(--wine);
  font: 700 12px/1.3 "Onest", sans-serif;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.hg-project-panel__action:hover,
.hg-project-panel__action:focus-visible {
  color: var(--wine);
  background: var(--cream);
  transform: translateY(-2px);
}

.hg-pdf-modal {
  width: min(1240px, calc(100vw - 40px));
  max-width: none;
  height: min(900px, calc(100dvh - 40px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 239, 0.32);
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 28px 90px rgba(12, 43, 34, 0.32);
}

.hg-pdf-modal::backdrop {
  background: rgba(10, 24, 20, 0.78);
  backdrop-filter: blur(6px);
}

.hg-pdf-modal__panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.hg-pdf-modal__header,
.hg-pdf-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
}

.hg-pdf-modal__header {
  border-bottom: 1px solid var(--line);
}

.hg-pdf-modal__header span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hg-pdf-modal__header h2 {
  margin-top: 4px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1;
}

.hg-pdf-modal__close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  font: 300 31px/1 Onest, sans-serif;
  cursor: pointer;
}

.hg-pdf-modal__close:hover,
.hg-pdf-modal__close:focus-visible {
  border-color: var(--wine);
  color: var(--wine);
}

.hg-pdf-modal__viewer {
  min-height: 0;
  padding: 14px;
  background: var(--beige);
}

.hg-pdf-modal__viewer iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.hg-pdf-modal__footer {
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.hg-pdf-modal__footer p {
  margin: 0;
  color: var(--muted);
}

.hg-pdf-modal__footer a {
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
}

body.hg-modal-open {
  overflow: hidden;
}

.hg-contact {
  padding: 86px 0 30px;
  border-top: 1px solid var(--line);
}

.hg-contact__layout {
  padding-bottom: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 90px;
}

.hg-contact__intro h2 {
  max-width: 760px;
  margin-top: 52px;
  font-size: clamp(50px, 4.2vw, 60px);
}

.hg-contact__intro > p:not(.hg-section-marker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hg-contact__intro .hg-button {
  margin-top: 30px;
}

.hg-contact__directory {
  padding-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.hg-contact__directory div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hg-contact__directory p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hg-contact__directory a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.hg-contact__directory a:hover,
.hg-contact__directory a:focus-visible {
  color: var(--wine);
}

.hg-footer {
  padding: 24px 0 4px;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.4fr auto;
  align-items: end;
  gap: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.hg-footer > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hg-footer strong {
  color: var(--green);
  font-family: "Forum", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.hg-footer p {
  margin: 0;
}

.hg-cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 480px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.hg-cookie[hidden] {
  display: none;
}

.hg-cookie p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hg-cookie__title {
  color: var(--green) !important;
  font-weight: 700;
}

.hg-cookie__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hg-cookie__actions a,
.hg-cookie__actions button {
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
}

.hg-cookie__actions button {
  padding: 9px 12px;
  border: 0;
  color: var(--cream);
  background: var(--wine);
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .hg-hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hg-hero__visual {
    min-height: 520px;
  }

  .hg-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hg-benefits__grid li:nth-child(3) {
    border-right: 0;
  }

  .hg-benefits__grid li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 252, 239, 0.22);
  }

  .hg-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .hg-header {
    min-height: 58px;
    padding: 0 18px;
  }

  .hg-nav {
    display: none;
  }

  .hg-menu-button {
    display: block;
    border: 0;
    color: var(--green);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hg-mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    padding: 22px;
    display: grid;
    gap: 18px;
    border: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow);
  }

  .hg-mobile-menu[hidden] {
    display: none;
  }

  .hg-hero {
    min-height: 0;
    padding: 62px 0 82px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hg-hero h1 {
    font-size: clamp(50px, 12vw, 66px);
  }

  .hg-hero__visual {
    min-height: 480px;
  }

  .hg-section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hg-materials {
    padding: 82px 0 92px;
  }

  .hg-materials__list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hg-materials__list li:nth-child(odd) {
    border-right: 0;
  }

  .hg-materials__list li:nth-child(even) {
    padding-left: 0;
  }

  .hg-benefits {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .hg-benefits__grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hg-benefits__grid li,
  .hg-benefits__grid li:nth-child(3) {
    min-height: 0;
    padding: 22px 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    border-top: 1px solid rgba(255, 252, 239, 0.22);
    border-right: 0;
  }

  .hg-examples {
    padding: 88px 0 96px;
  }

  .hg-examples__intro h2 {
    font-size: clamp(42px, 7vw, 62px);
    white-space: normal;
  }

  .hg-materials .hg-section-head h2 {
    white-space: normal;
  }

  .hg-projects {
    margin-top: 48px;
  }

  .hg-projects__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hg-projects__nav button {
    border-bottom: 1px solid var(--line);
  }

  .hg-projects__nav button:nth-child(3) {
    border-right: 0;
  }

  .hg-projects__nav button:nth-child(n + 4) {
    border-bottom: 0;
  }

  .hg-project-panel {
    grid-template-columns: 1fr;
  }

  .hg-project-panel__media {
    min-height: 350px;
  }

  .hg-project-panel__copy {
    min-height: 350px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hg-contact__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hg-contact__directory {
    padding-top: 30px;
  }
}

@media (max-width: 520px) {
  :root {
    --container: calc(100% - 24px);
  }

  .hg-header {
    top: 8px;
    margin-top: 8px;
  }

  .hg-logo {
    font-size: 23px;
  }

  .hg-hero {
    padding-top: 52px;
  }

  .hg-hero h1 {
    font-size: clamp(45px, 13.5vw, 58px);
  }

  .hg-hero__lead {
    font-size: 18px;
  }

  .hg-actions {
    flex-direction: column;
  }

  .hg-button {
    width: 100%;
  }

  .hg-hero__visual {
    min-height: 390px;
  }

  .hg-hero-card--wide {
    width: 96%;
  }

  .hg-hero-card--small {
    width: 52%;
  }

  .hg-hero__note {
    max-width: 190px;
    font-size: 20px;
  }

  .hg-section-head h2,
  .hg-benefits h2,
  .hg-contact h2 {
    font-size: 43px;
  }

  .hg-benefits h2 br,
  .hg-contact h2 br {
    display: none;
  }

  .hg-materials__list p {
    font-size: 27px;
  }

  .hg-projects {
    margin-top: 38px;
  }

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

  .hg-projects__nav button:nth-child(2n) {
    border-right: 0;
  }

  .hg-projects__nav button:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .hg-projects__nav button:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .hg-projects__nav button:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .hg-project-panel__media {
    min-height: 260px;
    padding: 16px;
  }

  .hg-project-panel__copy {
    min-height: 330px;
    padding: 26px 16px;
  }

  .hg-project-panel h3 {
    font-size: 29px;
    line-height: 1.08;
  }

  .hg-pdf-modal {
    width: calc(100vw - 16px);
    height: calc(100dvh - 16px);
  }

  .hg-pdf-modal__header,
  .hg-pdf-modal__footer {
    padding: 14px 16px;
  }

  .hg-pdf-modal__header h2 {
    font-size: 24px;
  }

  .hg-pdf-modal__viewer {
    padding: 8px;
  }

  .hg-pdf-modal__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hg-contact {
    padding-top: 72px;
  }

  .hg-contact__directory {
    grid-template-columns: 1fr;
  }

  .hg-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .hg-cookie {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.brand-logo-img { display: block; width: auto; max-width: 180px; height: clamp(18px, 1.5vw, 24px); object-fit: contain; }
.brand-logo-img--footer { width: min(180px, 100%); max-width: 180px; height: auto; }
