/** Shopify CDN: Minification failed

Line 37:0 Unexpected "{"
Line 37:1 Expected identifier but found "%"
Line 37:31 Expected identifier but found whitespace
Line 37:39 Expected identifier but found "%"
Line 74:0 Unexpected "{"
Line 74:1 Expected identifier but found "%"
Line 74:31 Expected identifier but found whitespace
Line 74:37 Expected identifier but found "%"
Line 298:0 Unexpected "}"
Line 431:46 Expected "}" to go with "{"

**/
/* Main styles | START */
 * {
   /* --ff-headlines: "Montserrat", sans-serif;
   --ff-body-copy: "Nunito Sans", sans-serif;
   --ff-buttons: "Nunito Sans", sans-serif; */

   /* --clr-liftow-orange: #FF6C0C;
   --clr-hover-100: #f3cb00; */

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

  /* body {
    text-align: center;
  }
   */
  .nav-cards-main-container {
    position: relative;
}

{% comment %} Utility Classes | START {% endcomment %}
  .content-container {
    margin: 0 auto;
    width: min(100%, 75rem);
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-headlines)
} */

h2 {
    margin: 1rem 0 3rem 0;
    font-size: 3rem;
    font-weight: 800;
    line-height: 105%;
}

h3 {
    margin: 1rem 0 3rem 0;
    font-size: 2rem;
    font-weight: 800;
    line-height: 95%;
}

.spacer {
  height: 2rem;
}



button {
    padding: 1rem 1rem;
    /* font-family: var(--ff-buttons); */
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}
{% comment %} Utility Classes | End {% endcomment %}
  
.cycling-team-container {
    margin: 1rem;
    padding: 2rem 0 1.5rem 0;
    background-color: #FF6C0C;
}

@media (min-width: 45rem) {
  .cycling-team-container {
    margin: 2rem;
  }

}

.cycling-team-main-container {
    margin: 0 auto;
    width: min(100%, 100rem);
}

.cycling-team-container .content-container {
    padding: 0 1rem;
}

.cycling-team-container hr {
    height: 0.3rem;
    background-color: #000000;
    border: none;
}

.cycling-team-main-container .team-section {
  margin-bottom: 2rem;
}

.cycling-team-main-container .team-section img.team-section-01 {
  width: min(100%, 900px);
}

hr.divider-team-section-01 {
  margin-bottom: 2rem;
  height: 2rem;
}

.cycling-team-member {
    margin: 0;
    padding: 0rem 0;
}

.dtat-team-member {
    margin: 0;
    padding: 0rem 0 2rem 0;
}

.team-member-img img {
    margin-bottom: 1rem;
    width: 100%;
}

.cycling-team {
    margin: 0 auto 2rem auto;
  text-align: center;
}

.cycling-team-container h2 {
    margin: 1rem 0 0.5rem 0;
    color: #ffffff;
}

.cycling-team h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.team-member-details {
  text-align: center;
}

.team-member-details h3 {
    margin: 0;
    font-size: 2.75rem;
    text-transform: uppercase;
    color: #000000;
}

.team-member-details h4 {
    margin: 0 0 1.4rem 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: #ffffff;
}

  p {
    font-size:1.1rem;
  }

.cycling-team-container p {
    margin: 0 0 3rem 0;
    font-size: 1.4rem;
    color: #ffffff;
}

.team-member-details button {
    margin: 2rem 0 2rem 0;
    width: min(100%, 25rem);
    border: none;
    background-color: #000000;
    transition: all 200ms ease;
}

.team-member-details button:hover {
    color: #FF6C0C;
    background-color: #ffffff;
}


.team-k-w .content-wrapper {
    background-color: #ffffff;
}


@media screen and (min-width: 900px) {
    .cycling-team-member {
        padding: 2rem 0;
        display: grid;
        grid-template-columns: 2fr 4fr;
        gap: 2rem;
    }

    .dtat-team-member {
        padding: 2rem 1rem;
        display: grid;
        grid-template-columns: 2fr 4fr;
        gap: 2rem;
    }

    .team-member-img img {
        margin: 0;
    }

    .team-member-details {
        text-align: left;
    }
}




@media screen and (min-width: 720px) {
    .team-k-w .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
/* Main styles | END */

/* Liftow Cycling Team Member | Modal | START */
/* Modal styles */
.event-modal {
  display: none; 
  position: fixed;
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto; 
  backdrop-filter: blur(5px); 
  transition: opacity 0.3s ease;
}

.modal-content-team {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 800px; 
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: modalEntry 0.4s ease-out;
}

/* Close Button */
.modal-top {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px 0;
}

.close, .close-modal {
  color: #333;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.close:hover, .close-modal:hover {
  color: #e3e3e3; 
}

/* Modal Inner Container Padding */
.modal-container {
  padding: 20px 40px 40px;
}

/* Image Gallery Grid */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.img-gallery img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

}

@media (min-width: 48rem) {

    .event-image, 
    .event-content {
        flex: 1; /* Split 50/50 */
    }

    .event-content {
        text-align: left;
    }

    .events-header h2 {
        font-size: 2rem;
    }

    /* Modal styles */
    .modal-content-team {
        width: 95%;
        margin: 10% auto;
    }
    .modal-container {
        padding: 20px;
    }

}

@media (min-width:75rem) {

    .event-card {
        flex-direction: row;
        height: 400px;
    }

    .event-title {
        text-align: left;
    }

    .event-meta {
        text-align: left;
    }

}


  table.race-schedule {
    margin: 2rem auto 2rem auto;
    padding: 0 1rem 0 1rem;
    text-align: left;
    color: #77777a;
  }
  
  table.race-schedule th,
  table.race-schedule td {
    padding: 5px;
  }

  @media (min-width: 900px) {
    table.race-schedule {
    margin: 2rem 0 2rem 0;
    padding: 0;
    font-size: 1rem;
  }
  }

/* Img Gallery | START  */
.grid-container.img-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 10px; */
    max-width: 100%; /* Adjust as needed */
    margin: auto;
}

.grid-container.img-gallery img {
    width: 100%;
    height: auto;
}

@media (min-width: 900px) {
  .grid-container.img-gallery {
  grid-template-columns: repeat(3, 1fr);
  }
}
/* Img Gallery | END  */


/* Liftow Cycling Team Member | Modal | END */

  @media screen and (min-width: 900px) {

  table.race-schedule {
    margin: 2rem auto 2rem auto;
    padding: 0 1rem 0 1rem;
    text-align: left;
  }
  
  table.race-schedule th,
  table.race-schedule td {
    padding: 5px;
  }

  @media (min-width: 900px) {
    table.race-schedule {
    margin: 2rem 0 2rem 0;
    padding: 0;
    font-size: 1rem;
  }
  }

/* Img Gallery | START  */
.grid-container.img-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* gap: 10px; */
    max-width: 100%; /* Adjust as needed */
    margin: auto;
}

.grid-container.img-gallery img {
    width: 100%;
    height: auto;
}

@media (min-width: 900px) {
  .grid-container.img-gallery {
  grid-template-columns: repeat(3, 1fr);
  }
}
/* Img Gallery | END  */


/* Liftow Cycling Team Member | Modal | END */