.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: var(--content-max-width);
    margin-inline: auto;
    padding-inline: var(--space-xl);
    gap: var(--layout-gap);
}

.section--full {
    min-height: clamp(28rem, 100svh, 50rem);
    display: flex;
}

.section--full > .wrapper {
    width: 100%;
}

.section-title {
    text-align: center;
    font-family: var(--font-title);
    font-size: calc(var(--text-h2) * 0.8);
    font-weight: 300;
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-heading);
    font-size: calc(var(--text-h2) * 1.5);
    text-transform: lowercase;
}

.section-subtitle::first-letter {
    text-transform: uppercase;
}

hgroup {
    margin-bottom: var(--space-3xl);
}

hgroup::after {
    content: "";
    display: block;
    width: 16rem;
    height: 2px;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-xl);
    margin-inline: auto;
    background: var(--theme-color-orange);
}

[class*="list"] {
    gap: var(--space-3xl);
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.item-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    color: var(--theme-color-orange);
}