/* ── Page complete / explore ── */

.page-note {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #f0fdfa, #eff6ff);
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: 16px;
  padding: .9rem 1.1rem;
  margin-bottom: 1.15rem;
  color: #134e4a;
  line-height: 1.85;
}
.page-note p { margin: 0; }
.page-note .ico-tile { margin-top: .15rem; }

.explore-band {
  padding: 2.2rem 0 2.4rem;
  margin-top: 1.5rem;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(13,148,136,.08), transparent 46%),
    linear-gradient(180deg, #f8fafc, #f4f7fb);
  border-top: 1px solid var(--line);
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.explore-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .9rem 1rem 1rem;
  min-height: 0;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.explore-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #99f6e4;
}
.explore-card .chip { align-self: flex-start; }
.explore-card strong { font-size: .98rem; }
.explore-card > span:last-child {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.channel-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  min-height: 132px;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.channel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #99f6e4;
}
.channel-card strong { font-size: .98rem; }
.channel-card p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.7; }

.event-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: .9rem;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .85rem .95rem;
  margin-bottom: .7rem;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #fde68a;
}
.event-date {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffbeb, #fef3c7);
  border: 1px solid #fde68a;
  color: #92400e;
  padding: .45rem .3rem;
}
.event-date strong { display: block; font-size: 1.25rem; line-height: 1.1; }
.event-date span { font-size: .72rem; font-weight: 700; }
.event-card h3 { margin: .2rem 0 .25rem; font-size: 1.02rem; }
.event-card p { margin: .2rem 0 0; }

.auth-benefits {
  display: grid;
  gap: .4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.auth-benefits li {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
  color: #334155;
  font-size: .88rem;
  line-height: 1.65;
}
.auth-benefits .ico { color: var(--brand); margin-top: .2rem; }

.nf-wrap {
  min-height: calc(100vh - var(--nav-h) - 220px);
  display: grid;
  place-items: center;
  padding: 2rem 0 3rem;
}
.nf-card {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}
.nf-mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f766e, #1d4ed8);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 14px 32px rgba(15, 118, 110, .28);
}
.nf-card h1 { margin: 0 0 .4rem; font-size: 1.6rem; }
.nf-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin-top: 1.2rem;
  text-align: right;
}

.support-how {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.support-how article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem .95rem;
}
.support-how h3 { margin: .35rem 0 .25rem; font-size: .95rem; }
.support-how p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }

.person-card-link { color: inherit; }
.person-card-link:hover { border-color: #99f6e4; }

@media (max-width: 960px) {
  .explore-grid,
  .channel-grid,
  .support-how { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .explore-grid,
  .channel-grid,
  .support-how,
  .nf-links { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 64px 1fr; }
  .explore-card { min-height: 0; }
}

/* ── Icon lock: never let sprite/SVG blow the layout ── */
.rr-sprite,
svg.rr-sprite {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
svg.ico,
.ico,
svg.ico use,
.ico use {
  width: 14px !important;
  height: 14px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: inline-block !important;
  overflow: hidden !important;
  flex: 0 0 14px !important;
  vertical-align: -2px;
}
.ico-tile {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  overflow: hidden !important;
  flex: 0 0 26px !important;
  align-self: flex-start;
}
.ico-tile .ico,
.ico-tile svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 0 !important;
  min-height: 0 !important;
}
.card-body,
.feat-card,
.explore-card,
.channel-card,
.how-step,
.stat-item,
.quick-card,
.page-note,
.btn,
.list-row {
  min-width: 0;
}
h1 svg, h2 svg, h3 svg, h4 svg,
.page-kicker svg,
.section-head svg,
.svc-h .ico-tile,
.btn .ico,
.hero-actions .ico,
.explore-card .ico-tile,
.page-note .ico-tile,
.faq-item summary svg,
.panel-head svg,
.chip .ico,
.links-feat-head h2 .ico {
  display: none !important;
}

/* نمونه تشکل‌های خانه — مستقل از .card/.feat-card تا overflow خط را نبرد */
.featured-assoc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.featured-assoc {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 1.55rem 1.45rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
  overflow: visible;
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.featured-assoc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #99f6e4;
}
.featured-assoc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .85rem;
}
.featured-assoc h3 {
  margin: 0 0 .85rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 2;
  overflow: visible;
  color: var(--ink);
}
.featured-assoc p {
  margin: 0 0 auto;
  color: var(--muted);
  font-size: .95rem;
  line-height: 2.05;
  overflow: visible;
}
.featured-assoc-foot {
  display: block;
  margin-top: 1.15rem;
  padding-top: .35rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.9;
}
@media (max-width: 960px) {
  .featured-assoc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .featured-assoc-grid { grid-template-columns: 1fr; }
  .featured-assoc { min-height: 0; }
}
