﻿
/* Page title */
h1 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

/* Section headings */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

/* Lead paragraph style */
.home-lead {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* Lists */
.home-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-lg);
}
.home-list ul li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.home-list ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1;
}
