.profile-swiper {
    width: 80%;
    margin: auto;
    height: 250px;
    margin-top: 30px;
}

/* Allow shadows to "bleed" out of the sides */
.swiper-vertical>.swiper-wrapper {
    flex-direction: column;
}

.profile-card {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h3 {
    margin: 0;
    font-size: 24px;
    color: #2A2A37;
    font-family: 'Figtree', sans-serif;
}

.profile-info p {
    font-family: 'Figtree', sans-serif;
    margin: 0;
    font-size: 16px;
    color: #2A2A37;
}

.brand-logo {
    max-width: 116px;
    height: auto;
}

@media (max-width: 1024px) {
    .profile-swiper {
        width: 100%;
        margin-top: 0px;
    }
    .profile-info p {
        font-size: 14px;
    }
    .profile-info h3 {
        font-size: 18px;
    }
    .profile-card {
        padding: 0;
    }
}

@media (max-width: 768px) {}