.sponsor-slider-teal-module
{
max-width: 1620px;
  margin: auto;
}

.sponsor-slider-teal-module .teal-small-sponsor-title {
    color: #018B87;
    font-size: clamp(12px, 0.35vw + 10.88px, 16px);
  line-height: 1.4; /* readable for small text */
    letter-spacing: 3.4px;
    text-transform: uppercase;
    font-weight: 600;
  border-bottom: solid 1px #018B87;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sponsor-slider-teal-module .main-sponsor-title
{
  font-weight: 600;
  font-size: clamp(20px, 1.05vw + 15.07px, 35px);
  line-height: 1.2; /* good for headings */
  text-transform: uppercase;
  padding-bottom: 10px;
  color: #000;
}

.sponsor-slider-teal-module .teal-small-sponsor-logos
{
padding-top: 25px;
 
}

.sponsor-slider-teal-module .teal-small-sponsor-logos img
{
width: 100%;
  height: auto;
 
}


.sponsor-title-rotating-section {
  width: 100%;
  padding: 20px 0px;
  display: flex;
  justify-content: center;  
}

.carousel-container {
  width: 100%;
  max-width: 1620px;
  margin: auto;
  font-family: sans-serif;
}

/* NEW: Hard clip the visible area */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track */
.carousel {
  display: flex;
  scroll-behavior: smooth;
  gap: 30px;
  padding-right: 12px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
}

/* Items */
.item {
  /*
  flex: 0 0 calc((100% - 12px) / 2);   /* EXACT = 2 items, 1 gap 
  box-sizing: border-box;
  padding: 20px 0px;
  */
  flex: 0 0 calc((100% - 12px) / 2); /* 2 items visible by default */
  scroll-snap-align: start;           /* snap to start of item */
  box-sizing: border-box;
  margin-right: 0;      
}

/* MOBILE: 1 item */
@media (max-width: 600px) {
  .item {
    flex: 0 0 100%;
  }
}


/* Navigation below */
.carousel-nav {
  margin-top: 16px;
}

.divider {
  height: 1px;
  background: #ccc;
  margin-bottom: 10px;
}

.carousel-nav .buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #000;
}

.carousel-nav .buttons {
  display: flex; 
  align-items: center;
  gap: 0px; /* space around line */
  padding-right: 20px;
}

.carousel-nav .buttons .divider {
    background-color: #ccc;
    height: 1px;
    width: 3%;
    margin-top: 17px;
}

/*
.carousel-nav button {
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
*/

/* Default button look */
.carousel-nav button {
  
  background: transparent;
  border: none;
  font-size: 45px;
  cursor: pointer;
  color: #018B87;              /* ACTIVE COLOR */
  transition: opacity 0.3s;
  padding-left: 0px;
    padding-right: 0px;
}

/* Disabled state */
.carousel-nav button:disabled {
  color: #ccc;                 /* GRAYED OUT */
  cursor: not-allowed;
  opacity: 0.6;
}


