@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://use.typekit.net/phz8dai.css");

:root {
  --dark: #024230;
  --middle: #006648;

  --gray: #353535;
  --light-gray: #89898b;
  --xlight-gray: rgba(137, 137, 139, 0.05);

  --apple: #87d65c;
  --apple-light: #87d65c50;

  --white: #ffffff;

  --sans: "Source Sans 3", sans-serif;
  --serif: "EB Garamond", sans-serif;
  --field: "field-gothic-condensed", sans-serif;
}

body {
  font-family: var(--sans);
}

nav {
  background-color: var(--middle);
  padding: 1.2rem 1.8rem;
  width: 100vw;
  box-sizing: border-box;
  border-bottom: 0.1rem solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-left: -8px;
  margin-top: -8px;
}

nav .nav-row-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-family: var(--field);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 0.7;
}

nav img.logo {
  height: 3rem;
  margin-right: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  display: block;
  width: 30px;
  height: 3px;
  background: white;
  position: relative;
  transition: transform 0.15s ease-in-out;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  transition: top 0.15s ease-in-out, bottom 0.15s ease-in-out,
    transform 0.15s ease-in-out;
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  bottom: -10px;
}

.content {
  padding: 3rem;
  padding-left: 15%;
  padding-right: 15%;
}

.scores {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  padding-bottom: 0.2rem;
  background-color: white;
  width: 100vw;
  position: relative;
  left: -8px;
  top: -8px;
}

.scores td:first-child {
  min-width: 9rem;
  padding-left: 0.6rem;
}

.scores td:last-child {
  padding-right: 1rem;
}

.scores tr:first-child td {
  font-size: 0.9rem;
  font-family: var(--field);
  opacity: 0.5;
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
}

.scores td:last-child {
  min-width: 7rem;
  text-align: right;
}

.scores tr:not(:first-child) td:last-child {
  font-size: 1.2rem;
}

.scores td:first-child span {
  margin-left: 0.75rem;
  font-size: 1.2rem;
  position: relative;
  top: -0.35rem;
}

.scores img {
  display: inline-block;
  height: 1.6rem;
}

.scores table {
  transition: background-color 0.15s;
  flex-shrink: 0;
}

.scores td {
  text-transform: uppercase;
}

.scores table:hover {
  background-color: var(--xlight-gray);
}

.score-team {
  padding-right: 1rem;
  min-width: 7rem;
  font-weight: 600;
}

.score-number {
  padding-right: 1rem;
}

.scores td:has(img) span {
  font-weight: 600;
  font-family: var(--field);
}

.weareoes {
  height: calc(100vh - 12.1rem);
  margin-left: -8px;
  width: 100vw;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-image: url(/_assets/weareoes.jpg?width=1500);
}

.hero div {
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, transparent, black);
}

.hero.weareoes h1 {
  font-family: var(--serif);
  color: var(--white);
  font-weight: 400;
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  font-size: 4rem;
  text-align: center;
  line-height: 3.6rem;
}

.hero.weareoes p {
  font-family: var(--sans);
  color: var(--white);
  font-weight: 400;
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  font-size: 1.2rem;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.small-articles {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  width: calc(100% + 2rem);
  margin-left: -1rem;
}

.small-articles a {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 1rem;
  text-decoration: none;
  color: black;
}

.small-articles img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 0.4rem;
}

.small-articles span {
  font-family: var(--field);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.4rem;
  display: block;
  color: var(--apple);
}

