.rscl-content {
  --rscl-ink: #102f3f;
  --rscl-muted: #5d7078;
  --rscl-sea: #147f88;
  --rscl-sand: #f3eadb;
  --rscl-coral: #d87056;
  --rscl-line: rgba(16, 47, 63, .14);
  color: var(--rscl-ink);
}
.rscl-content > * { box-sizing: border-box; }
.rscl-lead {
  max-width: 900px;
  margin: 0 0 34px;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.55;
  color: var(--rscl-ink);
}
.rscl-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 48px;
  border: 1px solid var(--rscl-line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.rscl-facts > div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--rscl-line);
}
.rscl-facts > div:last-child { border-right: 0; }
.rscl-facts span {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--rscl-coral);
}
.rscl-facts strong { font-size: 17px; line-height: 1.45; }
.rscl-section {
  max-width: 920px;
  margin: 0 0 46px;
}
.rscl-section h2,
.rscl-related h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--rscl-ink);
}
.rscl-section p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.72;
  color: #293f49;
}
.rscl-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 22px 0 4px;
  padding: 0;
  list-style: none;
}
.rscl-list li {
  position: relative;
  padding: 16px 16px 16px 46px;
  border: 1px solid var(--rscl-line);
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  line-height: 1.45;
}
.rscl-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rscl-sea);
  box-shadow: 0 0 0 5px rgba(20, 127, 136, .1);
}
.rscl-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--rscl-line);
  border-radius: 14px;
  background: #fff;
}
.rscl-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.rscl-table th,
.rscl-table td { padding: 15px 17px; border-bottom: 1px solid var(--rscl-line); text-align: left; vertical-align: top; }
.rscl-table th { background: var(--rscl-sand); font-size: 14px; }
.rscl-table tr:last-child td { border-bottom: 0; }
.rscl-note,
.rscl-location-note {
  margin: 0 0 42px;
  padding: 24px 28px;
  border-left: 5px solid var(--rscl-coral);
  border-radius: 0 14px 14px 0;
  background: #fff8f2;
  font-size: 17px;
  line-height: 1.6;
}
.rscl-faq__list { border-top: 1px solid var(--rscl-line); }
.rscl-faq details { border-bottom: 1px solid var(--rscl-line); }
.rscl-faq summary {
  position: relative;
  padding: 20px 48px 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
}
.rscl-faq summary::-webkit-details-marker { display: none; }
.rscl-faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rscl-sand);
  color: var(--rscl-ink);
}
.rscl-faq details[open] summary::after { content: "−"; }
.rscl-faq details div { padding: 0 42px 20px 0; }
.rscl-related { margin: 58px 0; }
.rscl-related__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.rscl-related__grid a {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--rscl-line);
  border-radius: 14px;
  color: var(--rscl-ink);
  text-decoration: none;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}
.rscl-related__grid a:hover { transform: translateY(-3px); border-color: var(--rscl-sea); }
.rscl-related__grid span { color: var(--rscl-sea); }
.rscl-cta {
  display: grid;
  grid-template-columns: 1.5fr .7fr;
  gap: 34px;
  align-items: center;
  margin: 62px 0 18px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 22px;
  background: var(--rscl-ink);
  color: #fff;
}
.rscl-cta span { display: block; margin-bottom: 10px; color: #b9d8d7; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.rscl-cta h2 { margin: 0 0 14px; color: #fff; font-size: clamp(28px, 4vw, 46px); line-height: 1.08; }
.rscl-cta p { margin: 0; color: #e2ecee; font-size: 17px; line-height: 1.6; }
.rscl-cta__actions { display: grid; gap: 12px; }
.rscl-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--rscl-coral);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
}
.rscl-button--light { background: #fff; color: var(--rscl-ink) !important; }
.rscl-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.rscl-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.rscl-embed { width: 100%; overflow: hidden; border-radius: 16px; background: #e9eef0; }
.rscl-embed--video { aspect-ratio: 16/9; }
.rscl-embed iframe { display: block; width: 100%; border: 0; }
.rscl-embed--video iframe { height: 100%; }
.rscl-embed--map iframe { min-height: 400px; }
@media (max-width: 900px) {
  .rscl-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rscl-facts > div:nth-child(2) { border-right: 0; }
  .rscl-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--rscl-line); }
  .rscl-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rscl-cta { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .rscl-lead { font-size: 18px; }
  .rscl-facts { display: block; }
  .rscl-facts > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--rscl-line); }
  .rscl-facts > div:last-child { border-bottom: 0; }
  .rscl-list { grid-template-columns: 1fr; }
  .rscl-section { margin-bottom: 36px; }
  .rscl-section h2, .rscl-related h2 { font-size: 29px; }
  .rscl-section p { font-size: 16px; }
  .rscl-related__grid { grid-template-columns: 1fr; }
  .rscl-related__grid a { min-height: 110px; }
  .rscl-cta { margin-left: -8px; margin-right: -8px; border-radius: 16px; }
  .rscl-gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .rscl-gallery img { min-width: 82%; scroll-snap-align: start; }
  .rscl-embed--map iframe { min-height: 320px; }
}
