/* ========================= */
/* Base container            */
/* ========================= */

.ns-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* ========================= */
/* Hero                      */
/* ========================= */

.ns-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ns-logo {
  font-size: 2.2rem;
  letter-spacing: 0.4em;
  font-weight: 600;
}

.ns-tagline {
  margin-top: 0.4rem;
  color: #555;
}

.ns-hero-actions {
  margin-top: 1.4rem;
}

.ns-action-label {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

/* ========================= */
/* Grid layout               */
/* ========================= */

.ns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ns-col {
  min-width: 0;
}

/* ========================= */
/* Box content               */
/* ========================= */

.ns-box-content {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================= */
/* NEW badge                 */
/* ========================= */

.ns-new {
  color: #7a2ea8;
  font-size: 0.75em;
  vertical-align: super;
}

/* ========================= */
/* Activity blocks           */
/* ========================= */

.ns-activity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.ns-activity {
  font-size: 0.85rem;
  line-height: 1.4;
}

.ns-activity-section {
  margin-bottom: 0.8rem;
}

.ns-activity-label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #333;
}

.ns-activity ul {
  margin: 0;
  padding-left: 1.1em;
}

.ns-activity li {
  margin: 0.15rem 0;
}

.ns-activity-footer {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #555;
}

/* ========================= */
/* Collapsible               */
/* ========================= */

.ns-collapsible {
  margin-top: 1.8rem;
}

.ns-collapsible-title {
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0;
}

/* ========================= */
/* Responsive                */
/* ========================= */

@media (max-width: 768px) {
  .ns-grid {
    grid-template-columns: 1fr;
  }

  .ns-activity-grid {
    grid-template-columns: 1fr;
  }
}