.profile-boost-banner {
    margin: 1rem 0;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
    overflow: hidden;
}

.profile-boost-banner__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
}

.profile-boost-banner__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.profile-boost-banner__profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.profile-boost-banner__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-secondary);
}

.profile-boost-banner__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-boost-banner__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.profile-boost-banner__info strong {
    font-size: 1rem;
    color: var(--text-primary);
}

.profile-boost-banner__info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-boost-banner__cta {
    align-self: flex-start;
}

@media (min-width: 640px) {
    .profile-boost-banner__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .profile-boost-banner__cta {
        align-self: center;
        margin-left: auto;
    }
}
