/* =====================
   GLOBAL
===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #000;
}






/* =====================
   TOP BAR (scrolls normally)
===================== */
.top-bar {
  display: flex;
  align-items: center;       /* vertically centers content inside flex container */
  justify-content: space-between;
  height: 100px;              /* total height of the bar */
  padding: 0 30px;           /* remove top/bottom padding */
  background-color: #ffffff;
  position: relative;
  z-index: 900;
}

.top-left, .top-right {
  margin-top: 50px;
}


.top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cal-logo {
  height: 60px;
}

.cycling-text {
  font-family: 'Play', sans-serif;
  font-size: 48px;
  color: rgb(4, 30, 66);
}

.top-center {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.top-right .ocf-logo {
  height: 40px;
}

/* =====================
   NAV BAR (sticky)
===================== */
.nav-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;

  position: sticky;        /* sticky positioning */
  top: 35px;               /* sticks below utility bar (its height) */
  z-index: 999;            /* above page content but below utility bar */
}

.nav-link {
  position: relative;
  padding: 14px 0;
  text-decoration: none;
  font-size: 16px;
  color: #000;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background-color: rgb(4, 30, 66);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-link:hover::after {
  opacity: 0.4;
}

.nav-link.active::after {
  opacity: 1;
}



/* =====================
   SPONSOR LINK
===================== */
.sponsor-link {
  color: white;
  text-decoration: none;
  font-size: 16px;        /* bigger than other utility text */
  font-weight: 600;       /* sponsor emphasis */
  letter-spacing: 0.3px;
  text-transform: uppercase;
  letter-spacing: 5px;


}

.sponsor-link:hover {
  text-decoration: underline;
}


/* =====================
   HERO / CAROUSEL
===================== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #c9a13b;
  background: rgba(0, 0, 0, 0.55);
}

.hero-overlay h1 {
  font-size: 100px;
  font-family: 'Play', sans-serif;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 22px;
  max-width: 700px;
}
.hero-cta {
  margin-top: 24px;

  display: block;               /* important */
  background: white;
  border-color: black;
  color: black;      /* override gold text */
  padding: 16px 26px;
  border-radius: 12px;

  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);

  max-width: 90%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.767);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.hero-cta-title {
  font-family: 'Play', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.hero-cta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-top: 4px;
  opacity: 0.8;
}

.hero-cta-image {
  margin-top: 12px;
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero-cta {
  position: relative;
  border-radius: 12px;
}

/* marching ants border */
.hero-cta::before {
  content: "";
  position: absolute;
  inset: -3px; /* border thickness */
  border-radius: inherit;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      90deg,
      #c9a13b 0 12px,
      transparent 12px 24px
    ),
    repeating-linear-gradient(
      180deg,
      #c9a13b 0 12px,
      transparent 12px 24px
    ),
    repeating-linear-gradient(
      270deg,
      #c9a13b 0 12px,
      transparent 12px 24px
    ),
    repeating-linear-gradient(
      360deg,
      #c9a13b 0 12px,
      transparent 12px 24px
    );

  background-size:
    24px 3px,
    3px 24px,
    24px 3px,
    3px 24px;

  background-position:
    0 0,
    100% 0,
    100% 100%,
    0 100%;

  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;

  animation: border-move 4s linear infinite;
}

@keyframes border-move {
  to {
    background-position:
      24px 0,
      100% 24px,
      calc(100% - 24px) 100%,
      0 calc(100% - 24px);
  }
}



/* =====================
   CAROUSEL ARROWS
===================== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 36px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 10;
}

.carousel-arrow.left {
  left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* =====================
   UTILITY BAR (BLUE)
===================== */
.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 30px;
  background-color: rgb(4, 30, 66);
  color: white;
  font-size: 14px;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.utility-link:hover {
  text-decoration: underline;
}

.utility-icon {
  height: 18px;
  width: 18px;
}

/* ===== PARTNERS BAR ===== */

