/* Start custom CSS for html, class: .elementor-element-4b955be */.wfc-sports {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px;
  color: #222;
}

.sports-hero {
  position: relative;
  padding: 46px 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #9f2525 0%, #7f1d1d 100%);
  color: #fff;
  overflow: hidden;
  margin-bottom: 24px;
}

.sports-hero::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}

.sports-hero::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
}

.sports-hero span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.sports-hero h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff;
}

.sports-hero p {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}

.sports-hero a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.75);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 800;
  transition: all .25s ease;
}

.sports-hero a:hover {
  background: #fff;
  color: #9f2525 !important;
}

.sports-notice {
  margin-bottom: 28px;
  padding: 18px 24px;
  border-left: 5px solid #9f2525;
  background: #fbf0f0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sports-card {
  position: relative;
  min-height: 270px;
  padding: 30px 30px 34px;
  border: 1px solid #eadada;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(60,30,20,0.045);
  overflow: hidden;
  transition: all .28s ease;
  animation: sportsFade 0.7s ease both;
}

.sports-card:nth-child(1) { animation-delay: .05s; }
.sports-card:nth-child(2) { animation-delay: .1s; }
.sports-card:nth-child(3) { animation-delay: .15s; }
.sports-card:nth-child(4) { animation-delay: .2s; }
.sports-card:nth-child(5) { animation-delay: .25s; }

@keyframes sportsFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sports-card:hover {
  transform: translateY(-6px);
  border-color: #9f2525;
  box-shadow: 0 18px 38px rgba(60,30,20,0.12);
}

.sports-card::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fbf0f0;
  transition: all .28s ease;
}

.sports-card:hover::before {
  transform: scale(1.35);
}

.sports-card.wide {
  grid-column: span 2;
  min-height: 220px;
}

.sports-num {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 34px;
  font-weight: 800;
  color: #9f2525;
  letter-spacing: -0.04em;
}

.sports-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #222;
}

.sports-time,
.sports-place {
  position: relative;
  z-index: 1;
  margin: 0 0 8px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  font-weight: 800;
  color: #9f2525 !important;
}

.sports-place {
  color: #555 !important;
}

.sports-card p:not(.sports-time):not(.sports-place) {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 800px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }

  .sports-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .wfc-sports {
    padding: 52px 18px;
  }

  .sports-hero {
    padding: 36px 28px;
    border-radius: 24px;
  }

  .sports-hero h2 {
    font-size: 32px;
  }

  .sports-card {
    min-height: auto;
    padding: 26px 24px;
  }
}/* End custom CSS */