/* --- Global Container --- */
.cora-unit-container.cora-feature-card-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* --- Card Architecture --- */
.cora-card-wrap {
    display: flex;
    align-items: flex-start; /* Aligns icon with the first line of the title */
    gap: 24px; /* Space between icon box and content */
    padding: 32px;
    background: #ffffff;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Icon Box --- */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e5e7eb;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    line-height: 0;
}

.icon-box i,
.icon-box svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}

/* --- Content Block --- */
.content-box {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Vertical gap between Title and Description */
}

.card-title {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
}

.card-desc {
    margin: 0;
    line-height: 1.6;
    color: #64748b;
}