.rs-tabs-wrapper {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.rs-tabs {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none;
}
.rs-tabs::-webkit-scrollbar {
  display: none;
}

/* --------- Beautiful Rounded Arrows --------- */
.rs-arrow {
  color: white;
  background: #e22021;
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.rs-arrow:hover {
  color: #e22021;
  background: white;
  transform: scale(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.rs-arrow svg {
  pointer-events: none;
}

/* Make arrows smaller on mobile */
@media (max-width: 500px) {
  .rs-arrow {
    width: 34px;
    height: 34px;
  }
}

.rs-tabs {
  margin-bottom: 20px;
}
.rs-carousel-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.rs-carousel-card .rs-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.owl-carousel .owl-item img {
  max-height: 200px;
  object-fit: cover;
}
.rs-carousel-card h3 {
  line-height: normal;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 10px;
  text-align: center;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rs-carousel-card a {
  width: 100% !important;
  text-align: left;
  font-family: "Poppins", Sans-serif;
  font-weight: 600;
  padding-left: 20px;
  text-decoration: underline;
  padding: 0;
  color: #e22021;
}

.rs-carousel-card {
  margin: 0 0 20px;
  padding: 0px 0px 18px 0px;
}
.rs-tab {
  background: #87ceeb;
  color: #fff;
  font-family: "Inter", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  margin: 2px;
  cursor: pointer;
  border-radius: 30px;
  border: 1px solid #87ceeb;
}

.rs-tab:hover {
  background: transparent;
  color: #87ceeb;
  border: 1px solid #87ceeb;
}
.rs-tab.active {
  border: 1px solid #87ceeb;
  background: #87ceeb;
  color: #fff;
  font-family: "Inter", Sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.rs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.rs-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px 0px 18px 0px;
    text-align: center;
    margin-bottom: 10px;
}
.rs-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 200px;
  object-fit: cover;
  border-top-right-radius: 8px !important;
  border-top-left-radius: 8px !important;
}
.rs-meta {
  font-size: 13px;
  color: #555;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0 0;
}
.rs-card h3 {
  margin: 10px 0 6px;
}
.rs-card a {
  color: #e60000;
  font-weight: bold;
  text-decoration: none;
}

.rs-card h3 {
    line-height: normal;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding-left: 0;
    text-align: center;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rs-card a {
  cursor: pointer;
}
.rs-card a {
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    padding: 0;
    text-decoration: underline;
    text-align: center !important;
    margin: 0 auto;
    display: block;
}

.rs-meta span {
  font-family: "Poppins", Sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #87ceeb;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 12px;
}
