

/* =========================
   Voice Archive
========================= */
.voice-archive {
  padding: 80px 0;
}

/* グリッド */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* カード */
.voice-card {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* hover */
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* 画像 */
.voice-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* コンテンツ */
.voice-card__content {
  padding: 20px;
}

/* タイトル */
.voice-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b1c2c;
}

/* 抜粋 */
.voice-card__excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}

/* 会社名 */
.voice-card__company {
  font-size: 12px;
  color: #4da3ff;
  font-weight: 500;
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voice-card__thumb img {
    height: 180px;
  }

}
