/* ─── Icon Text Widget ─── */

.c-icon-text {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

/* Icon */
.c-icon-text .c-icon-text__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    margin-right: 16px;
    margin-top: 2px;
}

.c-icon-text .c-icon-text__icon--bg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #faf8f5;
}

/* Body */
.c-icon-text .c-icon-text__body {
    min-width: 0;
}

/* Title */
.c-icon-text .c-icon-text__title {
    margin: 0 0 4px;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

/* Description */
.c-icon-text .c-icon-text__desc {
    margin: 0;
}

.c-icon-text .c-icon-text__desc p {
    margin: 0 0 4px;
}

.c-icon-text .c-icon-text__desc p:last-child {
    margin-bottom: 0;
}

/* Description Links */
.c-icon-text .c-icon-text__desc a {
    text-decoration: none;
    font-size: 1.125rem;
    line-height: 1.75rem;
    transition: color 0.2s ease;
}

.c-icon-text .c-icon-text__desc a:hover {
    text-decoration: underline;
}
