/* ============================================================
   Information Page
   ============================================================ */

/* Hero は共通 .page-hero を使用（main.css） */

/* ============================================================
   カテゴリフィルター（共通 .filter-nav を4列に上書き）
   ============================================================ */
@media (min-width: 769px) {
  .page-information .filter-nav__inner {
    max-width: 1200px;
  }

  .page-information .filter-nav__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   記事一覧（リスト形式）
   ============================================================ */
.info-list-section {
  padding: 0 0 80px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-item {
  border-bottom: 1px solid #e0e0e0;
}

.info-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.info-item__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 16px;
  text-decoration: none;
  color: #222;
  /* ホバーはトップページの INFORMATION（.press-item__link）と揃える */
  transition: background 0.15s;
}

.info-item__link:hover {
  background: #f3f3f3;
  opacity: 1;
}

.info-item__body {
  flex: 1;
  min-width: 0;
}

.info-item__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.info-item__date {
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 24px;
  color: #6a818f;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.info-item__cat {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #145393;
  white-space: nowrap;
}

.info-item__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.16em;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-item__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url('../images/common/icon_detail_off.svg') center / contain no-repeat;
  transition: background-image 0.2s ease;
  align-self: center;
}

.info-item__link:hover .info-item__arrow {
  background-image: url('../images/common/icon_detail_on.svg');
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  .info-inner {
    padding-top: 60px;
  }
  .info-list__heading {
    font-size: 22px;
  }

  .info-item__link {
    flex-wrap: wrap;
    padding: 20px 8px;
    gap: 8px;
  }

  .info-item__meta {
    width: 100%;
  }

  .info-item__title {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    white-space: normal;
    text-overflow: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .info-item__arrow {
    width: 20px;
    height: 20px;
  }
}
