.mof-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem;
  font-family: 'Chivo', sans-serif;
}

.mof-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/mecca-football.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

.mof-header {
  position: relative;
  text-align: center;
  margin-bottom: 2.75rem;
}

.mof-title {
  font-family: 'Chivo', sans-serif;
  color: rgb(229, 29, 47);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  margin: 0;
}

.mof-subtitle {
  font-family: 'Chivo', sans-serif;
  color: #000;
  font-size: clamp(1.5rem, 1.4vw, 1rem);
  margin: 0;
  line-height: 1;
}

.mof-grid {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.mof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mof-divider {
  position: relative;
  border-top: 2px solid rgb(229, 29, 47);
  border-bottom: 2px solid rgb(229, 29, 47);
  height: 0;
  margin: 0;
}

.mof-center-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 5px;
  line-height: 0;
  z-index: 2;
}

.mof-center-icon img {
  width: 34px;
  height: 34px;
  display: block;
}

.mof-cell {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 2.5px solid rgb(229, 29, 47);
  position: relative;
}

.mof-cell:last-child {
  border-right: none;
}

.mof-value {
  font-family: 'Chivo', sans-serif;
  color: rgb(229, 29, 47);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 2.5rem);
  line-height: 1;
}

.mof-label {
  font-family: 'Chivo', sans-serif;
  font-style: normal;
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  line-height: 1.2;
}

.border-none {
  border: none !important;
}

@media (max-width: 640px) {
  .mof-section {
    padding: 4rem 1rem;
  }

  .mof-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .mof-cell:nth-child(2) {
    border-right: none;
  }

  .mof-cell:nth-child(3) {
    border-right: 2.5px solid rgb(229, 29, 47);
  }

  .mof-cell:nth-child(4) {
    border-right: none;
  }

  .mof-cell {
    padding: 1.25rem 0.75rem;
  }

  .mof-bg {
    background-position: center;
    background-size: cover;
  }

  .mof-center-icon {
    border-radius: 20px;
  }

  .mof-center-icon img {
    width: 26px;
    height: 26px;
  }

  .mof-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 8vw, 3rem);
  }

  .mof-subtitle {
    font-size: clamp(1rem, 4vw, 1rem);
  }

  .mof-value {
    font-size: clamp(2rem, 4vw, 2rem);
  }
}