/* =================================
   イベントページ - MS一覧と同じデザイン
================================= */

/* イベント専用セクションタイトルマージン調整 */
.event-section .section-title {
  margin-top: 40px;
  text-align: left;
}

/* イベントページ専用 - location-labelのwidth調整 */
.post-type-archive-event .location-label,
.post-type-archive-event .venue-label {
  width: 140px;
}

/* MS一覧と同じsearch-gridスタイルを適用 */
.seminar-section .search-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* レスポンシブ: モバイルでは縦並び */
@media (max-width: 768px) {
  .seminar-section .search-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .seminar-section .search-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* リセットボタンスタイル */
.reset-button {
  display: inline-block;
  padding: 16px 32px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid var(--edo-ai, #4a90e2);
  background: var(--bg-primary, #fff);
  color: var(--edo-ai, #4a90e2);
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 16px;
}

.reset-button:hover {
  background: var(--edo-ai, #4a90e2);
  color: var(--bg-primary, #fff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

/* モバイル版リセットボタン */
@media (max-width: 768px) {
  .seminar-section .reset-button {
    display: inline-block;
    margin-left: 0 !important;
    margin-top: 16px;
    padding: 16px 32px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid var(--edo-ai, #4a90e2);
    background: var(--bg-primary, #fff);
    color: var(--edo-ai, #4a90e2);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }

  .seminar-section .reset-button:hover {
    background: var(--edo-ai, #4a90e2);
    color: var(--bg-primary, #fff);
  }
}