.twc-guide-review-bar {
  max-width: 1250px;
  margin: 16px auto 0;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font:
    12px/1.5 "Source Sans 3",
    sans-serif;
  color: #4d554c;
}
.twc-guide-review-bar a {
  color: #314d57;
}
.twc-guide-hub {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 70px;
  color: #233e47;
  font:
    16px/1.6 "Source Sans 3",
    -apple-system,
    sans-serif;
}
.twc-guide-hub * {
  box-sizing: border-box;
}
.twc-guide-hub header {
  max-width: 760px;
  margin-bottom: 30px;
}
.twc-guide-hub header h1 {
  font:
    400 clamp(34px, 5vw, 60px)/1.1 Anton,
    Impact,
    sans-serif;
  text-transform: uppercase;
  color: #233e47;
  margin: 0 0 20px;
}
.twc-guide-hub h2,
.twc-guide-hub h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.3;
}
.twc-guide-hub h2 {
  font-size: 23px;
  color: #233e47;
  margin: 0 0 16px;
}
.twc-guide-hub h3 {
  font-size: 20px;
  margin: 0 0 12px;
}
.twc-guide-hub p {
  margin: 0 0 15px;
}
.twc-guide-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 700;
}
.twc-guide-hub a {
  color: #244d5b;
  text-decoration: none;
}
.twc-guide-hub a:hover {
  text-decoration: underline;
}
.twc-guide-hub label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 650;
}
.twc-guide-hub input,
.twc-guide-hub select,
.twc-guide-hub button {
  font:
    14px "Source Sans 3",
    sans-serif;
  min-height: 46px;
  border-radius: 6px;
  padding: 10px 14px;
  border: 1px solid #233e4760;
}
.twc-guide-hub input,
.twc-guide-hub select {
  background: #fffaf0;
  color: #233e47;
  width: 100%;
  max-width: 100%;
}
.twc-guide-hub button {
  background: #233e47;
  color: #fff3d7;
  cursor: pointer;
  white-space: nowrap;
}
.twc-guide-hub :focus-visible {
  outline: 3px solid #8b5c00;
  outline-offset: 3px;
}
.twc-guide-search > div {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.twc-guide-search {
  max-width: 780px;
  margin-bottom: 28px;
}
.twc-reading-path {
  background: #233e47;
  color: #f9eed7;
  padding: 26px;
  border-radius: 10px;
  margin-bottom: 38px;
}
.twc-reading-path h2 {
  color: #f8ce80;
}
.twc-reading-path p {
  font-size: 13px;
  max-width: 900px;
  margin-top: 16px;
}
.twc-path-selectors {
  display: flex;
  gap: 16px;
}
.twc-path-selectors label {
  flex: 1;
  max-width: 360px;
}
.twc-reading-path ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style-position: inside;
  margin: 0;
  padding: 0;
  counter-reset: path;
}
.twc-reading-path li {
  list-style: none;
  counter-increment: path;
  background: #ffffff0b;
  border: 1px solid #ffffff25;
  border-radius: 6px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.twc-reading-path li:before {
  content: counter(path, decimal-leading-zero);
  color: #f8ce80;
  font-size: 20px;
}
.twc-reading-path a {
  color: #fff3d7;
  font-size: 14px;
}
.twc-guide-results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}
.twc-guide-results-heading h2 {
  margin: 0;
}
.twc-guide-results-heading span {
  font-size: 12px;
}
.twc-guide-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.twc-guide-cards article {
  background: #fffaf066;
  border: 1px solid #233e4730;
  border-radius: 9px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.twc-guide-cards p {
  font-size: 13px;
  color: #485d61;
}
.twc-guide-cards small {
  font-size: 11px;
  border-top: 1px solid #233e4720;
  padding-top: 12px;
  margin-top: auto;
  color: #69572b;
}
.twc-read-guide {
  font-size: 12px;
  font-weight: 700;
  margin-top: 16px;
}
@media (max-width: 800px) {
  .twc-guide-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .twc-reading-path ol {
    grid-template-columns: 1fr;
  }
  .twc-guide-hub {
    padding: 22px 16px 45px;
  }
}
@media (max-width: 500px) {
  .twc-guide-cards {
    grid-template-columns: 1fr;
  }
  .twc-path-selectors {
    flex-direction: column;
  }
  .twc-guide-search > div {
    flex-direction: column;
  }
  .twc-reading-path {
    padding: 20px;
  }
  .twc-guide-results-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .twc-library-shortcut {
    padding: 8px 16px;
  }
}
