.focus-list-wrapper {
    font-family: inherit;
}

.focus-list-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.focus-list-step {
    background-color: #3b7b9b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.focus-list-title {
    margin: 0;
    color: #1a3c5a;
    font-size: 24px;
    font-weight: 800;
}

.focus-list-desc {
    color: #637788;
    font-size: 16px;
    margin-bottom: 25px;
}

/* List container */
.focus-list-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Each list row: icon + text, icon aligned to the first line of title */
.focus-list-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.6;
}

/* Icon — sits on the same baseline as the title text */
.focus-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Use line-height 0 so the icon itself sets the height, not the line box */
    line-height: 0;
    color: #3b7b9b;
    font-size: 14px;
    /* Shift up slightly to optically align with cap-height of text */
    position: relative;
    top: -0.05em;
}

.focus-list-icon svg {
    width: 14px;
    height: 14px;
    fill: #3b7b9b;
    display: block;
}

/* Placeholder keeps spacing consistent when no icon is chosen */
.focus-list-icon-placeholder {
    display: none;
}

/* Text wrapper — inline mode: title and content flow on one line */
.focus-list-item-text {
    display: inline;
}

.focus-list-item-text .focus-list-item-title,
.focus-list-item-text .focus-list-item-content {
    display: inline;
}

.focus-list-item-text .focus-list-item-title + .focus-list-item-content::before {
    content: ' ';
}

/* Block mode: description drops to a new line, aligned with title */
.focus-list-item-text--block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.focus-list-item-text--block .focus-list-item-title,
.focus-list-item-text--block .focus-list-item-content {
    display: block;
}

/* Typography defaults */
.focus-list-item-title {
    font-weight: bold;
    color: #1a3c5a;
}

.focus-list-item-content {
    color: #3a4a5a;
}
