.post-type-archive-event #event {
  padding-bottom: 100px;
}

.post-type-archive-event #event .w-1400 {
  width: 100%;
  max-width: 1356px;
  margin: 0 auto;
}

.post-type-archive-event #event .wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.post-type-archive-event #event .sidebar {
  width: 220px;
  flex-shrink: 0;
}

.post-type-archive-event #event .sidebar .page-title {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 28px;
}

.post-type-archive-event #event .sidebar .nav {
  width: 100%;
}

.post-type-archive-event #event .sidebar .nav .swiper-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.post-type-archive-event #event .sidebar .nav .link {
  display: block;
  width: fit-content;
  color: #A0A0A0;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.post-type-archive-event #event .sidebar .nav .link.active {
  color: #000;
  font-weight: 600;
}

.post-type-archive-event #event .content {
  flex: 1;
  min-width: 0;
  padding-top: 16px;
}

.post-type-archive-event #event .content .list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px 20px;
}

.post-type-archive-event #event .content .item {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.post-type-archive-event #event .content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.post-type-archive-event #event .content .item .text {
  position: absolute;
  left: 30px;
  top: 30px;
}

.post-type-archive-event #event .content .item .title {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 10px;
}

.post-type-archive-event #event .content .item .desc {
  color: #444;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.02em;
}




@media screen and (max-width: 1396px) {
  .post-type-archive-event #event .w-1400 {
    max-width: 100%;
    padding: 0 20px;
  }
}



@media screen and (max-width: 1300px) {
  .post-type-archive-event #event .content .list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}



@media screen and (max-width: 1100px) {
  .post-type-archive-event #event .content .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media screen and (max-width: 1000px) {
  .post-type-archive-event #event .sidebar {
    width: 200px;
  }
}



@media screen and (max-width: 768px) {
  .post-type-archive-event #event {
    padding-top: 8px;
    padding-bottom: 80px;
  }

  .post-type-archive-event #event .wrap {
    flex-direction: column;
    gap: 20px;
  }

  .post-type-archive-event #event .sidebar {
    width: 100%;
  }

  .post-type-archive-event #event .sidebar .page-title {
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
  }

  .post-type-archive-event #event .sidebar .nav {
    position: relative;
  }

  .post-type-archive-event #event .sidebar .nav .swiper {
    overflow: visible;
  }

  .post-type-archive-event #event .sidebar .nav .swiper-wrapper {
    flex-direction: row;
    gap: 0;
  }

  .post-type-archive-event #event .sidebar .nav .swiper-slide {
    width: auto;
  }

  .post-type-archive-event #event .sidebar .nav::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100vw;
    height: 1px;
    background-color: #eee;
  }

  .post-type-archive-event #event .sidebar .nav .link {
    font-size: 14px;
    padding: 6px 8px 10px;
  }

  .post-type-archive-event #event .sidebar .nav .link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    display: none;
  }
  
  .post-type-archive-event #event .sidebar .nav .link.active::after {
    display: block;
  }

  .post-type-archive-event #event .content {
    padding-top: 0;
    width: 100%;
  }

  .post-type-archive-event #event .content .list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .post-type-archive-event #event .content .item.rect {
    aspect-ratio: 353 / 150;
  }

  .post-type-archive-event #event .content .item {
    border-radius: 8px;
  }

  .post-type-archive-event #event .content .item .text {
    top: 50%;
    transform: translateY(-51%);
    left: 30px;
  }

  .post-type-archive-event #event .content .item .title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .post-type-archive-event #event .content .item .desc {
    font-size: 12px;
  }

}