  :root {
  --primary-color: #dc2e23;
}

.bg-red {
  background-color: var(--primary-color) !important;
}

a.arrow-link:hover {
  text-decoration: underline;
}

a.arrow-link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 0.5rem;
  display: inline-block;
}

/* news cards  */
.news-card {
  border: none;
  border-radius: 0;
  background-color: var(--white);
  font-size: 18px;
  text-align: left;
  margin-bottom: 40px;
  border-radius: 0;
}

.news-card .news-card-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 220px;
  width: 100%;
  aspect-ratio: 16/9;
}

.news-card .news-card-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.25rem;
  height: 100%;
  align-self: stretch;
}

.news-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.news-card .card-date {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.news-card .news-card-image {
  width: 100%;
  margin: 0 auto;
  height: 240px;
}

.news-card .news-card-content a {
  margin-top: auto !important;
}
/*  */

/* contact cards  */

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-cards .card {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .contact-cards .card {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 992px) {
  .contact-cards .card {
    flex: 1 1 calc(33% - 1rem);
    max-width: calc(33% - 1rem);
  }
}
/*  */

.athletic-hero-banner {
  padding: 2em 1em;
  color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

.athletic-hero-banner:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
/*  */
