.home {
    display: flex;
    flex-direction: column;
    gap: var(--theme-space-6);
    width: 100%;
    color: var(--theme-text-primary);
}

.home-section {
    background: var(--theme-surface-raised);
    border: 1px solid var(--theme-border-subtle);
    border-radius: var(--theme-radius-lg);
    box-shadow: var(--theme-shadow-sm);
    overflow: hidden;
}

.home-section-header {
    padding: var(--theme-space-4) var(--theme-space-5);
    border-bottom: 1px solid var(--theme-border-subtle);
}

.home-section-title {
    display: flex;
    align-items: center;
    gap: var(--theme-space-3);
    margin: 0;
    font-size: var(--theme-font-md);
    font-weight: var(--theme-font-weight-semibold);
    letter-spacing: 0.01em;
    color: var(--theme-text-primary);
}

/* Accent tick — a small primary-colored bar that anchors each section title. */
.home-section-title::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 18px;
    border-radius: var(--theme-radius-full);
    background: var(--theme-color-primary);
}

.home-section-body {
    padding: var(--theme-space-5);
    min-height: 80px;
}
