.seeker-profile-panel {
  position: relative;
  grid-template-columns: 108px minmax(0, 1fr);
  padding-top: 16px;
}

.seeker-profile-panel__menu-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  z-index: 3;
}

.seeker-profile-panel__menu-btn span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #111;
  display: block;
}

.seeker-profile-panel__menu-btn:hover,
.seeker-profile-panel__menu-btn[aria-expanded="true"] {
  background: rgba(17, 17, 17, 0.08);
}

.seeker-profile-panel__menu {
  position: absolute;
  top: 50px;
  right: 12px;
  min-width: 190px;
  display: grid;
  gap: 0;
  border: 1px solid #d8e2ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(21, 42, 68, 0.16);
  overflow: hidden;
  z-index: 4;
}

.seeker-profile-panel__menu[hidden] {
  display: none !important;
}

.seeker-profile-panel__menu-item {
  width: 100%;
  border: none;
  border-top: 1px solid #edf2f7;
  background: #fff;
  color: #18324b;
  text-align: left;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.seeker-profile-panel__menu-item:first-child {
  border-top: none;
}

.seeker-profile-panel__menu-item:hover {
  background: #f6f9fc;
}

.seeker-profile-panel__menu-item--link {
  display: block;
}

.seeker-profile-panel__menu-item--danger {
  color: #c9352a;
}

.mypage-hero-card--simple {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  padding: 14px 14px 12px;
}

.mypage-hero-card--simple .mypage-hero-card__header-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.mypage-hero-card--simple .mypage-hero-card__header-left {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mypage-hero-card--simple .mypage-hero-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.mypage-hero-card--simple .mypage-hero-card__line--switch {
  margin-left: 0;
  width: fit-content;
}

.mypage-hero-card--simple .mypage-hero-card__right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.mypage-hero-card--simple .mypage-hero-card__cv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.mypage-hero-card--simple .mypage-hero-card__cv-icon svg {
  width: 66px;
  height: 66px;
}

.mypage-hero-card--simple .mypage-hero-card__bottom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 0;
}

.mypage-hero-card--simple .mypage-hero-card__progress-row {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.mypage-hero-card--simple .mypage-hero-card__progress {
  display: grid;
  gap: 5px;
  width: min(220px, 100%);
}

.mypage-hero-card--simple .mypage-hero-card__progress > span {
  font-size: 12px;
  line-height: 1.25;
  color: #546a82;
}

.mypage-hero-card--simple .mypage-hero-card__progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #edf1f6;
  overflow: hidden;
}

.mypage-hero-card--simple .mypage-hero-card__progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.mypage-hero-card--simple .mypage-hero-card__actions-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.mypage-hero-card--simple .mypage-hero-card__actions {
  display: inline-flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}

.mypage-hero-card--simple .mypage-hero-card__line,
.mypage-hero-card--simple .mypage-hero-card__pdf-btn {
  min-height: 28px;
  border: 1px solid #3b82f6;
  border-radius: 10px;
  background: transparent;
  color: #3b82f6;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  white-space: nowrap;
}

.mypage-hero-card--simple .mypage-hero-card__line--edit {
  min-width: 92px;
  border: none;
  background: #3b82f6;
  color: #fff;
}

.mypage-hero-card--simple .mypage-hero-card__pdf-btn {
  min-width: 78px;
  padding: 0 10px;
}

@media (max-width: 640px) {
  .seeker-profile-panel {
    padding-top: 18px;
  }

  .seeker-profile-panel__menu {
    top: 46px;
    right: 10px;
    min-width: 172px;
  }

  .mypage-hero-card--simple {
    gap: 10px;
    padding: 12px;
  }

  .mypage-hero-card--simple .mypage-hero-card__header-row,
  .mypage-hero-card--simple .mypage-hero-card__bottom-row {
    gap: 10px;
  }

  .mypage-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .mypage-kpi-item {
    min-height: 86px !important;
    padding: 12px 6px !important;
    border-radius: 12px !important;
  }

  .mypage-kpi-item b {
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  .mypage-kpi-item span {
    font-size: 16px !important;
    line-height: 1 !important;
  }

}
