/* =====================================================
   Mirror Station - Career Consultant Card
   FINAL DESIGN / SOFT LIGHT / BRAND STYLE
   ===================================================== */

/* ===== Card ===== */
.ms-consultant-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px 44px;
  border: 1px solid rgba(0,0,0,.03);
  box-shadow: 0 20px 60px rgba(0,0,0,.05);
  text-align: center;
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
}

.ms-consultant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

/* ===== Photo ===== */
.ms-consultant-photo {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #f5f7fb,
    #eef3f8
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-consultant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Name ===== */
.ms-consultant-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: .05em;
  position: relative;
  padding-bottom: 14px;
}

.ms-consultant-name::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: linear-gradient(
    to right,
    #6f8fb8,
    #c5d5ea
  );
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ===== Tags ===== */
.ms-consultant-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.ms-tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .2s ease;
}

/* ===== 資格タグ ===== */

/* 共通 */
.ms-tag-grade {
  background: #e6eef9;
  color: #4a6f9d;
}

/* 技能士2級 */
.ms-tag-grade.is-grade-2 {
  background: #e8f3ff;
  color: #2563a6;
}

/* 技能士1級（最上位） */
.ms-tag-grade.is-grade-1 {
  background: #f6e8c9;
  color: #7a5a00;
  font-weight: 600;
}

/* ===== 対応対象 ===== */
.ms-tag-target {
  background: #f4f5f7;
  color: #666;
}

/* ===== Catch ===== */
.ms-consultant-catch {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 20px 0 26px;
}

/* ===== Button ===== */
.ms-consultant-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #2f9ea0,
    #278a8c
  );
  color: #fff;
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(47,158,160,.25);
}

.ms-consultant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(47,158,160,.35);
}