.rt-fyh {
  --rt-fyh-ink: #003b55;
  --rt-fyh-accent: #2bb6d3;
  --rt-fyh-accent-dark: #168ca8;
  --rt-fyh-workspace: #f0f0f0;
  --rt-fyh-surface: #ffffff;
  --rt-fyh-border: #d8d8d8;
  --rt-fyh-muted: #5f6264;
  --rt-fyh-heading-font: var(--h3_typography-font-family, "Arial Narrow", Arial, sans-serif);
  --rt-fyh-body-font: var(--body_typography-font-family, Arial, sans-serif);
  --rt-fyh-desktop-height: 790px;
  color: var(--rt-fyh-ink);
  font-family: var(--rt-fyh-body-font);
  width: 100%;
}

.rt-fyh,
.rt-fyh * {
  box-sizing: border-box;
}

.rt-fyh [hidden] {
  display: none !important;
}

.rt-fyh__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.rt-fyh__mobile-toggle,
.rt-fyh__mobile-toolbar {
  display: none;
}

.rt-fyh__filter-region {
  background: var(--rt-fyh-surface);
  padding: 26px 20px 28px;
}

.rt-fyh__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
}

.rt-fyh__filter-heading {
  color: var(--rt-fyh-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-right: 6px;
  white-space: nowrap;
}

.rt-fyh__filter-control {
  position: relative;
  display: block;
  margin: 0;
}

.rt-fyh__filter-control::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--rt-fyh-accent);
  border-bottom: 2px solid var(--rt-fyh-accent);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.rt-fyh__filter-control select {
  appearance: none;
  min-width: 120px;
  height: 40px;
  margin: 0;
  padding: 0 34px 0 14px;
  border: 1px solid transparent;
  border-radius: 0;
  background: #f3f3f3;
  color: var(--rt-fyh-ink);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.rt-fyh__filter-control select[data-filter="price"] {
  min-width: 130px;
}

.rt-fyh__filter-control select:focus-visible,
.rt-fyh__clear:focus-visible,
.rt-fyh__cta:focus-visible,
.rt-fyh__card-title a:focus-visible,
.rt-fyh__card-image:focus-visible {
  outline: 3px solid rgba(43, 182, 211, 0.4);
  outline-offset: 2px;
}

.rt-fyh__filter-control select:disabled {
  opacity: 1;
  color: var(--rt-fyh-ink);
  cursor: not-allowed;
}

.rt-fyh__clear {
  border: 0;
  background: transparent;
  color: var(--rt-fyh-accent-dark);
  padding: 10px 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.rt-fyh__clear:hover {
  color: var(--rt-fyh-ink);
  text-decoration: underline;
}

.rt-fyh__workspace {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(420px, 42fr);
  height: var(--rt-fyh-desktop-height);
  background: var(--rt-fyh-workspace);
  overflow: hidden;
}

.rt-fyh__list {
  min-width: 0;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #b8b8b8 transparent;
}

.rt-fyh__list::-webkit-scrollbar {
  width: 8px;
}

.rt-fyh__list::-webkit-scrollbar-thumb {
  background: #b8b8b8;
  border-radius: 20px;
}

.rt-fyh__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rt-fyh__card {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  min-height: 260px;
  background: var(--rt-fyh-surface);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.rt-fyh__card:hover,
.rt-fyh__card.is-active {
  box-shadow: 0 8px 24px rgba(0, 59, 85, 0.12);
}

.rt-fyh__card.is-active {
  transform: translateY(-1px);
}

.rt-fyh__card-image {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  background: #dfe4e7;
}

.rt-fyh__status-banner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 6px 12px;
  background: rgba(0, 59, 85, 0.75);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.rt-fyh__card-image img,
.rt-fyh__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.rt-fyh__image-placeholder {
  background:
    linear-gradient(135deg, rgba(0, 59, 85, 0.06), rgba(43, 182, 211, 0.12)),
    #e8edef;
}

.rt-fyh__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 18px 20px 12px;
}

.rt-fyh__card-header {
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rt-fyh-accent);
}

.rt-fyh__card-title {
  margin: 0 0 2px !important;
  color: var(--rt-fyh-ink) !important;
  font-family: var(--rt-fyh-heading-font) !important;
  font-size: clamp(25px, 2vw, 36px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

.rt-fyh__card-title a {
  color: inherit;
  text-decoration: none;
}

.rt-fyh__card-location {
  color: var(--rt-fyh-ink);
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.rt-fyh__card-product {
  margin-top: 5px;
  color: var(--rt-fyh-muted);
  font-size: 15px;
  line-height: 1.2;
}

.rt-fyh__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: 6px;
}

.rt-fyh__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 9px 10px 8px;
  text-align: center;
  border-left: 1px solid var(--rt-fyh-border);
}

.rt-fyh__stat:first-child {
  border-left: 0;
}

.rt-fyh__stat-label {
  color: var(--rt-fyh-ink);
  font-size: 13px;
  line-height: 1.1;
}

.rt-fyh__stat-value {
  display: block;
  max-width: 100%;
  margin-top: 3px;
  overflow: hidden;
  color: var(--rt-fyh-ink);
  font-size: 20px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rt-fyh__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 178px;
  min-height: 50px;
  margin-top: auto;
  padding: 12px 20px;
  background: var(--rt-fyh-ink);
  color: #ffffff;
  font-family: var(--rt-fyh-heading-font);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
}

.rt-fyh__cta:hover {
  background: var(--rt-fyh-accent-dark);
  color: #ffffff;
}

.rt-fyh__cta-arrow {
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--rt-fyh-accent);
  border-right: 3px solid var(--rt-fyh-accent);
  transform: rotate(45deg);
}

.rt-fyh__empty {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 36px;
  background: var(--rt-fyh-surface);
  color: var(--rt-fyh-ink);
  text-align: center;
}

.rt-fyh__empty strong {
  font-size: 22px;
}

.rt-fyh__map-panel {
  position: relative;
  min-width: 0;
  height: 100%;
  background: #dfe7ea;
}

.rt-fyh__map {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.rt-fyh--sticky-map .rt-fyh__map-panel {
  position: sticky;
  top: 0;
}

.rt-fyh__map-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: #e8edef;
  color: var(--rt-fyh-ink);
  font-weight: 700;
  text-align: center;
}

.rt-fyh-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
}

