
.guides-page {
    width: 100%;
    max-width: var(--max-width-narrow);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.guides-page__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.guides-index {
    width: 100%;
    max-width: var(--max-width-narrow);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
  }

  .guides-index__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .guides-index__item:first-child {
    border-top: 1px solid var(--color-border);
  }

  .guides-index__title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, var(--text-lg));
    font-weight: var(--weight-bold);
    color: var(--color-secondary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-decoration: none;
  }

  .guides-index__title:hover {
    color: var(--color-accent);
  }

  .guides-index__description {
    font-family: var(--font-secondary);
    font-size: var(--text-md);
    color: var(--color-text-muted);
    line-height: 1.6;
  }

  .guides-index__empty {
    font-family: var(--font-secondary);
    font-size: var(--text-md);
    color: var(--color-text-muted);
  }