.rr-strip{
  margin: 14px 0 0;
  padding: 10px 0 16px;
}

.rr-inner{
  padding-left: 0;
  padding-right: 0;
}


.rr-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.rr-title{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 950;
  color: #111827;
  letter-spacing: -0.2px;
}

.rr-link{
  text-decoration:none;
  font-weight: 700;
  font-size: 0.9rem;
  color:#0AA6D6;
}
.rr-link:hover{ text-decoration: underline; }

/* rail + row */
.rr-rail{
  position: relative;
}

.rr-row{
  display: flex;
  gap: 14px;

  overflow-x: auto;
  overflow-y: visible;

  padding: 10px 2px 36px;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
}
.rr-row::-webkit-scrollbar{ display:none; }

.rr-logo{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 18px;
  margin-top: 16px;
}

.rr-name{
  margin-top: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color:#111827;
  line-height: 1.15;
}

.rr-offer{
  margin-top: 8px;
  color: #6B7280;
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.35;
  min-height: 44px;
}

.rr-actions{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.rr-btn-primary{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 0;
  background: #055A78;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rr-btn-primary:hover{
  background: #0AA6D6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 166, 214, 0.25);
}

.rr-btn-review{
  font-size: 0.8rem;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.15s ease;
}

.rr-btn-review:hover{
  color: #0AA6D6;
}

/* arrows */
.rr-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17,24,39,0.10);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 16px rgba(17,24,39,0.10);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: box-shadow 0.2s ease;
}

.rr-arrow:hover{
  box-shadow: 0 6px 20px rgba(17,24,39,0.14);
}

.rr-arrow-left{ left: -18px; }
.rr-arrow-right{ right: -18px; }

/* responsive */
@media (max-width: 1100px){
  .rr-inner{ padding: 0 18px; }
}

@media (max-width: 900px){
  .rr-arrow{ display:none; }
}

.rr-arrow.is-hidden{
  display: none !important;
}

.rr-row.is-dragging {
  cursor: grabbing;
}

.rr-row {
  user-select: none;
}

.rr-card{
  flex: 0 0 190px;

  background: #fff;
  border: 1px solid rgba(17,24,39,0.07);
  border-radius: 16px;
  padding: 0 14px 18px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-shadow: 0 2px 8px rgba(17,24,39,0.05);

  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rr-card:hover{
  transform: translateY(-3px);
  border-color: rgba(10,166,214,0.2);
  box-shadow: 0 8px 24px rgba(17,24,39,0.09);
}

.rr-strip,
.rr-inner,
.rr-rail{
  overflow: visible !important;
}

@media (max-width: 768px){
  .rr-strip, .rr-inner, .rr-rail{
    overflow: hidden !important;
  }
  .rr-row{
    overflow-x: auto;
  }
}