/* ============================================================
   Info Key-Value Card — ikvc-*
   Card with icon + title header, key-value row list,
   and an optional CTA button.
   ============================================================ */

.ikvc-wrapper {
    width: 100%;
    box-sizing: border-box;
}

/* ── Card ─────────────────────────────────────────────────── */
.ikvc-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 36px;
    box-sizing: border-box;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

/* ── Header ───────────────────────────────────────────────── */
.ikvc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.ikvc-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--primary, #4a90d9);
    line-height: 1;
}

.ikvc-header-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}

.ikvc-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: inherit;
}

/* ── Row list ─────────────────────────────────────────────── */
.ikvc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ikvc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
}

.ikvc-list .ikvc-row:first-child {
    padding-top: 0;
}

.ikvc-list .ikvc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ikvc-key {
    font-size: 0.9rem;
    font-weight: 500;
    color: inherit;
    flex-shrink: 0;
}

.ikvc-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary, #4a90d9);
    text-align: right;
}

/* ── Button ───────────────────────────────────────────────── */
.ikvc-btn-wrap {
    margin-top: 24px;
}

.ikvc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background-color: #f5f0ea;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease,
                box-shadow 0.2s ease, transform 0.15s ease;
    line-height: 1.4;
}

.ikvc-btn:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.ikvc-btn-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}

.ikvc-btn-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
    display: block;
}