/* 공지사항 검색 바 — [site/bbs-notice.html] 전용, 브랜드 토큰 정렬 */

.notice-search-bar {
  margin: 1.25rem auto 1.5rem;
  max-width: 720px;
  padding: 0 12px;
}

.notice-search-inner {
  border: 1px solid #e2e6ec;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(38, 43, 53, 0.06);
  overflow: hidden;
}

.notice-search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

@media (min-width: 576px) {
  .notice-search-form {
    flex-wrap: nowrap;
  }
}

.notice-search-select-wrap {
  flex: 0 0 auto;
  border-bottom: 1px solid #e2e6ec;
}

@media (min-width: 576px) {
  .notice-search-select-wrap {
    border-bottom: none;
    border-right: 1px solid #e2e6ec;
  }
}

.notice-search-select {
  height: 100%;
  min-height: 46px;
  padding: 0 14px;
  margin: 0;
  border: none;
  background: #fafbfc;
  color: #262b35;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  min-width: 118px;
}

.notice-search-select:focus {
  outline: none;
  background: #f4f6f9;
}

.notice-search-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.notice-search-input {
  width: 100%;
  box-sizing: border-box;
  min-height: 46px;
  padding: 10px 14px;
  border: none;
  font-size: 14px;
  color: #262b35;
  background: #fff;
}

.notice-search-input::placeholder {
  color: #9aa3b2;
}

.notice-search-input:focus {
  outline: none;
}

.notice-search-submit {
  flex: 0 0 auto;
  min-width: 88px;
  min-height: 46px;
  padding: 0 20px;
  border: none;
  background: #ffaf00;
  color: #262b35;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, filter 0.15s ease;
}

.notice-search-submit:hover {
  filter: brightness(1.05);
}

.notice-search-submit:active {
  filter: brightness(0.97);
}

.notice-search-meta {
  margin: 10px 0 0;
  padding: 0 4px;
  font-size: 13px;
  color: #5c6370;
  text-align: center;
}

.notice-search-meta strong {
  color: #262b35;
  font-weight: 700;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
