.hot-zone {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.4fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.profile-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.badge-green {
    background: #E8F5D9;
    color: #5C8A2F;
}

.badge {
    display: inline-block;
    padding: 0.275rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-outline {
    background: white;
    border: 1px solid #e5e7eb!important;
    color: #374151;
}

.btn {
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-yellow {
    background: #FFC107;
    color: #78350f;
    font-weight: 600;
}

.profile-avatar i {
    font-size: .8rem;
}

.profile-info h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-info p {
    font-size: 0.875rem;
    color: #6b7280;
}