/* ── Reset: undo Divi/browser defaults on all children ─────────────────── */
.rh-grid,
.rh-grid * {
    box-sizing: border-box;
}

.rh-grid p,
.rh-grid ul,
.rh-grid li {
    margin: 0 !important;
    padding: 0 !important;
}

.rh-grid ul {
    list-style: none !important;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.rh-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.rh-card {
    flex: 1 0 0;
    min-width: 0;
    background: #ede4d6;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ── Title ───────────────────────────────────────────────────────────────── */
.rh-card__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.32px;
    color: #504d49;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Item list ───────────────────────────────────────────────────────────── */
.rh-list {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Timeline vertical dashed connector (Highlights column) ─────────────── */
.rh-list--timeline {
    position: relative;
}

.rh-list--timeline::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 22px;
    bottom: 22px;
    border-left: 1.5px dashed rgba(80, 77, 73, 0.35);
    pointer-events: none;
    z-index: 0;
}

/* ── Individual item ─────────────────────────────────────────────────────── */
.rh-item {
    display: flex !important;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Icon wrapper ────────────────────────────────────────────────────────── */
.rh-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: block;
    line-height: 0;
}

.rh-icon svg {
    width: 44px;
    height: 44px;
    display: block;
}

/* ── Item text ───────────────────────────────────────────────────────────── */
.rh-text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #504d49;
    flex: 1;
    min-width: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .rh-grid {
        flex-direction: column;
        gap: 24px;
    }

    .rh-card {
        width: 100%;
    }
}
