/* ==========================================
   EXECUTIVE HERO
========================================== */

.executive-hero{
    display:grid;
    grid-template-columns:280px 1fr;
    gap:60px;
    align-items:center;
    max-width:1150px;
    margin:80px auto;
}

.executive-photo img{
    width:280px;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    display:block;
}

.executive-name{
    font-size:56px;
    font-weight:800;
    line-height:1.08;
    letter-spacing:-0.03em;
    margin:0 0 18px;
    color:#111827;
}

.executive-position{
    font-size:26px;
    font-weight:700;
    line-height:1.4;
    color:#111827;
    margin-bottom:10px;
}

.executive-company{margin:0 0 18px;}

.executive-company a{
    font-size:19px;
    font-weight:600;
    color:#1d4ed8;
    text-decoration:none;
}

.executive-company a:hover{text-decoration:underline;}

.executive-occupation{
    font-size:18px;
    color:#6b7280;
    margin-bottom:20px;
}

.executive-summary{
    max-width:720px;
    font-size:18px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:28px;
}

/* ==========================================
   SOCIAL LINKS
========================================== */

.executive-social{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.executive-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border:1px solid #e5e7eb;
    border-radius:999px;
    background:#fff;
    color:#111827;
    font-weight:600;
    text-decoration:none;
    transition:.25s ease;
}

.executive-social a:hover{
    background:#111827;
    color:#fff;
    border-color:#111827;
}

/* ==========================================
   BIOGRAPHY
========================================== */

.executive-biography{
    max-width:900px;
    margin:100px auto;
}

.section-title{
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:28px;
}

.executive-biography-content{
    max-width:760px;
    font-size:20px;
    line-height:1.95;
    color:#374151;
}

.executive-biography-content p{
    margin-bottom:1.6em;
}

/* ==========================================
   COMPANY SECTION
========================================== */


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:768px){

    .claraus-executive{
        padding:40px 0;
    }

    .claraus-container{
        padding-left:24px;
        padding-right:24px;
    }

    .executive-hero{
        grid-template-columns:1fr;
        gap:32px;
        text-align:center;
    }

    .executive-photo{
        display:flex;
        justify-content:center;
    }

    .executive-photo img{
        width:180px;
        height:180px;
    }

    .executive-name{
        font-size:36px;
    }

    .executive-summary{
        max-width:100%;
        margin:0 auto 28px;
    }

    .executive-social{
        justify-content:center;
    }

    .section-title{
        font-size:30px;
    }

}