.partners-bar {
  background-color: #ffffff; /* white background */
  height: 200px;             /* total bar height including logos + spacing */
  position: relative;
  overflow: hidden;
}

.partners-marquee {
  height: 60%;              /* fill the bar */
  overflow: hidden;
  display: flex;
  align-items: center;       /* vertically center logos */
}

.marquee-track {
  display: inline-flex;
  height: 80%;
  
  gap: 60px;
  width: max-content;
  animation: scroll-left 60s linear infinite; /* adjust speed */
}

.marquee-track a {
  display: flex;           /* make the link a flex container */
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  height: 100%;            /* fill the height of the marquee */
}
.marquee-track img {
  height: 90%;             /* dynamic height relative to bar */
  object-fit: contain;     /* keep aspect ratio */
}


.marquee-track img {
  height: 110%;                /* scale dynamically to fill 90% of bar height */
  margin: 0 3%;               /* space between logos as % of container */
  object-fit: contain;
          /* keeps aspect ratio */
}

/* Optionally make Voler and Rudy slightly smaller */
.marquee-track img[src*="partners-6"],
.marquee-track img[src*="partners-8"],
.marquee-track img[src*="partners-7"] {
  height: 55%;                /* smaller proportion of bar height */
}


.partners-bar:hover .marquee-track {
  animation-play-state: paused;
}



.marquee-track a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.partners-cta-container {
  text-align: center;      /* center horizontally */
  margin-top: 15px;        /* space above button */
}

.partners-cta {
  display: inline-block;
  background-color: rgb(4, 30, 66); 
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

.partners-cta:hover {
  background-color: #0056b3; /* darker blue on hover */
}


/* THE TRICK: seamless scroll using translateX */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* moves by exactly half of the track (the first set) */
  }
}

.image-cards {
  display: flex;
  width: 100%;
  height: auto;
}

.image-cards .card {
  flex: 1;                      /* each card = 1/3 of width */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;        /* remove underline from links */
}

.image-cards .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fill card while maintaining proportions */
  display: block;
  filter: grayscale(60%) brightness(80%); /* dull/gray look */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.image-cards .card-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* vertical + horizontal center */
  color: white;
  font-size: 24px;
  font-family: 'Play', sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;    /* ALL CAPS */
}

/* Hover effect: zoom + brighten + white border */
.image-cards .card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(100%); /* full color on hover */
}

.image-cards .card:hover {
  box-shadow: 0 0 0 3px white inset;
  z-index: 10;                  /* so hover effect is on top */
}

/* Responsive for small screens */
@media (max-width: 900px) {
  .image-cards {
    flex-direction: column;
  }
  .image-cards .card {
    width: 100%;
  }
}

.about-section {
  background-color: rgb(4, 30, 66); /* Navy background */
  color: white;
  padding: 50px 5%;
  padding-top: 0px;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 50px 0;
  overflow: hidden;
}

