body {
  background: black;
}
button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: none;
}
.warp {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1200px;
  min-width: 750px;
  width: 100%;
}

.header {
  position: relative;
  width: 100%;
  position: sticky;
  top: 0;
  background: black;
  z-index: 10;
  transition: top 300ms;
}

.header.up {
  top: 0;
}

.header.down {
  top: -280px;
}

.header_title {
  width: 100%;
}
.header_filter {
  display: flex;
  align-items: center;
  width: 100%;
}
.header_filter_slide {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-x: auto;
}
/* ( 크롬, 사파리, 오페라, 엣지 ) 동작 */
.header_filter_slide::-webkit-scrollbar {
  display: none;
}
.header_filter_btn {
  height: 70px;
  padding: 0 24px;
  margin-right: 16px;
  font-size: 28px;
  font-weight: 400;
  color: #a3a3a3;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 200ms;
}
.header_filter_btn:last-of-type {
  margin-right: 0;
}
.header_filter_btn.active {
  background: white;
  color: black;
}
.nav {
  width: 100%;
  padding-top: 48px;
}
.nav_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 91px;
}
.nav_text {
  color: white;
  font-weight: 700;
  font-size: 40px;
}
.nav_btn {
  width: 50px;
  height: 50px;
  background: url(./img/icon_arrow.svg) no-repeat center;
  background-size: 22px 40px;
  font-size: 0;
}
.nav_btn.prev {
  margin-right: 46px;
}
.nav_btn.next {
  transform: rotate(180deg);
  margin-left: 46px;
}

.swiper-container {
  overflow: hidden;
}

.swiper-slide .blank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 216px;
  color: white;
  font-weight: 800;
  font-size: 28px;
}

.swiper-slide .notice {
  width: 100%;
  color: white;
  font-size: 22px;
  text-align: center;
  padding: 0 24px;
  padding-bottom: 24px;
  font-weight: 300;
  border-bottom: 2px solid #2f2f2f;
  word-break: keep-all;
  line-height: 32px;
}

.swiper-slide .list {
  position: relative;
  width: 100%;
  color: white;
  display: flex;
  align-items: flex-start;
  padding: 30px 30px 24px;
  border-bottom: 2px solid #2f2f2f;
}
.list_logo {
  width: 160px;
  height: 160px;
  align-self: center;
}

.list_logo img {
  width: 100%;
  height: 100%;
  image-rendering: crisp-edges;
}

.list_contents {
  width: calc(100% - 160px);
  padding-left: 32px;
}
.list_contents_header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.list_contents_header .title {
  color: #6e6e6e;
  font-size: 24px;
  font-weight: 700;
}
.list_contents_header .date {
  font-size: 24px;
  font-weight: 300;
  white-space: nowrap;
}
.list_contents_body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.ai-center {
  align-items: center !important;
}

.list_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.list_footer .comment1 {
  padding-top: 18px;
  color: #f8ffa3;
  font-size: 24px;
  line-height: 36px;
  font-weight: 200;
}

.list_footer .comment2 {
  padding-top: 18px;
  color: white;
  font-size: 24px;
  line-height: 36px;
  font-weight: 200;
}

.match {
  width: 100%;
}

.match .bar {
  width: calc(100% - 36px);
  height: 2px;
  background: #2f2f2f;
  margin: 26px 0 32px 0;
}

.match .player {
  display: block;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
.match .player:last-of-type {
  margin-bottom: 0;
}
.match .player:nth-of-type(4) {
  margin-bottom: 12px;
}
.channel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.channel img {
  height: 20px;
  margin-bottom: 16px;
}
.channel img:last-of-type {
  margin-bottom: 0;
}

/* UFC 언더카드 메인카드 구분 */
.list.ufc_under .channel img {
  position: absolute;
}
.list.ufc_under .channel img:nth-of-type(1n) {
  top: 114px;
}
.list.ufc_under .channel img:nth-of-type(2n) {
  top: 147px;
}
.list.ufc_under .channel img:nth-of-type(3n) {
  top: 312px;
}
.list.ufc_under .list_contents_header .date:last-of-type {
  position: absolute;
  right: 30px;
  bottom: 142px;
}
.list.ufc_under .ufc_under_text {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
}
.list.ufc_under .ufc_under_text span {
  position: absolute;
  right: 30px;
  font-size: 24px;
  color: #f8ffa3;
}
.list.ufc_under .ufc_under_text span:nth-of-type(1n) {
  bottom: 270px;
}
.list.ufc_under .ufc_under_text span:nth-of-type(2n) {
  bottom: 94px;
}
/* ------------------------------ */

@media screen and (min-width: 751px) {
  button {
    cursor: pointer;
  }
  .header {
    padding-bottom: 48px;
    /* top: 140px; */
  }
  .mo {
    display: none !important;
  }
  .header_title {
    background: url(./img/title_pc.png) no-repeat left;
    background-size: cover;
    height: 140px;
    margin-bottom: 32px;
  }
  .header_filter {
    height: 71px;
  }
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .header {
    padding: 48px 0;
  }
  .header_title {
    background: url(./img/title_mo.png) no-repeat left;
    background-size: cover;
    height: 71px;
    margin-bottom: 18px;
  }
  .header_filter {
    height: 103px;
  }
  .header_filter_slide {
    padding: 0 32px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .header_filter_slide::-webkit-scrollbar {
    display: none;
    width: 0; /* Remove scrollbar space */
    height: 0;
    background: transparent; /* Optional: just make scrollbar invisible */
    -webkit-appearance: none;
  }
}
