
/* ==========================================
   EXPLORE TEMPLATE
========================================== */

.explore__section {
  margin-bottom: 40px;
}

.explore__heading {
  font-size: 18px;
  margin-bottom: 12px;
}

.explore__list {
  padding-left: 18px;
}

.explore__list li {
  margin-bottom: 6px;
}

/* 🎨 CSS For Cards (Add to main.css or layout__structure.css) */

/* ==========================================
   explore layout
========================================== */

.explore__section {
  margin-top: 32px;
}

.explore__section h2 {
  margin-bottom: 16px;
}

.explore__card_grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.explore__card {
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.explore__card h3 {
  margin-top: 0;
}

.explore__card a {
  text-decoration: none;
  font-weight: 500;
}


/* Link-style cards */
.explore__card--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.explore__card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}


/* ==========================================
   Collapsible Card (details)
========================================== */

/* Remove default marker */
.explore__card_summary::-webkit-details-marker {
  display: none;
}

.explore__card_summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Match existing card spacing */
.explore__card--collapsible {
  padding: 0;
}

.explore__card_summary {

  padding: 16px;
  font-weight: 600;
  font-weight: 700;
  font-size: 1.2rem;
}

.explore__card_content {
  padding: 0 16px 16px 16px;
  color: #555;
  font-size: 0.95rem;
}

/* Indicator */
.explore__card_indicator::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 700;
}

/* When open, show minus */
.explore__card--collapsible[open] .explore__card_indicator::after {
  content: "−";
}
