/*
 * Small, scoped additions for single saunagus profiles.
 * Kept separate from the legacy template so missing-description and facility
 * presentation can evolve without adding more inline CSS to single-saunagus.php.
 */

.fes-empty,
.fes-empty * { box-sizing: border-box; }

.fes-empty p,
.fes-empty ul { margin: 0; padding: 0; }

.fes-empty strong { font-weight: 750; }

.fes-empty--partner {
  --fes-text: #111;
  --fes-muted: #62666d;
  --fes-accent: #15986d;
  --fes-accent-soft: #edf8f4;
  --fes-accent-border: #c9e8dc;
  --fes-border: #e1e3e6;
  overflow: hidden;
  border: 1px solid var(--fes-border);
  border-radius: 20px;
  background: #fff;
}

.fes-empty__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 350px);
  align-items: stretch;
}

.fes-empty__content { padding: 30px 32px; }

.fes-empty__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #6d7178;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.fes-title {
  margin: 0 0 10px;
  color: var(--fes-text);
  font-size: clamp(1.35rem, 1.05rem + 1.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.fes-lead {
  max-width: 650px;
  margin-bottom: 18px !important;
  color: var(--fes-muted);
  font-size: .97rem;
  line-height: 1.65;
}

.fes-list { list-style: none; }

.fes-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 7px 0;
  color: #303338;
  font-size: .9rem;
  line-height: 1.5;
}

.fes-ic {
  position: relative;
  display: inline-flex;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid var(--fes-accent-border);
  border-radius: 50%;
  background: var(--fes-accent-soft);
}

.fes-ic--check::after {
  content: '';
  width: 8px;
  height: 5px;
  margin-top: -2px;
  border-bottom: 2px solid var(--fes-accent);
  border-left: 2px solid var(--fes-accent);
  transform: rotate(-45deg);
}

.fes-empty__aside {
  padding: 28px;
  border-left: 1px solid var(--fes-border);
  background: #fafaf8;
}

.fes-price {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
}

.fes-price__trial {
  align-self: flex-start;
  margin-bottom: 19px;
  padding: 6px 10px;
  border: 1px solid var(--fes-accent-border);
  border-radius: 999px;
  background: var(--fes-accent-soft);
  color: #116947;
  font-size: .73rem;
  font-weight: 800;
}

.fes-price__header {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.fes-price__label {
  color: #777b81;
  font-size: .75rem;
  font-weight: 700;
}

.fes-price__big {
  color: var(--fes-text);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.fes-price__saving {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  margin-bottom: 17px;
  padding: 13px 0;
  border-top: 1px solid #e4e5e6;
  border-bottom: 1px solid #e4e5e6;
}

.fes-price__saving span {
  color: #666a70;
  font-size: .76rem;
  font-weight: 700;
}

.fes-price__saving strong {
  grid-column: 1 / 2;
  color: #111;
  font-size: .88rem;
}

.fes-price__saving em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #15986d;
  color: #fff;
  font-size: .68rem;
  font-style: normal;
  font-weight: 800;
}

.fes-price__note {
  margin-bottom: 18px !important;
  color: #666a70;
  font-size: .78rem;
  line-height: 1.55;
}

.fes-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: .72rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1;
  transition: transform .15s ease, background-color .15s ease;
}

.fes-btn--primary {
  border-color: #111;
  background: #111;
  color: #fff !important;
}

.fes-btn--primary:hover,
.fes-btn--primary:focus {
  background: #000;
  color: #fff !important;
  transform: translateY(-1px);
}

.fes-btn--block { width: 100%; }

.fes-price__link {
  display: inline-block;
  margin-top: 12px;
  color: #4f5358;
  font-size: .76rem;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Existing facility / remember-to-bring lists, moved out of the PHP template. */
.facility-check {
  position: relative;
  display: inline-flex;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid #c9e8dc;
  border-radius: 50%;
  background: #edf8f4;
}

.facility-check::after {
  content: '';
  width: 8px;
  height: 5px;
  margin-top: -2px;
  border-bottom: 2px solid #15986d;
  border-left: 2px solid #15986d;
  transform: rotate(-45deg);
}

.facility-list { margin: 0; padding: 0; list-style: none; }

.facility-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  line-height: 1.45;
}

.facility-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.facility-col h3 {
  margin-bottom: 12px;
  color: #1a1a1a;
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .fes-empty__grid { grid-template-columns: 1fr; }
  .fes-empty__aside { border-top: 1px solid var(--fes-border); border-left: 0; }
}

@media (max-width: 767.98px) {
  .fes-empty__content,
  .fes-empty__aside { padding: 22px 20px; }
  .facility-row { grid-template-columns: 1fr; gap: 16px; }
}
