* {
  font-family: Roboto, sans-serif;
}

.wrapper-arena {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 90px 30px;
  max-width: 1366px;
  margin: 0 auto;
}

section.post-arena {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: start;
  gap: 35px;
  margin-bottom: 50px;
}

.post-arena-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  max-width: 1366px;
  margin-bottom: 40px;
}

.post-arena-title {
  font-family: Roboto;
  font-size: 53px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 0em;
  text-align: left;
  max-width: 500px;
  text-transform: uppercase;
}

.post-arena-card {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  gap: 60px;
  width: 100%;
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.post-arena-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-height: 501px;
  max-width: 567px;
  width: 100%;
  box-shadow: 7px 7px 13px 0px #00000012;
}

.post-arena-card-image img {
  aspect-ratio: 567/501;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.post-arena-card-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 21px;
}

.post-arena-card-content-title {
  width: 70%;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  color: #455a64;
}

.post-arena-card-content-main {
  font-family: Roboto;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

.post-arena-card-content-text {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  max-width: 655px;
  text-align: left;
  width: 100%;
}

.post-arena-card-content-text a {
  color: #e30000;
  text-decoration: none;
}

.post-arena-card-content-text ul {
  /* space between list items */
  margin-bottom: 24px;
}

.post-arena-card-content-text li {
  margin: 10px 0;
}

section.banner-arena {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px;
  background-image: url("../assets/arena-card-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 827px;
}

section.info-arena {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}

.info-arena-left {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.info-arena-left-text {
  font-family: Roboto;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}

.info-arena-left-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: right;
}

.info-arena-right {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1260px) {
  .wrapper-arena {
    margin-top: 0;
  }

  .post-arena-title {
    font-size: 40px;
    line-height: 44px;
  }

  .post-arena-card {
    gap: 40px;
  }

  .post-arena-card-image {
    height: 100%;
    max-height: 331px;
    max-width: 366px;
    width: 100%;
  }

  .post-arena-card-content-title {
    font-size: 20;
    line-height: 24px;
    width: 100%;
  }

  .post-arena-card-content-main {
    font-size: 18px;
    line-height: 22px;
  }

  .post-arena-card-content-text {
    font-size: 18px;
    line-height: 22px;
  }

  #post-arena-card-image {
    width: 100%;
  }

  section.banner-arena {
    height: 627px;
  }
}

@media screen and (max-width: 1260px) {
  .wrapper-arena {
    margin-top: 115px;
    padding: 50px 26px;
  }

  .post-arena-title {
    font-size: 30px;
    line-height: 34px;
  }

  .post-arena-card-image {
    max-height: 261px;
    max-width: 296px;
  }

  .post-arena-card-content-title {
    font-size: 18;
    line-height: 20px;
    width: 100%;
  }

  .post-arena-card-content-main {
    font-size: 16px;
    line-height: 20px;
  }

  .post-arena-card-content-text {
    font-size: 16px;
    line-height: 20px;
  }

  .info-arena-left-text {
    font-size: 20px;
    line-height: 23px;
  }
}

@media screen and (max-width: 940px) {
  .wrapper-arena {
    padding: 32px;
  }

  .post-arena-header {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }

  .post-arena-title {
    font-size: 24px;
    line-height: 28px;
  }

  .post-arena-card {
    flex-direction: column;
    gap: 40px;
  }
}
