/* Shared Investment Plan cards — homepage + user shop */

.gx-plans {
    position: relative;
    z-index: 8;
    padding: 8px 18px 24px;
}

.gx-plans__head {
    text-align: center;
    margin-bottom: 12px;
}

.gx-plans__head h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #100c28;
    letter-spacing: -0.02em;
}

.gx-plan-grid {
    display: grid;
    gap: 16px;
}

.gx-plan {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(42, 14, 92, 0.12);
    text-align: left;
    font: inherit;
    color: inherit;
}

.gx-plan__scene {
    position: relative;
    height: 168px;
    background: #f3eefc;
    overflow: hidden;
}

.gx-plan__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.gx-plan__badge {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 4;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #100c28;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 8px 16px rgba(30, 10, 69, 0.12);
}

.gx-plan__body {
    padding: 14px 16px 16px;
}

.gx-plan__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(30, 10, 69, 0.06);
    font-size: 0.9rem;
}

.gx-plan__row:last-of-type { border-bottom: 0; }

.gx-plan__row span {
    color: #5a5678;
    font-weight: 600;
}

.gx-plan__row strong {
    color: #100c28;
    font-weight: 800;
}

.gx-plan__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: inherit;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, #5b4cdb, #7b5cff);
    box-shadow: 0 10px 20px rgba(91, 76, 219, 0.3);
    -webkit-appearance: none;
    appearance: none;
}

.gx-plan__link:active {
    transform: scale(0.98);
}

.gx-empty {
    padding: 24px;
    text-align: center;
    color: #5a5678;
    background: #fff;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(42, 14, 92, 0.08);
}