.small-articles h3 {
  margin-top: 0.4rem;
  font-family: var(--field);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.small-articles a {
  transition: opacity 0.15s;
}

.small-articles a:hover {
  opacity: 0.7;
}

.small-articles p {
  margin-top: 0px;
}

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots button {
  width: 0.3rem;
  aspect-ratio: 1 / 1;
  transform: scale(0.7);
  border-radius: calc(0.75rem / 2);
  border: none;
  margin: 0 4px;
  background: var(--light-gray);
  opacity: 0.7;
  cursor: pointer;
}

.carousel-dots button.active {
  opacity: 1;
  background: var(--middle);
}

.content h1 {
  font-family: var(--field);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 4rem;
  margin-bottom: 2rem;
}

.green {
  color: var(--middle);
}

.instagram-feed {
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow: hidden;
}

.instagram-feed div {
  width: 100%;
}

.section {
  padding: 4rem;
  width: calc(100vw - 8rem);
  position: relative;
  left: -8px;
  background-color: var(--dark);
  overflow: hidden;
}

.section h1 {
  color: white;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.6rem;
  margin-top: 0px;
  margin-bottom: 3rem;
}

.stories-section {
  background-color: var(--middle);
  color: white;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}

.stories-info {
  flex: 0 0 15rem;
}

.stories-info img {
  height: 3rem;
}

.stories-info h2 {
  font-size: 3.5rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  font-family: var(--field);
}

.stories-info p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.stories-carousel-container {
  flex-grow: 1;
  min-width: 0;
}

.stories-carousel-wrapper {
  overflow: hidden;
}

.stories-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.story-card {
  flex: 0 0 17.5rem;
  aspect-ratio: 1 / 1.5;
  border-radius: 0.4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  color: white;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.story-card * {
  position: relative;
  z-index: 2;
}

.card-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 5px;
}

.carousel-navigation {
  margin-top: 20px;
}

.carousel-btn {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  margin-right: 10px;
  transition: background-color 0.2s;
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.content h2 {
  font-family: var(--field);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--middle);
  border-bottom: 2px solid var(--apple-light);
  padding-bottom: 0.5rem;
  line-height: 2rem;
}

/* Gameday specific styles */
#map {
  height: 500px;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
}

.mapboxgl-popup {
  max-width: 200px;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: var(--sans);
  padding: 10px 15px;
  border-radius: 8px;
}

.mapboxgl-popup-content h4 {
  margin: 0 0 5px 0;
  font-family: var(--field);
  color: var(--dark);
}

/* FAQ Styles */
.faq-container {
  max-width: 100%;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.5rem 1rem;
  font-family: var(--field);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: var(--xlight-gray);
}

.faq-question::after {
  content: "+";
  font-size: 2rem;
  color: var(--apple);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.15s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease-in-out, padding 0.15s ease;
  padding: 0 1rem;
  color: var(--gray);
}