.rt-fyh-marker img {
  display: block;
  max-width: 42px;
  max-height: 48px;
}

.rt-fyh-marker:not(.has-image) {
  width: 34px;
  height: 34px;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: var(--rt-fyh-ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: rotate(-45deg);
}

.rt-fyh-marker__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rt-fyh-accent);
}

.rt-fyh-marker:not(.has-image) .rt-fyh-marker__dot {
  transform: rotate(45deg);
}

.rt-fyh-iw {
  width: 220px;
  color: var(--rt-fyh-ink);
  font-family: var(--rt-fyh-body-font);
}

.rt-fyh-iw__image {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
}

.rt-fyh-iw__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 2px 2px;
}

.rt-fyh-iw__title {
  font-family: var(--rt-fyh-heading-font);
  font-size: 18px;
  text-transform: uppercase;
}

.rt-fyh-iw__location {
  color: var(--rt-fyh-muted);
  font-size: 13px;
}

.rt-fyh-iw__link {
  color: var(--rt-fyh-accent-dark);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .rt-fyh__workspace {
    grid-template-columns: minmax(0, 56fr) minmax(360px, 44fr);
  }

  .rt-fyh__card {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .rt-fyh__card-title {
    font-size: 28px !important;
  }

  .rt-fyh__stat-value {
    font-size: 17px;
  }
}

@media (max-width: 920px) {
  .rt-fyh--mobile-stack .rt-fyh__mobile-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 24px 20px 40px;
    border-bottom: 9px solid rgba(43, 182, 211, 0.68);
    background: var(--rt-fyh-surface);
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-control {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin: 0;
    color: var(--rt-fyh-ink);
    font-family: var(--rt-fyh-heading-font);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-control--filters {
    justify-content: space-between;
    width: 100%;
    padding: 0 14px 0 18px;
    border: 1px solid transparent;
    background: #f1f1f1;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-control--map {
    justify-content: center;
    gap: 8px;
    min-width: 118px;
    padding: 0 12px;
    border: 1px solid rgba(43, 182, 211, 0.65);
    background: var(--rt-fyh-surface);
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-control-icon {
    display: block;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-control-icon--filters {
    width: 25px;
    height: 25px;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-control-icon--map {
    width: 24px;
    height: 24px;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-map-label--list {
    display: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-filter-toggle:checked ~ .rt-fyh__mobile-toolbar .rt-fyh__mobile-control--filters {
    border-color: rgba(43, 182, 211, 0.55);
    background: #eef8fa;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-filter-toggle:focus-visible ~ .rt-fyh__mobile-toolbar .rt-fyh__mobile-control--filters,
  .rt-fyh--mobile-stack .rt-fyh__mobile-map-toggle:focus-visible ~ .rt-fyh__mobile-toolbar .rt-fyh__mobile-control--map {
    outline: 3px solid rgba(43, 182, 211, 0.4);
    outline-offset: 2px;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-map-toggle:checked ~ .rt-fyh__mobile-toolbar .rt-fyh__mobile-map-label--map {
    display: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-map-toggle:checked ~ .rt-fyh__mobile-toolbar .rt-fyh__mobile-map-label--list {
    display: inline;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-filter-toggle:not(:checked) ~ .rt-fyh__filter-region {
    display: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__filter-region {
    padding: 20px;
    border-bottom: 1px solid var(--rt-fyh-border);
  }

  .rt-fyh--mobile-stack .rt-fyh__filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 12px;
    max-width: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__filter-heading {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0 0 2px;
  }

  .rt-fyh--mobile-stack .rt-fyh__filter-control {
    width: 100%;
  }

  .rt-fyh--mobile-stack .rt-fyh__filter-control select,
  .rt-fyh--mobile-stack .rt-fyh__filter-control select[data-filter="price"] {
    width: 100%;
    min-width: 0;
    height: 48px;
  }

  .rt-fyh--mobile-stack .rt-fyh__clear {
    grid-column: 1 / -1;
    justify-self: start;
    padding-left: 0;
  }

  .rt-fyh--mobile-stack .rt-fyh__workspace {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .rt-fyh--mobile-stack .rt-fyh__list {
    height: auto;
    overflow: visible;
  }

  .rt-fyh--mobile-stack .rt-fyh__map-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: min(70vh, 620px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-map-toggle:checked ~ .rt-fyh__workspace .rt-fyh__list {
    display: none;
  }

  .rt-fyh--mobile-stack .rt-fyh__mobile-map-toggle:checked ~ .rt-fyh__workspace .rt-fyh__map-panel {
    position: relative;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .rt-fyh--mobile-stack.rt-fyh--sticky-map .rt-fyh__map-panel {
    top: auto;
  }
}

@media (max-width: 680px) {
  .rt-fyh--mobile-stack .rt-fyh__filters {
    grid-template-columns: 1fr;
  }

  .rt-fyh__filter-heading {
    width: 100%;
  }

  .rt-fyh__filter-control {
    flex: 1 1 calc(50% - 6px);
  }

  .rt-fyh__filter-control select,
  .rt-fyh__filter-control select[data-filter="price"] {
    width: 100%;
    min-width: 0;
  }

  .rt-fyh__clear {
    width: 100%;
    text-align: left;
  }

  .rt-fyh__list {
    padding: 12px;
  }

  .rt-fyh__card {
    grid-template-columns: 1fr;
  }

  .rt-fyh__card-image,
  .rt-fyh__card-image img,
  .rt-fyh__image-placeholder {
    min-height: 230px;
    height: 230px;
  }

  .rt-fyh__card-content {
    padding: 17px;
  }

  .rt-fyh__card-title {
    font-size: 28px !important;
  }

  .rt-fyh__card-location {
    font-size: 16px;
  }

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

  .rt-fyh__stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--rt-fyh-border);
  }

  .rt-fyh__stat:nth-child(4) {
    border-top: 1px solid var(--rt-fyh-border);
  }

  .rt-fyh__cta {
    width: 100%;
    margin-top: 12px;
  }
}
