/* ====== LISTINGS & RULES STYLES ====== */
.lr-wrap {
  padding: 16px 0 28px;
  background: #f9f9f9;
}
.lr-title {
  margin: 8px 0 12px;
  text-align: center;
  font-size: 22px;
  color: #0d47a1;
}

/* Top nav circles */
.lr-circles {
  position: sticky;
  top: 8px;
  z-index: 10;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 12px;
}
.lr-circle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  background: #e8f0fe;
  color: #0d47a1;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}
.lr-circle.active {
  background: #0d47a1;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13,71,161,.18);
}
.lr-circle:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

/* ===== Horizontal scroller (CLEAN) ===== */
.lr-scroller{
  display: flex;
  gap: 18px;
  overflow-x: auto;                 /* horizontal scroll only */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 14px 20px;
  scroll-padding: 16px;

  /* UX */
  cursor: grab;                     /* drag affordance on desktop */
  user-select: none;                /* avoid accidental text selection */
  scroll-behavior: smooth;

  /* Firefox scrollbar */
  scrollbar-width: auto;            /* bigger than 'thin' */
  scrollbar-color: #b7c3cf #eef2f7; /* thumb / track */
}
/* WebKit scrollbars (Chrome/Edge/Safari) — SINGLE definition */
.lr-scroller::-webkit-scrollbar{
  height: 16px;                     /* bigger rail on laptop */
}
.lr-scroller::-webkit-scrollbar-track{
  background: #eef2f7;
  border-radius: 10px;
}
.lr-scroller::-webkit-scrollbar-thumb{
  background: #b7c3cf;
  border-radius: 10px;
  border: 3px solid #eef2f7;        /* thicker thumb; easy to grab */
}
.lr-scroller:hover::-webkit-scrollbar-thumb{
  background: #92a4b5;
}
/* Allow both directions without page bounce on mobile */
.lr-scroller{
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
}

/* Card */
.lr-card {
  flex: 0 0 85%;
  max-width: 85%;
  background: #fff;
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 10px 30px rgba(13, 71, 161, 0.08);
  scroll-snap-align: center;
  transform: scale(0.96);
  transition: transform 0.35s, box-shadow 0.35s, border-color .25s;
}
@media (min-width: 900px) {
  .lr-card {
    flex-basis: 62%;
    max-width: 62%;
  }
}
.lr-card.active {
  transform: scale(1.02);
  box-shadow: 0 16px 34px rgba(13, 71, 161, 0.15);
}

.lr-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.lr-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e3f2fd;
  font-size: 18px;
}
.lr-card h3 {
  margin: 0;
  font-size: 20px;
  color: #103a8b;
}

/* Layouts */
.lr-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .lr-two { grid-template-columns: 1fr 1fr; }
}
.lr-one { display: block; }

.lr-block {
  background: #fafcff;
  border: 1px solid #e6eef8;
  border-radius: 12px;
  padding: 12px;
}
.lr-block h4 {
  margin: 2px 0 6px;
  font-size: 16px;
  color: #0d47a1;
}

.lr-ul {
  margin: 6px 0 10px 16px;
  padding: 0;
}
.lr-ul li {
  margin: 6px 0;
  line-height: 1.45;
}

/* Charges dropdown */
.lr-drop summary {
  cursor: pointer;
  font-weight: 700;
  color: #1976d2;
  padding: 8px 12px;
  background: #e3f2fd;
  border-radius: 10px;
  list-style: none;
  position: relative;
  transition: background .25s ease, color .25s ease;
}
.lr-drop summary::marker { display: none; }
.lr-drop summary::after {
  content: '\25BC';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .25s ease;
}
.lr-drop[open] summary {
  background: #1976d2;
  color: #fff;
}
.lr-drop[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.lr-charges {
  padding: 10px;
  background: #f1f8e9;
  border-left: 4px solid #388e3c;
  border-radius: 10px;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
}

/* Footer */
.lr-foot {
  max-width: 980px;
  margin: 12px auto 0;
  padding: 0 16px;
  text-align: center;
  color: #455a64;
  font-size: 14px;
}

.lr-ul.inner {
  margin-left: 20px;
  list-style-type: disc;
}