.faq-answer p {
  margin-top: 0;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.mapboxgl-popup-content {
  border-radius: 0.4rem !important;
  padding: 1rem !important;
}

.mapboxgl-popup-content h2 {
  margin-top: 1rem;
  margin-bottom: 0px;
}

.mapboxgl-popup-content p {
  line-height: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.sport-card {
  display: block;
  text-decoration: none;
  color: var(--dark);
  border-radius: 0.4rem;
  overflow: hidden;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sport-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.sport-card-content {
  padding: 1.5rem;
}

.sport-card h3 {
  margin: 0;
  font-family: var(--field);
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--middle);
}

.athletes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.athletes a {
  padding: 1rem;
  display: block;
  text-decoration: none;
  color: var(--dark);
  border-radius: 0.4rem;
  overflow: hidden;
  background-color: var(--white);
  /* border: 2px solid var(--xlight-gray); */
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow .15s;
  text-align: center;
}

.athletes a:hover {
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.athletes a img {
  width: calc(100% + 2rem);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  position: relative;
  margin-bottom: -1rem;
  left: -1rem;
  top: -1rem;
}

.athletes a h3 {
  font-family: var(--field);
    text-transform: uppercase;
    font-size: 2rem;
    margin-top: .5rem;
    margin-bottom: .25rem;
    color: var(--dark);
}

.athletes a span {
  margin-bottom: .5rem;
  display: block;
}

.sport-nav {
  background: var(--dark);
    position: sticky;
    top: 5.8rem;
    padding: 1rem;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    margin-left: -8px;
    width: calc(100vw - 2rem);
    z-index: 500;
}

.sport-nav a {
  color: white;
  text-decoration: none;
  margin-right: .5rem;
  transition: opacity .15s;
}

.sport-nav a:hover {
  opacity: .7;
}

.sport-nav a:first-child {
  font-weight: 600;
    font-family: var(--field);
    text-transform: uppercase;
    margin-right: 1rem;
}

.sport-cover {
  margin-left: -8px;
    width: calc(100vw - 4rem);
    padding: 2rem;
    margin-top: 0rem;
    height: 30rem;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.sport-gradient {
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(180deg, transparent, black);
}

.sport-cover a {
  text-decoration: none;
    color: white;
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    width: calc(100vw - 4rem);
    overflow: hidden;
}

.sport-cover a h1 {
  margin-top: 0.4rem;
    font-family: var(--field);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 3.4rem;
    margin-bottom: 0.8rem;
}

.sport-cover a span {
  font-family: var(--field);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.4rem;
    display: block;
    color: white;
    opacity: .7;
}

.sport-cover a p {
  margin-top: 0px;
}

.events.scores {
  width: calc(100% + 16px);
    position: relative;
}

.articles.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.full-events {
  flex-direction: column;
    gap: .5rem;
}

.bio {
  position: relative;
  left: -8px;
  width: 100vw;
  text-align: center;
}

.bio .banner {
  background-color: var(--dark);
  width: 100%;
  height: 30rem;
  background-position: top center;
  background-size: cover;
}

.bio img {
  height: 20rem;
  width: 16rem;
  object-fit: cover;
  position: relative;
  top: -12rem;
  border-radius: .4rem;
  margin-bottom: -12rem;
}

.bio h1 {
  font-family: var(--field);
    text-transform: uppercase;
    font-size: 3.6rem;
    margin-top: .5rem;
    /* border-bottom: 3px solid var(--middle); */
    margin-left: 15%;
    margin-right: 15%;
    padding-bottom: 0px;
    /* margin-bottom: 1.6rem; */
    margin-bottom: 0px;
}

.bio p {
  margin-top: .25rem;
  margin-bottom: 1.5rem;
  opacity: .8;
}

.fields {
  display: flex;
    text-align: center;
    justify-content: center;
    gap: 4rem;
}

.fields span {
  display: block;
}

.fields span:first-child {
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  color: var(--middle);
  margin-bottom: .5rem;
}

.fields span:last-child {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--field);
}

.team-article-content a {
  color: var(--middle);
  text-decoration-color:#00664850;
}

.team-article-mentioned {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-article {
  margin-top: 3rem;
  text-align: center;
}

.team-article span {
  font-family: var(--field);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.4rem;
  display: block;
  color: var(--apple);
}

.team-article h1 {
  font-family: var(--field);
    text-transform: uppercase;
    font-size: 5rem;
    margin: 1rem;
}

.team-article-mentioned a {
  height: 4rem;
  padding: 1rem;
  display: flex;
  text-decoration: none;
  color: black;
  vertical-align: center;
  border-radius: .4rem;
  overflow: hidden;
  background-color: var(--xlight-gray);
}

.team-article-mentioned div {
  height: fit-content;
}

.team-article-mentioned h3 {
  margin: 0px;
  margin-top: .5rem;
  font-family: var(--field);
  text-transform: uppercase;
  font-size: 1.6rem;
}

.team-article-mentioned span {
  opacity: .7;
}

.team-article-mentioned img {
  height: calc(100% + 2rem);
  position: relative;
  left: -1rem;
  top: -1rem;
  margin-right: 0px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

footer {
  position: relative;
  left: -8px;
  bottom: -8px;
  width: calc(100vw - 4rem);
  padding: 2rem;
  text-align: center;
  background-color: var(--middle);
  margin-top: -8px;
  color: white;
}

footer .row {
  justify-content: center;
  display: flex;
  gap: 2rem;
  margin-left: 15%;
  margin-right: 15%;
}

footer .row div {
  /* width: 100%; */
  padding: 2rem;
  text-align: left;
}

footer img {
  height: 8rem;
  margin-bottom: 0px;
  margin-top: 2rem;
}

footer .row * {
  display: block;
  color: white;
  text-decoration: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  padding: 2rem;
  text-decoration: none;
  color: var(--dark);
  border-radius: 0.5rem;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--apple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.15s ease;
}

.about-card:hover .about-card-icon {
  background-color: var(--apple);
}

.about-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--dark);
  stroke-width: 1.5;
  transition: stroke 0.15s ease;
}

.about-card:hover .about-card-icon svg {
  stroke: var(--white);
}

.about-card h3 {
  margin: 0;
  font-family: var(--field);
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--middle);
}

.timeline {
  position: relative;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--xlight-gray);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  z-index: 1;
}

.timeline-year {
  padding: 10px 0;
  text-align: center;
  font-size: 2.5rem;
  font-family: var(--field);
  font-weight: 700;
  color: var(--middle);
  background-color: #fdfdfd;
  position: relative;
  z-index: 2;
  width: 150px;
  margin: 30px auto -15px auto;
}

.timeline-entry {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
  z-index: 2;
}

.timeline-entry.left {
  left: 0;
  padding-right: 25px;
}

.timeline-entry.right {
  left: 50%;
  padding-left: 25px;
}

.timeline-entry::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--apple);
  top: 22px;
  border-radius: 50%;
  z-index: 3;
}

