.blog {
  margin-top: 200px;
  margin-bottom: 100px;

  &::before {
    content: "";
    position: absolute;

    background: linear-gradient(0deg, #000 0.01%, rgba(0, 0, 0, 0) 41.92%),
      url(../assets/images/coache-team/coach-team-bg.jpg),
      lightgray 0px -250.242px / 100% 124.334% no-repeat;
    background-position: top;
    background-repeat: no-repeat;

    opacity: 0.1;
    top: -15%;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
  }

  @media (max-width: 1270px) {
    margin-top: 150px;
  }
}

.blog__wrapper {
  margin-top: 100px;
  text-align: center;
}

.blog__wrapper h4 {
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  letter-spacing: 1rem;
  color: var(--color-red);
}

.blog__wrapper h1 {
  margin-top: 10px;
  font-size: 42px;
  text-transform: uppercase;
  line-height: 130%;
}

.blog__wrapper ul {
  margin-top: 60px;

  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;

  gap: 45px;
}

.blog__wrapper ul > li {
  width: 450px;
  z-index: 3;
}

.blog__wrapper ul > li img {
  width: 450px;
  height: 320px;
  object-fit: cover;
  border-radius: 33px;

  @media (max-width: 495px) {
    width: 390px;
    height: 276px;
  }

  @media (max-width: 425px) {
    width: 290px;
    height: 176px;
  }
}

.blog__wrapper ul > li h3 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 130%;
  text-transform: uppercase;
}

.blog__wrapper ul > li p {
  margin-top: 30px;
  line-height: 180%;
}

.blog__wrapper button {
  margin-top: 45px;
  padding: 25px 50px;
  font-size: 22px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  background: var(--color-red);
  color: var(--color-white);

  transition: all 0.2s ease;

  &:hover {
    background: var(--color-red-opacity);
  }

  &:focus {
    background: none;
    border: 1px solid var(--color-red);
  }
}
