.profile-content {
    display: flex;
    gap: 32px;
}

.profile-social-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-img {
    height: 480px;
    border-radius: 32px;
    object-fit: contain;
}

.profile-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-social-link>a {
    font-size: 15px;
}

.profile-social-link>a:hover {
    color: var(--blue);
}

.profile-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.profile-button-primary {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    border-radius: 4px;
    padding: 8px 12px;
    border: 1px solid rgba(var(--button-border-color-rgb), 15%);
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 10%), var(--primary-color) 600%);
    width: fit-content;
    text-decoration: none;
}

html.dark .profile-button-primary>img {
    content: url("/src/assets/icons/arrow-top-right-dark.svg");
}

html[lang="ar"] .profile-button-primary>img {
    rotate: 270deg;
}

html.dark #github-img {
    content: url("/src/assets/socials/github-dark.svg");
}

html.dark #linkedin-img {
    content: url("/src/assets/socials/linkedin-dark.svg");
}

html.dark #calendly-img {
    content: url("/src/assets/socials/calendly-dark.svg");
}

html.dark #mail-img {
    content: url("/src/assets/socials/mail-dark.svg");
}


@media screen and (max-width: 768px) {
    .profile-content {
        display: flex;
        /* flex-direction: column; */
        gap: 16px;
    }

    .profile-img {
        height: 228px;
        border-radius: 12px;
    }

    .profile-social-link>a {
        font-size: 12px;
    }

    .profile-button-primary {
        font-size: 14px;
        padding: 4px 6px;
    }

    .profile-social-link>img {
        width: 20px;
    }

    .profile-button-primary>img {
        width: 24px;
    }

}

@media screen and (max-width: 448px) {
    .profile-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .profile-social-link>a {
        font-size: 10px;
    }

    .profile-button-primary {
        margin-top: 12px;
    }

}