/* Staff Item - Type III */


.dt-sc-staff-item.type3 {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    align-items: start;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details {
    padding: 0px;
    text-align: left;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details>div:empty {
    display: none;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details>div:not(:last-child) {
    margin: 0 0 20px;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details>.dt-sc-content-sub-title+.dt-sc-content-title {
    margin-top: -14px;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-email-container,
.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-phone-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: var(--wdtLineHeight_Ext);
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .staff-opt-title {
    margin: 0;
    font-weight: var(--wdtFontWeight_H6);
    font-size: var(--wdtFontSize_Ext);
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-content-container .staff-opt-title { margin-bottom: 8px; }

.dt-sc-staff-item.type3 .dt-sc-staff-details .staff-opt-value {
    margin: 0px;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details div.dt-sc-staff-special-container,
.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-social-container {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
}

.dt-sc-staff-item.type3 .dt-sc-staff-details div.dt-sc-staff-special-container {
    margin: -5px;
    margin-bottom: 15px;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-special-container>.staff-opt-title,
.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-special-container>.staff-opt-value {
    padding: 5px;
    margin: 0px;
}


.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-social-container {
    margin: -5px;
    align-items: center;
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-social-container>.staff-opt-title,
.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-social-container>.social-media {
    padding: 5px;
    margin: 0px;
    display: inline-flex; 
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-team-social {
    margin: 0px -5px;
    padding: 0px;
    display: inline-flex;
}

.dt-sc-staff-item.type3 .dt-sc-staff-image,
.dt-sc-staff-item.type3 .dt-sc-staff-image .dt-sc-image-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}

.dt-sc-staff-item.type3 .dt-sc-staff-image .dt-sc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: var(--wdt_Booking_TertiaryColor);
    border-radius: var(--wdtRadius_3X);
    -webkit-border-radius: var(--wdtRadius_3X);
}

.dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-special-container>.staff-opt-value {
    margin-top: -1px;
}

.dt-sc-staff-item.type3 .dt-sc-team-social li a {
    width: 28px;
    height: 28px;
    border-radius: var(--wdt_Booking_Radius_Full);
    border: 1px solid var(--wdt_Booking_PrimaryColor);
    color: var(--wdt_Booking_PrimaryColor);
    font-size: 14px;
    background-color: transparent;
    transition: var(--wdt_Booking_BaseTransition);
    -webkit-transition: var(--wdt_Booking_BaseTransition);
}

.dt-sc-staff-item.type3 .dt-sc-team-social li a:hover {
    background-color: var(--wdt_Booking_PrimaryColor);
    color: var(--wdt_Booking_AccentTxtColor);
}

.dt-sc-staff-item .dt-sc-team-social li a.wdt-icon-ext-x-icon::before {
    font-family: "wdt-ext-icon";
}

/* AT Media Rules - Responsive */

/* @media (max-width:1024px) {
    .dt-sc-staff-item.type3 .dt-sc-staff-details .dt-sc-staff-special-container>.staff-opt-value {
        margin-top: 0px;
    }
} */

@media (max-width:767px) {
    .dt-sc-staff-item.type3 {
        grid-template-columns: auto;
        gap: 30px;
    }
}