
/* ── DIVIDER ── */
.rh-surf-divider { display: flex; align-items: center; gap: 24px; margin: 48px 0 36px; }
.rh-surf-divider-line { flex: 1; height: 1px; background: #E6E6E6; }
.rh-surf-divider-title {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.01em;
  color: #262626; white-space: nowrap; text-align: center; margin: 0; padding: 0; line-height: 1.2;
}

/* ── 6 SURFACE CARDS ── */
.rh-surf-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: #E6E6E6; border-radius: 20px; overflow: hidden; margin: 0 0 80px;
}
.rh-surf-card { background: #ffffff; padding: 24px 22px; }
.rh-surf-card.dark { background: #262626; }
.rh-surf-card-head { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; }
.rh-surf-card-ico {
  width: 36px; height: 36px; background: #f7f7f7; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid #eeeeee;
}
.rh-surf-card.dark .rh-surf-card-ico { background: rgba(203,129,125,0.1); border: none; }
.rh-surf-card-title { font-size: 17px; font-weight: 600; color: #262626; margin: 0; padding: 0; }
.rh-surf-card.dark .rh-surf-card-title { color: #ffffff; }
.rh-surf-card-list { display: flex; flex-direction: column; gap: 0; }
.rh-surf-card-item {
  font-size: 14px; font-weight: 600; color: #808080;
  padding: 8px 0; border-bottom: 1px solid #f5f5f5; display: block;
}
.rh-surf-card-item:last-child { border-bottom: none; }
.rh-surf-card.dark .rh-surf-card-item { color: #B3B3B3; border-bottom: 1px solid rgba(255,255,255,0.06); }
.rh-surf-card.dark .rh-surf-card-item:last-child { border-bottom: none; }
.rh-surf-card-item.accent { color: #CB817D; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .rh-surf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rh-surf-grid { grid-template-columns: 1fr; margin-bottom: 56px; }
  .rh-surf-card { padding: 20px 18px; }
  .rh-surf-divider { gap: 12px; }
  .rh-surf-divider-title { font-size: 18px; white-space: normal; }
}
