/**
 * 通知・オンボーディング・投稿テンプレ
 */

/* --- オンボーディング --- */
.gs-onboarding {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: linear-gradient(180deg, #e8f4fd 0%, #f0f7fc 100%);
  border-bottom: 1px solid rgba(29, 155, 240, 0.25);
  box-shadow: 0 4px 16px rgba(15, 20, 25, 0.06);
}

.gs-onboarding__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.gs-onboarding__step {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gs-accent, #0f766e);
  white-space: nowrap;
}

.gs-onboarding__body {
  flex: 1 1 14rem;
  min-width: 0;
}

.gs-onboarding__title {
  display: block;
  font-size: 0.95rem;
  color: var(--gs-ink, #0f1419);
}

.gs-onboarding__text {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  color: var(--gs-ink-muted, #536471);
  line-height: 1.45;
}

.gs-onboarding__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gs-onboarding__skip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gs-ink-muted, #536471);
  text-decoration: none;
}

.gs-onboarding__skip:hover {
  color: var(--gs-accent, #0f766e);
}

/* --- 通知フィルタ --- */
.gs-notif-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  margin: 0 0 0.5rem;
}

.gs-notif-filters__item {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--gs-line, rgba(15, 20, 25, 0.08));
  background: #fff;
  color: var(--gs-ink-muted, #536471);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.gs-notif-filters__item.is-active,
.gs-notif-filters__item:hover {
  background: var(--gs-accent-soft, rgba(29, 155, 240, 0.12));
  color: var(--gs-accent, #0f766e);
  border-color: rgba(29, 155, 240, 0.3);
}

.gs-nav-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--g-ink-muted, #536471);
  text-decoration: none;
}

.gs-nav-bell:hover,
.gs-nav-bell.is-active {
  background: var(--g-accent-soft, rgba(29, 155, 240, 0.12));
  color: var(--g-accent, #0f766e);
}

.gs-nav-bell__badge,
.gs-mobile-tabbar__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: #f4212e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.1rem;
  text-align: center;
}

.gs-mobile-tabbar__item {
  position: relative;
}

/* --- 投稿テンプレ --- */
.gs-post-templates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem 0.25rem;
}

.gs-post-templates__label {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gs-ink-muted, #536471);
}

.gs-post-templates__chip {
  appearance: none;
  border: 1px solid rgba(29, 155, 240, 0.28);
  background: var(--gs-accent-soft, rgba(29, 155, 240, 0.12));
  color: var(--gs-accent-hover, #0d9488);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.gs-post-templates__chip:hover {
  background: rgba(29, 155, 240, 0.2);
}

.gs-post-templates__clear {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--gs-ink-muted, #536471);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  margin-left: auto;
}

@media (max-width: 640px) {
  .gs-onboarding__inner {
    align-items: flex-start;
  }
}
