/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */
:root {
  --green-dark: #185C33;
  --green-light: #c5d97a;
  --cream: #f2f0eb;
}


.award-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
	scrollbar-color: #185C33 white;
}

.award-track {
  display: flex;
  gap: 24px;
  padding-right: 120px; /* creates the "peek" preview */
}

/* Each banner takes 1/4 of the visible width */
.award-banner {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}

/* Optional: hide scrollbar but keep scrolling */
.award-carousel::-webkit-scrollbar {
  height: 8px;
	color:--green-dark;
}

.award-carousel::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
	scrollbar-color: #185C33 white;
}

.award-carousel::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, transparent, white 80%, white 95%, white 100%);
}


.award-banner {
  max-width: 300px;
  background: var(--green-dark);
  clip-path: polygon(
    0 0,
    100% 0,
    100% 84%,
    50% 100%,
    0 84%
  );
  padding: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--cream);
}

.award-inner {
  border: 2px solid var(--green-light);
  border-bottom: none;
  padding: 16px 12px 20px;
  text-align: center;
}

.award-rank {
  font-size: 64px;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}

.award-title {
  background: var(--cream);
  color: #000;
  font-family: "Rajdhani", arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding: 8px 6px;
  margin: 12px -12px;
  text-transform: uppercase;
  line-height: 1em;
}

.award-subtitle {
  font-family: "Rajdhani", arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  margin-top: 10px;
  text-transform: uppercase;
}

.award-stars {
  margin: 8px 0;
  color: var(--green-light);
  font-size: 14px;
}

.award-source {
  font-family: "Rajdhani", arial, sans-serif;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
}

.award-source a {color: #ffffff !important;}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (max-width: 992px) {
	@media (max-width: 900px) {
  .award-banner {flex: 0 0 70%;}
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/