/* ── RCS Front-end Styles ── */
.rcs-section {
  padding: 32px 24px;
  box-sizing: border-box;
  font-family: inherit;
}

.rcs-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rcs-section-title {
  margin-bottom: 4px;
}

.rcs-arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rcs-arrow {
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  padding: 0px;
}
.rcs-arrow:hover { opacity: .75; transform: scale(1.08); }

/* Slider container */
.rcs-slider-wrap {
  overflow: hidden;
  width: 100%;
}

.rcs-slider {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Individual slide */
.rcs-card-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 0;
}

.rcs-card-inner {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.rcs-card-inner:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 32px rgba(0,0,0,.28);
}

.rcs-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.72) 100%);
  border-radius: 14px;
}

.rcs-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 16px 14px;
}

.rcs-card-title {
  margin-bottom: 5px;
  line-height: 1.3;
  transition: text-decoration .2s;
}
.rcs-card-inner:hover .rcs-card-title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rcs-card-desc {
  line-height: 1.45;
  opacity: .9;
}

/* Responsive */
@media (max-width: 900px) {
  .rcs-card-slide { flex-basis: calc((100% - 16px) / 2) !important; }
}
@media (max-width: 580px) {
  .rcs-card-slide { flex-basis: 85% !important; }
}