/* ══ Telegram Ai — Patch fixes ══ */

/* Brand header */
.brand {
    gap: 12px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    padding: 7px;
    box-shadow: 0 2px 8px rgba(34, 158, 217, 0.22);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.brand-name {
    font-size: 16px;
    font-weight: 800;
    color: #1c1e21;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: #229ED9;
    background: #e8f5fc;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.01em;
}

/* FIX: Force Inter font everywhere */

*,
*::before,
*::after {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* FIX: Lock trading dashboard so nothing jumps */

#step-3 .feed-section {
    min-height: 210px;
    max-height: 210px;
    overflow: hidden;
}

#step-3 .feed-list {
    min-height: 160px;
    max-height: 160px;
    overflow: hidden;
}

#step-3 .custom-chart-wrapper {
    height: 160px;
    min-height: 160px;
    max-height: 160px;
}

#step-3 .stats-row {
    min-height: 58px;
}

#step-3 .live-balance-wrapper {
    min-height: 80px;
}

/* FIX: Strategy card — remove blue filled circle, clean up */

.strategy-card input:checked~.strategy-content .strategy-icon-box {
    background: #e7f3ff;
}

.strategy-card input:checked~.strategy-content .strategy-icon-box .strategy-icon {
    filter: none;
}