/* ── Veda Recovery Slider v1.2.0 ───────────────────────────── */
:root {
  --vrs-accent:  #78b73d;
  --vrs-card-bg: #f5f0e8;
  --vrs-radius:  20px;
  --vrs-shadow:  0 8px 40px rgba(0,0,0,0.10);
}

.vrs-wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 0 30px;
  box-sizing: border-box;
  font-family: inherit;
}

/* ── Track outer (arrow + track) ───────────────────────────── */
.vrs-track-outer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Track: clips the sliding cards ────────────────────────── */
.vrs-track {
  flex: 1;
  overflow: hidden;
  border-radius: var(--vrs-radius);
  position: relative; /* JS sets height dynamically */
}

/* ── Each slide: absolutely stacked, JS drives opacity/transform */
.vrs-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* transitions managed entirely by JS */
}

/* First slide visible by default (before JS kicks in) */
.vrs-slide.vrs-active {
  position: relative; /* takes up space before JS init */
}

/* ── Card ───────────────────────────────────────────────────── */
.vrs-card {
  display: flex;
  background: var(--vrs-card-bg);
  border-radius: var(--vrs-radius);
  overflow: hidden;
  box-shadow: var(--vrs-shadow);
  min-height: 360px;
}

/* ── Image half ─────────────────────────────────────────────── */
.vrs-image-wrap {
  flex: 0 0 55%;
  max-width: 55%;
  overflow: hidden;
}

.vrs-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Content half ───────────────────────────────────────────── */
.vrs-content {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.vrs-title {
  font-size: 16px;
	font-family: "DM Sans", Sans-serif;
  font-weight: 600;
  color: #1a2e22;
  line-height: 25px;
  margin: 0 0 4px;
}

.vrs-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

/* ── TinyMCE / rich-text content ────────────────────────────── */
.vrs-editor-content {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 4px 0 0;
}

.vrs-editor-content p { margin: 0 0 8px; }

.vrs-editor-content ul,
.vrs-editor-content ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vrs-editor-content ul li {
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.vrs-editor-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--vrs-accent);
  font-size: 1rem;
  line-height: 1.5;
}

.vrs-editor-content ol {
  list-style: decimal;
  padding-left: 18px;
}

.vrs-editor-content strong { color: #1a2e22; }
.vrs-editor-content em     { font-style: italic; }
.vrs-editor-content a      { color: var(--vrs-accent); text-decoration: underline; }

/* ── Arrow buttons ──────────────────────────────────────────── */
.vrs-arrow {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 0;
  flex-shrink: 0;
}

.vrs-arrow:hover {
  border-color: #78b73d;
  color: #78b73d;
  box-shadow: 0 4px 16px rgba(45,106,79,0.18);
  transform: scale(1.08);
}

.vrs-arrow svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ── Dots ───────────────────────────────────────────────────── */
.vrs-dots {
  display: none;
}

.vrs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.vrs-dot.vrs-dot-active,
.vrs-dot:hover {
  background: var(--vrs-accent);
  transform: scale(1.3);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 768px) {
  .vrs-card {
    flex-direction: column;
    min-height: unset;
  }

  .vrs-image-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: 240px;
  }

  .vrs-content {
    padding: 28px 24px;
  }

  .vrs-title { font-size: 1.1rem; }

	.vrs-image-wrap{
		max-width: 100%;
	}
	
}

/* Mobile */
@media (max-width: 480px) {
  .vrs-wrapper { padding: 10px 0 20px; }

  .vrs-image-wrap { height: 200px; }

  .vrs-content {
    padding: 20px 18px;
    gap: 8px;
  }

  .vrs-title   { font-size: 1rem; }
  .vrs-text    { font-size: 0.83rem; }

  .vrs-editor-content { font-size: 0.82rem; }

  .vrs-dots { margin-top: 12px; }
}