.about-block img.about-img {
  flex: 1 1 45%;
  max-width: 45%;
  height: auto;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-block.right-image img.about-img {
  transform: translateX(100%);
}

.about-block.no-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-block.no-image .about-text {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.about-block .about-text {
  flex: 1 1 50%;
  max-width: 50%;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-block.right-image .about-text {
  transform: translateX(-100%);
}

.about-block.visible img.about-img,
.about-block.visible .about-text {
  transform: translateX(0);
  opacity: 1;
}

.about-block h2 {
  font-family: 'Play', sans-serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.about-block p, .about-block ul {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

hr {
  border: none;
  border-top: 1px solid white;
  margin: 50px 0;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .about-block {
    flex-direction: column;
    text-align: center;
  }
  .about-block img.about-img, 
  .about-block .about-text {
    max-width: 100%;
    transform: translateX(0);
    opacity: 1;
  }
}


/* =====================
   GENERAL STRIPES
===================== */
.stripes-bg {
  position: relative; /* required for ::before positioning */
  overflow: hidden;   /* ensures stripes don't overflow */
  background-color: rgb(4, 30, 66);
}

.stripes-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(247, 211, 3, 0.25), /* yellow with opacity */
    rgba(247, 211, 3, 0.25) 2px,
    transparent 2px,
    transparent 20px
  );
  pointer-events: none; /* stripes don't block clicks */
  z-index: 0; /* stays behind content */
  background-attachment: fixed; /* stripes appear stationary on scroll */
}



/* =====================
   UTILITY BAR (always fixed)
===================== */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px; /* adjust as needed */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}

.bottom-left, .bottom-right {
  margin-top: 20px;
  margin-bottom: 20px;
}

.utility-icon {
  height: 18px;      /* set desired height */
  width: auto;       /* maintain aspect ratio */
  display: inline-block;
  vertical-align: middle;
}

/* Make Linktree logo taller */
.utility-link img[src*="linktree_logo"] {
  height: 24px;   /* slightly taller */
}

/* Add spacing between icons and links */
.utility-left .utility-link {
  margin-right: 16px;  /* space between each item */
  display: flex;       /* vertically center icon + text if any */
  align-items: center;
}
/* =====================
   NEWS CAROUSEL
===================== */
.news-carousel {
  position: relative;
  background: #c9a13b; /* CAL GOLD */
  
  overflow: hidden;
  height: 150px;
}

/* VIEWPORT */
.news-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* EDGE FADES */
.news-viewport::before,
.news-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.news-viewport::before {
  left: 0;
  background: linear-gradient(to right, #f7d303, rgba(247,211,3,0));
}

.news-viewport::after {
  right: 0;
  background: linear-gradient(to left, #f7d303, rgba(247,211,3,0));
}

/* TRACK */
.news-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* CARD */
.news-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 40px 80px;
  box-sizing: border-box;
  text-align: center;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.news-index {
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

/* PROGRESS BAR */
.news-line {
  height: 3px;
  background: rgba(0,0,0,0.3);
  margin: 10px auto 20px;
  width: 100%;
  overflow: hidden;
}

.news-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: #000;
}

/* ARROWS */
.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 48px;
  color: #000;
  cursor: pointer;
  z-index: 10;
  padding: 0 20px;
}

.news-arrow.left {
  left: 0;
}

.news-arrow.right {
  right: 0;
}

.join-container {
   align-items: center; 
   display: flex;
   height: 80px;
   justify-content: center;
   gap: 15px;
}

.cal-gold-links a,
.cal-gold-links a:hover,
.cal-gold-links a:visited,
.cal-gold-links a:active {
  color: #c9a13b; /* California Gold */
}
.route-section {
  position: relative;
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.7), rgba(0,0,0,0));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 60px;
  box-sizing: border-box;

  align-items: end;
}

.section-overlay h2 {
  color: white;
  margin: 0;
  font-size: 44px;
  font-family: 'Play', sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.section-overlay .expand-text {
  color: white;
  font-size: 1.2em;
  margin-top: 10px;
}


.officers-grid {
  display: grid;
  grid-template-columns: repeat(2, 300px); /* 2 columns, fixed width */
  column-gap: 50px; /* constant gap between columns */
  row-gap: 60px;    /* gap between rows */
  justify-content: center; /* centers the entire grid horizontally */
  padding: 40px 0;
}

.officer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.officer img {
  width: 200px;   /* larger images */
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.officer h3 {
  margin: 0 0 5px;
  font-family: 'Play', sans-serif;
  text-align: center;
}

.officer p {
  margin: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 650px) {
  .officers-grid {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }
}

.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  background-color: rgb(4, 30, 66);
}

.partners-title {
  padding-top: 40px;
  font-family: 'Play', sans-serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 40px;
  text-align: center;
}

.partner-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.partner-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.partner-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.partner-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  text-align: center;
  width: 90%;
  color: #111;
}

.partner-text a {
  color: #003262;   /* your desired link color */
  text-decoration: underline; /* optional: remove underline */
}

.image-tile {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  overflow: hidden;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.partner-logo-tile {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px; /* rounded edges for image */
}

.tile-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255,255,255,0.9); /* white translucent panel */
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.partner-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: rgb(0,0,80);
  margin-bottom: 15px;
}