.timeline-entry.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.timeline-content h3 {
  margin-top: 0;
  font-family: var(--serif);
    font-weight: 500;
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--light-gray);
  text-transform: uppercase;
}

.content p.intro {
  text-align: center;
}

.newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form .input-group {
  display: flex;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
  font-family: var(--sans);
}

.newsletter-form button {
  padding: 1rem 1.5rem;
  border: none;
  background-color: var(--middle);
  color: white;
  font-family: var(--field);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: var(--dark);
}

#form-message {
  margin-top: 1rem;
  font-size: 1rem;
  min-height: 1.5rem;
}

#form-message.success {
  color: var(--middle);
  font-weight: 500;
}

#form-message.error {
  color: #c0392b;
  font-weight: 500;
}

/* --- Responsive Timeline --- */
@media screen and (max-width: 800px) {
  .timeline::after {
      left: 25px;
      display: none;
  }
  .timeline-entry {
      width: 100%;
      padding: 0px !important;
      padding-left: 0px;
      padding-right: 0px;
  }
  .timeline-entry.left, .timeline-entry.right {
      left: 0%;
  }
  .timeline-entry.left::after, .timeline-entry.right::after {
      left: 15px;
      display: none;
  }

  .timeline-content {
    width: calc(100% - 40px);
    margin-top: 1rem;
  }
}

@media (max-width: 800px) {
  .hero p {
    display: none;
  }

  .small-articles {
    flex-direction: column;
  }

  .content {
    padding: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .small-articles > a {
    display: none;
  }

  .small-articles > a:nth-child(-n + 4) {
    display: flex;
    flex-direction: column;
  }

  .carousel-dots {
    display: none;
  }

  .section {
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: calc(100vw - 2rem);
  }

  .instagram-feed {
    flex-direction: column;
  }

  .stories-section {
    flex-direction: column;
    gap: 1rem;
  }

  .stories-carousel-container {
    width: 100%;
  }

  .stories-info {
    flex: 0;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-row-left {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0;
    padding-top: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 0;
    width: 100%;
    border-top: 1px solid rgba(221, 221, 221, 0.3);
  }

  nav.nav-open .hamburger {
    transform: rotate(45deg);
  }

  nav.nav-open .hamburger::before {
    top: 0;
    transform: rotate(90deg);
  }

  nav.nav-open .hamburger::after {
    bottom: 0;
    transform: rotate(90deg);
  }

  .team-article h1 {
    font-size: 3rem;
  }

  .team-article {
    padding: 1rem;
    margin-top: 1rem;
  }

  .bio .banner {
    height: 20rem;
  }

  .sport-cover h1 {
    font-size: 2.6rem;
  }

  footer .row {
    flex-direction: column;
    margin: 0px;
    gap: 0px;
  }
}
