/* ── Wrapper ─────────────────────────────────────────────────────── */
.vt-wrapper {
    width: 100%;
    font-family: inherit;
    box-sizing: border-box;
}

/* ── Tab buttons ─────────────────────────────────────────────────── */
.vt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.vt-tab {
    padding: 9px 20px;
    border: 1px solid #cccccc;
    background: #f5f5f5;
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    line-height: 1.4;
}

.vt-tab:hover { background: #e8e8e8; }

.vt-tab.active {
    background: #1F4E79;
    color: #ffffff;
    border-color: #1F4E79;
}

/* ── Panels ──────────────────────────────────────────────────────── */
.vt-panel { display: none; }
.vt-panel.active { display: block; }

/* ── Cards grid ──────────────────────────────────────────────────── */
.vt-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ── Card base ───────────────────────────────────────────────────── */
.vt-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    background: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.vt-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ── Icon — top position (default) ──────────────────────────────── */
.vt-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

/* SVG inherits color from parent — helpful if SVGs use currentColor */
.vt-card-icon svg {
    width: 100%;
    height: 100%;
}

/* ── Icon — left position ────────────────────────────────────────── */
.vt-card--icon-left {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
}

.vt-card--icon-left .vt-card-icon {
    margin-bottom: 0;
    margin-top: 2px;
}

.vt-card--icon-left .vt-card-body {
    flex: 1;
    min-width: 0;
}

/* ── Card body ───────────────────────────────────────────────────── */
.vt-card-body { flex: 1; }

.vt-card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ── Field rows ──────────────────────────────────────────────────── */
.vt-card-field {
    margin: 0 0 7px 0;
    font-size: 13px;
    line-height: 1.6;
}

.vt-card-label {
    font-weight: 600;
    color: #1F4E79;
    margin-right: 4px;
    white-space: nowrap;
}

.vt-card-text { color: #555555; }

/* ── Page note ───────────────────────────────────────────────────── */
.vt-card-note {
    font-size: 12px;
    color: #777777;
    font-style: italic;
    margin: 10px 0 0 0;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .vt-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .vt-tabs { gap: 6px; }
    .vt-tab  { padding: 7px 14px; font-size: 13px; }
    .vt-cards { grid-template-columns: 1fr; }
}
