@import url('../../components/online-appointment.css');
@import url('./our-staff.css');
@import url('./our-staff-detail-responsive.css');

/**
 * CONTENTS
 *
 * OUR STAFF DETAIL
 *   General
 *   Staff Articles
*/

/*------------------------------------*\
  # OUR STAFF DETAIL
\*------------------------------------*/

/* ---------General--------- */

    .our-staff-content {
        width: 100%;
        display: flex;
        align-items: flex-start;
        padding-bottom: 100px;
        flex-direction: column;
        text-align: right;
        max-width: 38%;
    }
    .our-staff-content-text-wrapper {
        width: 100%;
        padding-left: 40px;
    }
    .our-staff-content-header-items {
        display: flex;
        width: 100%;
        justify-content: space-around;
    }
    .our-staff-content-text-items-line {
        position: absolute;
        left: 0;
        top: 38px;
        width: 100%;
        height: 1px;
        background-color: var(--border-gray);
    }
    .our-staff-content-text-items-line-color {
        position: absolute;
        left: 0;
        top: 0;
        width: 33%;
        height: 2px;
        background-color: var(--turquoise);
        transition: left 0.3s;
    }
    .our-staff-content-text-header {
        color: var(--text-brown);
        font-size: 17px;
        letter-spacing: 1px;
        text-align: center;
        cursor: pointer;
        font-family: "Roboto Slab";
    }
    .our-staff-content-text-header:hover {
        color: #606060d5;
    }
    .our-staff-content-text {
        padding-top: 60px;
        left: 0;
    }
    .staff-item-box-social{
        bottom: 10px !important;
        top: unset !important;
    }

/* ---------Staff Articles--------- */

    .staff-articles {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        width: 100%;
        margin: 0 auto;
        column-gap: 100px;
        row-gap: 50px;
    }
    .staff-article:not(:hover) .staff-article-image img {
        transform: scale(1);
        transition: transform 0.4s;
    }
    .staff-article:hover .staff-article-image img {
        transform: scale(1.1);
        transition: transform 0.4s;
    }
    .staff-article-image-wrapper {
        overflow: hidden;
        border-radius: 30px;
        position: relative;
    }
    .staff-article-image-icon {
        position: absolute;
        top: 0;
        right: 0;
        width: 70px;
        height: 80px;
        padding: 15px;
        background-color: #1bb6b9ab;
        margin: 20px;
        display: flex;
        align-items: center;
    }
    .staff-article-image {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
    }
    .staff-article-text h3 {
        font-family: "Roboto Slab";
        font-size: 17px;
        font-weight: 400;
        line-height: 25px;
        color: var(--turquoise);
        padding-top: 20px;
    }
    .staff-article-text p {
        font-family: Latinka-Regular;
        font-size: 17px;
        font-weight: 400;
        line-height: 25px;
        color: #4d4d4d;
        padding-top: 10px;
    }

/*------------------------------------*\
  ## END OUR STAFF DETAIL
\*------------------------------------*/