/* ============================================
   Voices Archive
============================================ */
.voices-archive_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 80px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .voices-archive_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .voices-archive_list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 48px 0 0 0;
  }
}

.voices-archive_list__item {
  min-height: 260px;
  padding: 1px;
  background: #e8e8e8;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.voices-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) {
  .voices-archive_list__link {
    gap: 16px;
  padding: 16px 8px;
  }
}

/* ---- 写真 ---- */
.voices-archive_list__photo {
  width: 40%;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {

  .voices-archive_list__photo {
    width: 45%;
  }
}

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

/* ---- テキスト ---- */
.voices-archive_list__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voices-archive_list__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
width: fit-content;
    margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .voices-archive_list__label {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .voices-archive_list__label {
    margin-left: 0;
  }
}
.voices-archive_list__label::before {
  content: '';
  position: absolute; 
  left:0;
  bottom: -0.3em;
  transform: translateY(-50%);
  width: 100%;
  height: 0.4em;
  background: #E6F183;
  z-index: -1;
}

.voices-archive_list__arrow {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
@media screen and (max-width: 1250px) {
  .voices-archive_list__arrow {
    margin: 8px 0;
  }
}
@media screen and (max-width: 768px) {
  .voices-archive_list__arrow {
    margin: 4px 0;
    justify-content: flex-start;
  }
  .voices-archive_list__arrow svg{
    width: 16px;
    height: 12px;
  }
}

.voices-archive_list__name {
  font-size: 18px;
  font-weight: 700;
  color: #136AAB;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .voices-archive_list__name {
    font-size: 16px;
  }
}

.voices-archive_list__text {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .voices-archive_list__text {
    font-size: 14px;
  }
}

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