/* Featured block (replaces goals-block and overview-block) */
.featured-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2.5rem 3rem;
  border-left: 3px solid var(--accent);
}

.featured-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
}

.featured-block .detail {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 1.25rem;
}

.featured-block--gold { border-left-color: var(--gold); }
.featured-block--indigo { border-left-color: var(--indigo); }

/* Community block */
.community-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.community-inner {
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.community-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.community-text p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.community-footer {
  padding: 1rem 3rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Discord box */
.discord-box {
  background: var(--indigo-dim);
  border: 1px solid var(--indigo-mid);
  border-radius: 0.4rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.discord-icon {
  width: 48px;
  height: 48px;
  background: var(--indigo-dim);
  border: 1px solid var(--indigo-mid);
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.discord-icon svg { width: 26px; height: 26px; }

.discord-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}

.discord-box p {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

.discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-dim);
  border: 1px solid var(--indigo-mid);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}

/* About section */
.about-text { max-width: 680px; }

.about-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text); font-weight: 500; }

.orgs-row {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 2rem;
}

.org-pill {
  flex: 1;
  background: var(--surface);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  transition: background 0.2s;
}
.org-pill:hover { background: var(--surface2); color: var(--text-mid); }

/* Link list */
.link-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.link-item {
  background: var(--surface);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: background 0.2s;
}
.link-item:hover { background: var(--surface2); }

.link-item-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.link-item-title {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
}

.link-item-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 300;
}

.link-item-arrow {
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: 1.5rem;
  transition: color 0.2s;
}
.link-item:hover .link-item-arrow { color: var(--accent); }
