/*  ----------------------------------------- Profile Page CSS ----------------------------------------------------- */

.profile-section {
    background: #fff;
    margin-top: 50px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.profile-title {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(90deg, #9647f7, #e957b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.profile-subtitles p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.2rem;
}

.profile-description {
    font-size: 1rem;
    line-height: 1.6;
}

.profile-extra {
    font-size: 1rem;
    line-height: 1.7;
    padding-top: 20px;
    border-top: none;
}

.profile-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.position-relative {
    display: inline-block;
}

.followers-box {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
}

.followers-box p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #9647f7, #e957b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .profile-title {
        font-size: 2rem;
    }

    .profile-subtitles p {
        font-size: 1.1rem;
    }

    .profile-description,
    .profile-extra {
        font-size: 0.95rem;
    }

    .profile-img {
        max-width: 280px;
        margin-top: 1.5rem;
    }
}