.donation-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.donate-btn {
  background-color: rgb(0,0,80);
  color: rgb(200,200,0);
  border: none;
  padding: 10px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-btn:hover {
  background-color: rgb(0,0,60);
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(0,0,80);
  color: rgb(200,200,0);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup.show {
  opacity: 1;
}

.donate-title {
  font-family: 'Play', sans-serif;
  color: rgb(0,0,60);
  font-size: 40px;
}




/* =====================
   ROUTE DIVIDER SYSTEM
===================== */

.route-divider {
  position: relative;
  background: black;
  
}

/* thin white lines */
.divider-line {
  height: 2px;
  background: white;
  width: 100%;
}

.divider-line.top {
  position: relative;
  z-index: 2;
}

.divider-line.bottom {
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.6s ease;
}

/* dropdown starts collapsed */
.route-dropdown {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: black;
  transition:
    max-height 1.5s ease,
    opacity 0.8s ease;
}

/* OPEN STATE */
.route-divider.open .route-dropdown {
  opacity: 1;
}

.route-divider.open .divider-line.bottom {
  transform: translateY(var(--expand-distance));
}




.route-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
}

.route-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.route-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5em;
  color: white;
}

.route-info p {
  margin: 3px 0;
  color: white;
}

.route-info a {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
}




.sponsor-layout {
  display: flex;
  width: 100%;
  height: 500px;
}

/* ================= LEFT ================= */

.sponsor-left {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.gold-box {
  background: #c9a13b;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom:40px;

  
  height: 100%;
  width: 100%;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}

.gold-box.fade {
  opacity: 0;
}

.timer-bar {
  margin-top: 20px;
  height: 6px;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
  
}

.timer-fill {
  height: 100%;
  width: 0%;
  background: black;
}

.gold-box h2 {
  flex: 0.2;
  font-size: 20px;
}

.gold-box h3 {
  flex: 3;
  font-size: 60px;
  
}

.gold-box p {
  flex: 4.5;
}

.gold-box h3 a {
  color: inherit;           /* keeps same color as h3 */
  text-decoration: none;    /* remove underline */
}

.gold-box h3 a:hover {
  text-decoration: underline; /* optional hover effect */
}


/* ================= RIGHT ================= */

.sponsor-right {
  width: 60%;
  position: relative;
  overflow: hidden;
}

.card-stage {
  margin-right: 100px;
  
  position: absolute;
  inset: 0;
}

/* ================= CARD ================= */

.sponsor-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 400px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;

  transform: translate(-50%, -50%);
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.sponsor-card img {
  max-width: 75%;
  max-height: 75%;
}

/* states */
.sponsor-card.from-right {
  transform: translate(150%, -50%);
  opacity: 0;
}

.sponsor-card.center {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.sponsor-card.to-left {
  transform: translate(-200%, -50%);
  opacity: 0;
}

.card-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sponsor-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(120%, -50%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.sponsor-card.enter {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.sponsor-card.exit {
  transform: translate(-180%, -50%);
  opacity: 0;
}

/* Gold box stays visible */
#gold-box {
  opacity: 1;
}

/* Text elements default hidden */
#gold-box h2,
#gold-box h3,
#gold-box p {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* When visible */
#gold-box.visible h2,
#gold-box.visible h3,
#gold-box.visible p {
  opacity: 1;
}

.timer-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  margin-top: 20px;
}

.timer-fill {
  height: 100%;
  width: 0%;
  background: black;
}

@media (max-width: 900px) {
  .sponsor-layout {
    flex-direction: column;
    height: auto;
  }

  .sponsor-left,
  .sponsor-right {
    width: 100%;
    height: 300px; /* you can adjust this */
  }

  .sponsor-right {
    margin-top: 20px;
  }

  .card-stage {
    margin-right: 0;
  }
}



