.dm-profile-info {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.dm-profile-image {
    height: 90px;
    width: 90px;
    margin: 0 auto 15px;
    display: block;
    border-radius: 50%;
    overflow: hidden;
}

.dm-profile-image img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.dm-profile-name {
    margin-bottom: 5px;
}

.dm-profile-name h3 {
    font-size: 34px;
    margin-bottom: 0;
    font-weight: 700;
    margin-top: 0;
}

@media(max-width: 767px) {
    .dm-profile-name h3 {
        font-size: 27px;
    }
}

.dm-profile-name p {
    font-size: 18px;
    margin: 0;
}


.dm-profile__info, .dm-profile__socials {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dm-profile__info {
    margin-bottom: 30px;
}

.dm-profile__socials {
    display: flex;
    justify-content: center;
    align-items: center;
}


.dm-profile__socials li a {
    display: flex;
    height: 56px;
    width: 56px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}



.dm-profile__socials li a:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, rgba(30, 28, 50, 0.50) 0%, rgba(43, 22, 29, 0.55) 100%);
    transform-origin: 50% 50% 0;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: -1;
    border-radius: 12px;
}

.dm-profile__socials li a svg {
    width: 24px !important;
}

.dm-external-link-wrapper svg path {
    stroke: #fff;
}

.dm-profile__socials li a:hover:before {
    opacity: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.dm-external-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

}

.dm-external-link__image {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dm-external-link__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0 !important;
}

@media(max-width: 767px) {
    .dm-external-link__title {
        font-size: 16px;
    }
}

.dm-external-link__image img {
    border-radius: 30px !important;
    height: 20px !important;
    width: 20px !important;
    object-fit: cover;
}

.dm-external-link {
    padding: 15px 20px;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    display: block;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, .05);
}

.dm-external-link:hover {
    border-color: transparent;
}

.dm-external-link:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(90deg, rgba(30, 28, 50, 0.50) 0%, rgba(43, 22, 29, 0.55) 100%);
    transform-origin: 50% 50% 0;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: -1;
}


.dm-external-link:hover:before {
    border-radius: 12px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
}

.dm-external-link i {
    transform: rotate(-45deg);
}
