/* cert-selector.css - 자격증 선택 pill 토글 */

/* 자격증 pill 토글 — access-tabs(회색 fill)와 구분하기 위해 outline 스타일 사용 */
.cert-selector {
  display: flex;
  width: fit-content;
  margin: 0 auto 16px;
  background: #fff;
  border: 1.5px solid #e4e7ec;
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.cert-button {
  padding: 7px 22px;
  border: none;
  background: transparent;
  color: #aaa;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: -0.2px;
  -webkit-tap-highlight-color: transparent;
}

.cert-button.active {
  background: var(--cert-primary, #1D2F4E);
  color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
}

.cert-button:hover:not(.active) {
  color: var(--cert-primary, #1D2F4E);
  background: #f5f7fa;
}

.cert-button:active {
  opacity: 0.85;
}

/* 모바일 (480px 이하): 전체 너비 */
@media (max-width: 480px) {
  .cert-selector {
    width: calc(100% - 32px);
    border-radius: 12px;
  }

  .cert-button {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 9px 10px;
    min-height: 42px;
  }
}