/* ==========================================================================
   Stay Region Matcher - /where-should-i-stay
   ========================================================================== */

.srm-hero {
  position: relative;
  border-radius: 80px 80px 80px 20px;
  overflow: hidden;
  margin: 36px 0 0;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center center;
  background-color: #173f4f;
}
.srm-hero-back {
  position: absolute;
  top: 34px;
  left: 38px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 12px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  line-height: 1;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.srm-hero-back:hover,
.srm-hero-back:focus {
  background: rgba(0, 0, 0, 0.62);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateX(-2px);
}
.srm-hero-back i {
  font-size: 11px;
  opacity: 0.9;
}
.srm-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 70px 5% 30px;
  background: linear-gradient(0deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.28) 60%, transparent 100%);
}
.srm-hero h1 {
  color: #fff;
  font-size: 34px;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
  line-height: 1.15;
}
.srm-hero h1 i {
  margin-right: 8px;
}
.srm-hero p {
  color: rgba(255,255,255,.94);
  font-size: 19px;
  margin: 0;
  max-width: 700px;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
  line-height: 1.5;
}

.srm-shell {
  max-width: 980px;
  margin: 24px auto;
  background: #fff;
  border: 1px solid #e1e7e4;
  border-radius: 16px;
  box-shadow: 0 5px 22px rgba(0,0,0,.06);
  overflow: hidden;
}
.srm-progress {
  position: relative;
  min-height: 42px;
  background: #f4f8f6;
  border-bottom: 1px solid #e1e7e4;
}
.srm-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #1f6d5b, #2f8f78);
  transition: width .25s ease;
}
.srm-progress span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 12px 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  text-shadow: 0 1px 1px rgba(0,0,0,.22);
}
.srm-progress span.is-complete {
  color: #fff;
}
#srm-app {
  padding: 24px;
}
.srm-noscript {
  margin: 0;
  text-align: center;
  color: #555;
}
.srm-question h2,
.srm-results-header h2 {
  margin: 0 0 6px;
  color: #14261f;
  font-size: 28px;
  line-height: 1.2;
}
.srm-question p,
.srm-results-header p {
  margin: 0 0 18px;
  color: #5b6865;
  font-size: 16px;
  line-height: 1.5;
}
.srm-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.srm-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  min-height: 72px;
  padding: 15px 16px;
  border: 2px solid #dde6e2;
  border-radius: 12px;
  background: #fff;
  color: #263b36;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.srm-option:hover {
  border-color: #9fc8bc;
  background: #f7fbfa;
  transform: translateY(-1px);
}
.srm-option.is-selected {
  border-color: #1f6d5b;
  background: #eef8f5;
}
.srm-option-letter {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #1f6d5b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
.srm-option-label {
  display: block;
  color: #17252f;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.srm-option-sub {
  display: block;
  margin-top: 3px;
  color: #66716e;
  font-size: 14px;
  line-height: 1.4;
}
.srm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.srm-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 9px;
  border: 1px solid #1f6d5b;
  background: #1f6d5b;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
}
.srm-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
}
.srm-btn-secondary {
  background: #fff;
  color: #1f6d5b !important;
}
.srm-btn-muted {
  border-color: #cbd8d4;
  background: #fff;
  color: #4f615d !important;
}
.srm-results-header {
  margin-bottom: 18px;
}
.srm-match-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 2px solid #1f6d5b;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31,109,91,.12);
}
.srm-match-img {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.srm-match-body {
  padding: 22px;
}
.srm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  color: #1f6d5b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.srm-match-body h3 {
  margin: 0 0 6px;
  color: #17252f;
  font-size: 26px;
  line-height: 1.2;
}
.srm-match-score {
  margin: 0 0 12px;
  color: #66716e;
  font-size: 14px;
  font-weight: 800;
}
.srm-match-body p {
  margin: 0 0 14px;
  color: #465653;
  font-size: 15px;
  line-height: 1.55;
}
.srm-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 14px 0;
}
.srm-mini-list {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7faf9;
  border: 1px solid #dde7e3;
}
.srm-mini-list h4 {
  margin: 0 0 7px;
  color: #31443f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.srm-mini-list ul {
  margin: 0;
  padding-left: 18px;
  color: #4d5c58;
  font-size: 14px;
  line-height: 1.55;
}
.srm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 16px;
}
.srm-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf6f3;
  color: #1f6d5b;
  font-size: 12px;
  font-weight: 900;
}
.srm-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}
.srm-more {
  margin-top: 22px;
}
.srm-more h3 {
  margin: 0 0 12px;
  color: #17252f;
  font-size: 20px;
}
.srm-more-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.srm-region-card {
  border: 1px solid #e1e7e4;
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}
.srm-region-card h4 {
  margin: 0 0 4px;
  color: #17252f;
  font-size: 18px;
  line-height: 1.3;
}
.srm-region-card p {
  margin: 0 0 10px;
  color: #5d6966;
  font-size: 14px;
  line-height: 1.5;
}
.srm-bottom-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 28px 0 34px;
}
.srm-bottom-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 12px;
  background: #f7faf9;
  border: 1px solid #dde7e3;
  color: #263b36 !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.45;
}
.srm-bottom-link i {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #1f6d5b;
  color: #fff;
}

@media (min-width: 640px) {
  .srm-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .srm-list-grid,
  .srm-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .srm-bottom-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 860px) {
  .srm-hero {
    margin-top: 112px;
    min-height: 340px;
  }
  .srm-hero h1 {
    font-size: 42px;
  }
  .srm-hero p {
    font-size: 21px;
  }
  .srm-match-hero {
    grid-template-columns: minmax(280px, 40%) 1fr;
  }
  .srm-match-img {
    min-height: auto;
  }
}
@media (max-width: 540px) {
  .srm-hero {
    margin-top: 24px;
    border-radius: 44px 44px 44px 14px;
    min-height: 270px;
  }
  .srm-hero-back {
    top: 24px;
    left: 24px;
    font-size: 12px;
    padding: 6px 12px 6px 10px;
  }
  .srm-hero h1 {
    font-size: 30px;
  }
  .srm-hero p {
    font-size: 17px;
  }
  #srm-app {
    padding: 18px;
  }
  .srm-question h2,
  .srm-results-header h2 {
    font-size: 24px;
  }
  .srm-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .srm-btn {
    justify-content: center;
  }
}
@media print {
  .goUS-header,
  .footer,
  .srm-hero-back,
  .srm-progress,
  .srm-nav,
  .srm-bottom-links,
  .hg-aff-wrap {
    display: none !important;
  }
  .srm-hero {
    min-height: auto;
    border-radius: 0;
    background-image: none !important;
    background: #fff !important;
  }
  .srm-hero-overlay {
    background: none;
    padding: 0 0 18px;
  }
  .srm-hero h1,
  .srm-hero p {
    color: #111;
    text-shadow: none;
  }
  .srm-shell,
  .srm-match-hero,
  .srm-region-card {
    box-shadow: none;
  }
}
