/* ============================================
   JLPT Archive
============================================ */
.jlpt-archive_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin: 60px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .jlpt-archive_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .jlpt-archive_list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0 0 0;
  }
}

.jlpt-archive_list__item {
  min-height: 200px;
  padding: 1px;
  background: #e8e8e8;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .jlpt-archive_list__item {
    min-height: 160px;
  }
}

.jlpt-archive_list__link {
  display: flex;
  height: 100%;
  padding: 20px 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  overflow: hidden;
  transition: opacity 0.2s;
  gap: 24px;
}
@media screen and (max-width: 1250px) {
  .jlpt-archive_list__link {
    gap: 16px;
    padding: 16px 8px;
  }
}

.jlpt-archive_list__link:hover {
  opacity: 0.8;
}

/* ---- 写真 ---- */
.jlpt-archive_list__photo {
  width: 40%;
  flex-shrink: 0;
  align-self: flex-start;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.jlpt-archive_list__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- テキスト ---- */
.jlpt-archive_list__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.jlpt-archive_list__label {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  padding: 3px 12px;
  border-radius: 999px;
  color: #136AAB;
  background: #DDF1F2;
  margin: 0;
}
.jlpt-archive_list__label--n1 {
  color: #136AAB;
  background: #DDF1F2;
}
.jlpt-archive_list__label--n2 {
  color: #136AAB;
  background: #E6F183;
}
.jlpt-archive_list__label--n3 {
  color: #fff;
  background: #EB7627;
}

.jlpt-archive_list__year {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 4px 0 0;
}

.jlpt-archive_list__name {
  font-size: 18px;
  font-weight: 700;
  color: #136AAB;
  margin: 0;
}

.jlpt-archive_list__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  margin-top: auto;
  background: linear-gradient(90deg, #6FD3E3 0%, #218CB8 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 8px 8px 16px;
  border-radius: 999px;
}

.jlpt-archive_list__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  padding-left: 2px;
}

/* ---- ページネーション・空表示 ---- */
.jlpt-archive_empty {
  text-align: center;
  padding: 60px 0;
  font-size: 15px;
}
