﻿
/* =========================================================
   ATLAS DAM - TEAM
   ========================================================= */
.atlas-team-section {
    direction: rtl;
    position: relative;
    padding: 65px 20px;
    overflow: hidden;
    background: radial-gradient( circle at 10% 10%, rgba(173, 169, 131, .16), transparent 28% ), radial-gradient( circle at 90% 90%, rgba(173, 169, 131, .10), transparent 30% ), rgb(1, 62, 63);
}


/* Background paw */
.atlas-team-section::before {
    content: "\f1b0";
    font-family: FontAwesome;
    position: absolute;
    top: -80px;
    left: 3%;
    font-size: 280px;
    color: rgba(173, 169, 131, .045);
    transform: rotate(-18deg);
    pointer-events: none;
}


.atlas-team-section::after {
    content: "\f1b0";
    font-family: FontAwesome;
    position: absolute;
    right: 3%;
    bottom: -100px;
    font-size: 300px;
    color: rgba(255, 255, 255, .055);
    transform: rotate(20deg);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.atlas-team-container {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.atlas-team-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}


.atlas-team-title {
    display: flex;
    align-items: center;
    gap: 13px;
}


.atlas-team-title-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: #ada983;
    color: rgb(1, 62, 63);
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}


.atlas-team-title span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
}


.atlas-team-title h1 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 400;
}


    .atlas-team-title h1 strong {
        color: #ada983;
        font-weight: 800;
    }


.atlas-team-intro {
    max-width: 420px;
    color: rgba(255, 255, 255, .60);
    font-size: 11px;
    line-height: 2;
    text-align: left;
}


/* =========================================================
   TEAM GRID
   ========================================================= */

.atlas-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}


/* =========================================================
   TEAM CARD
   ========================================================= */

.atlas-team-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 9px 25px rgba(0, 0, 0, .12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}


    .atlas-team-card:hover {
        transform: translateY(-6px);
        border-color: #ada983;
        box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
    }


/* =========================================================
   IMAGE
   ========================================================= */

.atlas-team-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #eef1ed;
}


    .atlas-team-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .5s ease;
    }


.atlas-team-card:hover
.atlas-team-image img {
    transform: scale(1.05);
}


/* Image overlay */
.atlas-team-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(1, 62, 63, .35), transparent 50% );
    pointer-events: none;
}


/* =========================================================
   NUMBER
   ========================================================= */

.atlas-team-number {
    position: absolute;
    top: 10px;
    left: 12px;
    z-index: 2;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .90);
    color: rgb(1, 62, 63);
    font-size: 9px;
    font-weight: 800;
    direction: ltr;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
}


/* =========================================================
   CONTENT
   ========================================================= */

.atlas-team-content {
    position: relative;
    padding: 18px 18px 15px;
}


/* Role */
.atlas-team-role {
    display: inline-block;
    margin-bottom: 6px;
    color: #9a956f;
    font-size: 9px;
    font-weight: 700;
}


.atlas-team-content h2 {
    margin: 0 0 9px;
    color: rgb(1, 62, 63);
    font-size: 15px;
    font-weight: 800;
}


.atlas-team-content p {
    min-height: 58px;
    margin: 0 0 15px;
    color: #7c8884;
    font-size: 10px;
    line-height: 1.95;
}


/* =========================================================
   FOOTER
   ========================================================= */

.atlas-team-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #edf0ed;
}


    .atlas-team-footer span {
        color: #a1aaa6;
        font-size: 8px;
    }


        .atlas-team-footer span i {
            margin-left: 3px;
            color: #ada983;
        }


    .atlas-team-footer a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: rgb(1, 62, 63);
        font-size: 9px;
        font-weight: 700;
        text-decoration: none;
        transition: .25s ease;
    }


        .atlas-team-footer a i {
            transition: .25s ease;
        }


.atlas-team-card:hover
.atlas-team-footer a {
    color: #8d8967;
}


    .atlas-team-card:hover
    .atlas-team-footer a i {
        transform: translateX(-4px);
    }


/* =========================================================
   BOTTOM
   ========================================================= */

.atlas-team-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
}


.atlas-team-bottom-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #ada983;
    color: rgb(1, 62, 63);
    font-size: 14px;
}


.atlas-team-bottom strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 11px;
}


.atlas-team-bottom span {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .atlas-team-section {
        padding: 55px 18px;
    }

    .atlas-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .atlas-team-section {
        padding: 45px 12px;
    }


    .atlas-team-header {
        display: block;
        margin-bottom: 22px;
        padding-bottom: 15px;
    }


    .atlas-team-title {
        gap: 10px;
    }


    .atlas-team-title-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        font-size: 17px;
    }


    .atlas-team-title span {
        font-size: 8px;
    }


    .atlas-team-title h1 {
        font-size: 21px;
    }


    .atlas-team-intro {
        max-width: none;
        margin-top: 10px;
        font-size: 9px;
        text-align: right;
        line-height: 1.9;
    }


    .atlas-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }


    .atlas-team-image {
        height: 155px;
    }


    .atlas-team-content {
        padding: 13px;
    }


    .atlas-team-role {
        margin-bottom: 4px;
        font-size: 8px;
    }


    .atlas-team-content h2 {
        margin-bottom: 6px;
        font-size: 11px;
    }


    .atlas-team-content p {
        min-height: 55px;
        margin-bottom: 10px;
        font-size: 8px;
        line-height: 1.9;
    }


    .atlas-team-footer {
        padding-top: 9px;
    }


        .atlas-team-footer span {
            font-size: 7px;
        }


        .atlas-team-footer a {
            font-size: 8px;
        }


    .atlas-team-number {
        width: 24px;
        height: 24px;
        top: 8px;
        left: 8px;
        border-radius: 8px;
        font-size: 8px;
    }


    .atlas-team-bottom {
        margin-top: 10px;
        padding: 11px 12px;
        border-radius: 12px;
    }


    .atlas-team-bottom-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 9px;
        font-size: 12px;
    }


    .atlas-team-bottom strong {
        font-size: 9px;
    }


    .atlas-team-bottom span {
        font-size: 8px;
        line-height: 1.8;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .atlas-team-grid {
        gap: 7px;
    }


    .atlas-team-image {
        height: 140px;
    }


    .atlas-team-content {
        padding: 11px;
    }


        .atlas-team-content h2 {
            font-size: 10px;
        }


        .atlas-team-content p {
            font-size: 7.5px;
        }
}


