.rs-abc{
  --rs-abc-accent:#5b3b8c;
  --rs-abc-text:#0b2230;
  --rs-abc-muted:#6b7280;
  --rs-abc-border: rgba(91,59,140,.55);
  --rs-abc-card-bg:#fff;
  --rs-abc-radius:24px;
}

.rs-abc__heading{
  text-align:center;
  max-width: 980px;
  margin: 0 auto 26px;
  padding: 0 12px;
}

.rs-abc__pretitle{
  color: var(--rs-abc-accent);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}

.rs-abc__title{
  margin: 0;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.12;
  color: #0d3b45;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rs-abc__carousel{
  position: relative;
  padding: 4px 12px 18px;
}

.rs-abc__swiper{
  overflow: visible;
}

.rs-abc__card{
  background: var(--rs-abc-card-bg);
  border-radius: var(--rs-abc-radius);
  /*box-shadow: 0 22px 55px rgba(16,24,40,.10);*/
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  border: 1.5px solid rgba(91,59,140,.22);
}

.swiper-slide.is-near .rs-abc__card{
  border-color: var(--rs-abc-border);
}

.rs-abc__card:hover{
  transform: translateY(-6px);
  /*box-shadow: 0 30px 75px rgba(16,24,40,.14);*/
  border-color: rgba(91,59,140,.45);
}

.rs-abc__image{
  display:block;
  aspect-ratio: 4/3;
  overflow:hidden;
  background: #f3f4f6;
}

.rs-abc__image img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .55s ease;
}

.rs-abc__card:hover .rs-abc__image img{
  transform: scale(1.05);
}

.rs-abc__body{
  padding: 18px 20px 18px;
}

.rs-abc__meta{
  display:none;
  justify-content: space-between;
  gap: 14px;
  color: var(--rs-abc-muted);
  font-size: 13.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.rs-abc__meta-left,
.rs-abc__meta-right{
  display:flex;
  align-items:center;
  gap: 8px;
  white-space: nowrap;
}

.rs-abc__meta svg{
  width: 16px;
  height: 16px;
  fill: var(--rs-abc-accent);
  opacity: .9;
}

.rs-abc__card-title{
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--rs-abc-text);
}

.rs-abc__card-title a{
  color: inherit;
  text-decoration: none;
}

.rs-abc__card-title a:hover{
  color: var(--rs-abc-accent);
}

.rs-abc__divider{
  height: 1px;
  background: rgba(91,59,140,.14);
  margin: 12px 0 12px;
}

.rs-abc__more{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 700;
  color: var(--rs-abc-accent);
  text-decoration:none;
  font-size: 14.5px;
}

.rs-abc__more span{
  transition: transform .25s ease;
}

.rs-abc__more:hover span{
  transform: translateX(3px);
}

/* Nav buttons */
.rs-abc__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--rs-abc-accent);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 12px 30px rgba(91,59,140,.25);
  cursor:pointer;
  z-index: 5;
  transition: transform .2s ease, opacity .2s ease;
}

.rs-abc__nav:hover{
  transform: translateY(-50%) scale(1.05);
}

.rs-abc__prev{ left: 0; }
.rs-abc__next{ right: 0; }

.rs-abc__nav span{
  font-size: 26px;
  line-height: 1;
  margin-top: -2px;
}

@media (max-width: 1024px){
  .rs-abc__prev{ left: 6px; }
  .rs-abc__next{ right: 6px; }
}

@media (max-width: 767px){
  .rs-abc__pretitle{ font-size: 15.5px; }
  .rs-abc__body{ padding: 16px 16px 16px; }
  .rs-abc__card-title{ font-size: 18px; }
  .rs-abc__nav{ display:none; } /* obično na mobilnom se swipe koristi */
}