:root {
  color: #17212b;
  background: #f7f3e8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f3e8;
}

a {
  color: #155c4c;
  text-underline-offset: 3px;
}

.guide-header,
.guide-footer {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guide-header {
  min-height: 76px;
  border-bottom: 1px solid #d9d8cf;
}

.guide-header nav {
  display: flex;
  gap: 24px;
}

.guide-header nav a,
.guide-app-link,
.guide-brand,
.guide-footer a {
  color: #17212b;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.guide-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.guide-app-link {
  padding: 10px 15px;
  border: 1px solid #155c4c;
  border-radius: 6px;
}

.guide-article {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 30px;
}

.guide-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  color: #66706e;
  font-size: 13px;
}

.guide-eyebrow {
  margin: 0 0 10px;
  color: #155c4c;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.04;
}

.guide-lead {
  max-width: 760px;
  margin: 25px 0 34px;
  color: #44504e;
  font-size: 21px;
  line-height: 1.55;
}

.guide-image {
  display: block;
  width: 100%;
  max-height: 360px;
  margin: 0 0 64px;
  object-fit: cover;
  object-position: center 42%;
}

.guide-section {
  padding: 38px 0;
  border-top: 1px solid #d9d8cf;
}

.guide-section h2 {
  margin: 0 0 18px;
  font-size: 29px;
}

.guide-section p,
.guide-section li {
  color: #35413f;
  font-size: 17px;
  line-height: 1.68;
}

.guide-section ul {
  padding-left: 22px;
}

.guide-section li {
  margin: 9px 0;
}

.guide-faq details {
  padding: 17px 0;
  border-top: 1px solid #d9d8cf;
}

.guide-faq summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.guide-sources p {
  color: #66706e;
  font-size: 14px;
}

.guide-cta {
  display: grid;
  margin: 36px 0;
  padding: 34px 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  border-top: 3px solid #155c4c;
  border-bottom: 1px solid #d9d8cf;
}

.guide-cta h2 {
  margin: 0 0 9px;
  font-size: 28px;
}

.guide-cta p {
  margin-bottom: 0;
  color: #44504e;
  line-height: 1.55;
}

.guide-cta > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border-radius: 6px;
  color: white;
  background: #155c4c;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.guide-footer {
  min-height: 100px;
  color: #66706e;
  border-top: 1px solid #d9d8cf;
  font-size: 13px;
}

.guide-consent {
  position: fixed;
  z-index: 10;
  right: 18px;
  bottom: 18px;
  width: min(440px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid #d9d8cf;
  border-radius: 7px;
  background: white;
  box-shadow: 0 14px 36px rgba(23, 33, 43, 0.16);
}

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

.guide-consent p {
  margin: 0 0 14px;
  color: #44504e;
  font-size: 13px;
  line-height: 1.5;
}

.guide-consent > div {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.guide-consent button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid #155c4c;
  border-radius: 6px;
  color: #155c4c;
  background: white;
  font-weight: 800;
  cursor: pointer;
}

.guide-consent button:last-child {
  color: white;
  background: #155c4c;
}

@media (max-width: 720px) {
  .guide-header {
    min-height: 66px;
  }

  .guide-header nav {
    display: none;
  }

  .guide-article {
    padding-top: 38px;
  }

  .guide-breadcrumb {
    margin-bottom: 30px;
  }

  h1 {
    font-size: 40px;
  }

  .guide-lead {
    font-size: 18px;
  }

  .guide-image {
    min-height: 230px;
    margin-bottom: 42px;
  }

  .guide-cta {
    grid-template-columns: 1fr;
  }

  .guide-cta > a {
    justify-self: start;
  }

  .guide-footer {
    flex-wrap: wrap;
    padding: 24px 0;
  }

  .guide-consent > div {
    align-items: stretch;
    flex-direction: column;
  }
}
