:root {
  --bg: #f8f9f7;
  --surface: #ffffff;
  --border: #e3e6e1;
  --text: #1f2a24;
  --muted: #5f6f66;
  --radius: 16px;
  --maxw: 1200px;
  --gap: 18px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 18px 64px;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.breadcrumbs span {
  margin: 0 6px;
  opacity: 0.6;
}

h1 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
}
.page-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 95ch;
  font-size: 15px;
}

.section {
  margin-top: 28px;
}
h2 {
  margin: 0 0 6px;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.02em;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 100ch;
  font-size: 14px;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
  margin-top: 14px;
}
.card {
  grid-column: span 4;
}
@media (max-width: 1024px) {
  .card {
    grid-column: span 6;
  }
}
@media (max-width: 640px) {
  .card {
    grid-column: span 12;
  }
}

.card a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}
.card-image {
  height: 180px;
  background: #eaece8;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 14px 16px 18px;
}
.card-title {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card-subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.dojo-faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111827;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: #374151;
}

/* Custom arrow for the Dojo aesthetic */
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  font-weight: 400;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding-top: 12px;
  line-height: 1.6;
  color: #6b7280;
  font-size: 0.95rem;
}

.faq-answer strong {
  color: #111827; /* Highlights the "Answer-First" part */
}

.dojo-footer {
  width: 100%;
  padding: 40px 20px;
  margin-top: 60px;
  border-top: 1px solid #333;
  text-align: center;
  color: #888;
  font-family: 'Inter', sans-serif;
}

.footer-content p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-subtext {
  font-size: 0.75rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}
