/**
 * Archive Highlights - UI giống borealisrecords.com/xem-lai-bong-da/
 * Grid đều 4 cột, thumbnail + play icon + label
 */

/* Nền trang */
body.post-type-archive-highlights #content,
body.post-type-archive-highlights #primary,
body.post-type-archive-highlights .site-main {
  background: #0a0a0a !important;
}

/* Giới hạn chiều rộng giống web gốc */
.highlights-archive-wrap .entry-content {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

/* Tiêu đề trang */
.highlights-archive-wrap .highlights-archive-title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #23282f;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
}

/* Archive grid - tất cả item cùng kích thước */
.videos_box--archive .post-item--archive {
  background: linear-gradient(90deg, #1A1D23 0%, #141417 100%);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.videos_box--archive .post-item--archive .post-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  aspect-ratio: 16 / 10;
}

.videos_box--archive .post-item--archive .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play icon - circular translucent green, bottom-left */
.videos_box--archive .post-item--archive .icon-video-play {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(1, 178, 67, 0.85) !important;
  background-image: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.videos_box--archive .post-item--archive .icon-video-play::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid #23282f;
  margin-left: 4px;
}

.videos_box--archive .post-item--archive .post-title {
  padding: 12px 14px;
  min-height: auto;
  flex: 1;
  display: flex;
  align-items: center;
}

.videos_box--archive .post-item--archive .post-title h3 {
  margin: 0;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.videos_box--archive .post-item--archive .post-title h3 a {
  font-family: "Oswald", "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #F2F3F3 !important;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.videos_box--archive .post-item--archive .post-title h3 a:hover {
  color: #01b243 !important;
}

/* Pagination */
.highlights-archive-wrap .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlights-archive-wrap .nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #1A1D23;
  color: #F2F3F3;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.highlights-archive-wrap .nav-links .page-numbers:hover,
.highlights-archive-wrap .nav-links .page-numbers.current {
  background: #01b243;
  color: #23282f;
}

.highlights-archive-wrap .nav-links .page-numbers.dots {
  background: transparent;
  cursor: default;
}

/* Mobile */
@media screen and (max-width: 767px) {
  .videos_box--archive .post-item--archive .post-title h3 a {
    font-size: 12px;
  }
  .videos_box--archive .post-item--archive .icon-video-play {
    width: 36px;
    height: 36px;
    bottom: 8px;
    left: 8px;
  }
  .videos_box--archive .post-item--archive .icon-video-play::before {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 10px;
    margin-left: 3px;
  }
}
