.cms-content h3 {
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  color: var(--blue-70);
}

.cms-content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--dark-70);
}

.cms-content p {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2em;
  color: var(--dark-70);
}

.cms-content a {
  text-decoration: underline;
  color: var(--blue-70);
}

.cms-content em {
  font-style: italic;
}

.cms-content u {
  text-decoration: underline;
}

.cms-content li {
  position: relative;
  gap: 8px;
  padding-left: 32px;
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2em;
}

.cms-content li strong {
  font-weight: 600;
}

.cms-content li::before {
  content: "";
  background-image: url("/content/new/icons/check-blue.svg");
  background-size: 100%;
  width: 24px;
  height: 24px;
  position: absolute;
  margin-left: -32px;
}

.back-blue .cms-content > * {
  color: var(--light-00);
}

.back-blue .cms-content li::before {
  background-image: url("/content/new/icons/check.svg");
}

.hh-finder {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.hh-card-find {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.hh-card-find header {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
}

.hh-card-find-tab.active {
  background-color: var(--blue-80);
  padding: 12px 24px;
  border-radius: 8px 8px 0px 0px;
}

.hh-card-find-tab {
  background-color: var(--light-10);
  color: var(--blue-80);
  padding: 12px 24px;
  border-radius: 8px 8px 0px 0px;
  cursor: pointer;
}

.hh-card-find-tab.active h3,
.hh-card-find-tab.active p {
  color: var(--light-00);
}

.hh-card-find-tab h3,
.hh-card-find-tab p {
  color: var(--blue-80);
}

.hh-card-find-tab-content {
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: row;
  background-color: var(--light-00);
  padding: 16px 24px;
  gap: 8px;
  border-radius: 8px;
}

.hh-card-find-small {
  max-width: 540px;
}
.hh-card-find-mid {
  max-width: 840px;
}

.hh-card-find footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 8px;
}

.tours-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 32px 0;
}

.tg-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.tg-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (max-width: 964px) {
  .hh-card-find-tab-content {
    flex-direction: column;
}
.tours-grid-container {
    display: flex;
    flex-direction: column;
  }
}