/* =====================================================
   Search Modal
===================================================== */

.search-modal {
  position: fixed;      /* ← これが無いとモーダルにならない */
  inset: 0;
  z-index: 1000;
}

.search-modal.hidden {
  display: none;
}

/* 背景の暗幕 */
.search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* 中央の箱 */
.search-modal__content {
  position: relative;
  max-width: 420px;
  margin: 15vh auto;
  padding: 1.5rem;

  background: #141414;
  color: #e0e0e0;

  border-radius: 6px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* 見出し */
.search-modal__content h2 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

/* =====================================================
   検索結果リスト（ul > li > a）
===================================================== */

.search-modal__body {
  font-size: 0.95rem;
}

.search-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-result-list li {
  margin-bottom: 0.4rem;
}

/* タイトル＝リンク */
.search-result-list a {
  display: block;
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  color: #ffffff;
}

.search-result-list a:hover, .search-result-list a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

/* =====================================================
   フッター
===================================================== */

.search-modal__actions {
  margin-top: 1.25rem;
  text-align: right;
}

/* =====================================================
   スマホ対応
===================================================== */

@media (max-width: 480px) {
  .search-modal__content {
    margin: 10vh 1rem;
  }
}
