/* =====================================================
 * Career Consultant Archive CSS
 * Mirror Station
 * ===================================================== */

/* 全体ラッパー */
.ms-consultant-archive {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 20px 80px;
}

/* ===== ヘッダー ===== */
.ms-archive-header {
  text-align: center;
  margin-bottom: 56px;
}

.ms-archive-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
}

.ms-archive-catch {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin: 0;
}

/* ===== タイトル ===== */
.ms-archive-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 72px 0 48px;
}

/* ===== 一覧 ===== */
.ms-consultant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ===== カード ===== */
.ms-consultant-card {
  padding: 24px 8px 0;
  border-top: 1px solid #ddd;
}

.ms-consultant-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ms-consultant-role {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.ms-consultant-stance {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #222;
}

/* ===== リンク ===== */
.ms-consultant-link {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}

.ms-consultant-link:hover {
  opacity: 0.7;
}

/* ===== 空表示 ===== */
.ms-empty {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin: 40px 0;
}

/* ===== レスポンシブ ===== */
@media (max-width: 600px) {

  .ms-archive-logo {
    max-width: 300px;
  }

  .ms-archive-title {
    font-size: 20px;
    margin: 56px 0 40px;
  }

  .ms-consultant-list {
    gap: 32px;
  }
}

/* =====================================================
   Mirror Station - Consultant Archive
   BRAND STYLE
   ===================================================== */

/* ===== 全体背景 ===== */
.ms-consultant-archive {
  background: linear-gradient(
    to bottom,
    #f8fbff 0%,
    #ffffff 40%,
    #f7f9fc 100%
  );
  padding: 80px 20px 120px;
}

/* ===== Header ===== */
.ms-archive-header {
  text-align: center;
  margin-bottom: 60px;
}

.ms-archive-logo {
  width: 180px;
  margin-bottom: 28px;
  opacity: .95;
}

/* ===== キャッチ ===== */
.ms-archive-catch {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  letter-spacing: .05em;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== タイトル ===== */
.ms-archive-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 70px 0 60px;
  position: relative;
}

.ms-archive-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: linear-gradient(
    to right,
    #7fa6c7,
    #d7e6f5
  );
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== 一覧グリッド ===== */
.ms-consultant-list {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* ===== 空状態 ===== */
.ms-empty {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: #777;
  margin-top: 60px;
}