/* секція */
.leader-intro{
    background:#E6ECE6;              /* світлий фон секції */
    padding:60px 0;
    font-family:"e-ukraine", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* фото з округленням */
.leader-photo{
    max-width: 520px;
    margin: 0;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 0 0 0 rgba(0,0,0,0); /* чисто */
}
.leader-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* контейнер цитати */
.leader-quote-wrap{ position:relative;
    padding-top: 60px;}

/* «балун» з лапками над карткою */
.quote-bubble{
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    width: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.quote-bubble img{ width:100%; height:auto; display:block; }

/* картка цитати */
.quote-card{
    background:#DCE6E7;               /* блакитно-сірий як на макеті */
    border-radius:20px;
    padding:50px 35px 35px;
    margin:0 0 20px;
}
.quote-card p{
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #0A0A0A;
    font-weight: 300;
}

/* підпис під цитатою */
.leader-meta{
    width: 100%;
    margin-top:40px;
    padding-left: 35px;
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
    }
.leader-role{
    font-size:17px;
    line-height:1.4;
    font-weight: 500;
    color:#232323;
    flex: 1 1 480px;
    max-width: 100%;
    padding-right: 35px;
}
.leader-name{
    margin:0 0 12px;
    font-size:clamp(1.125rem, 1rem + .6vw, 1.5rem);
    font-weight:700;
    line-height:1.2;
    color:#000;
}

/* соцмережі */
.leader-socials{
    display:flex;
    gap:10px;
    align-items:center;
    list-style:none;
    padding:0; margin:0;
}
.leader-socials a{
    display:inline-flex;
    width:40px;
    height:40px;
    border-radius:8px;
    align-items:center; justify-content:center;
    opacity:0.6;
    transition: opacity .3s ease;
}
.leader-socials a img{ width:100%; height:100%; }
.leader-socials a:hover{
    opacity: 1; }
.leader-socials a:active{ transform:scale(.98); }

/* доступність: фокус-рамки */
.leader-socials a:focus-visible,
.leader-photo img:focus-visible,
.quote-card:focus-visible{
    outline:2px solid #5B5AFF;
    outline-offset:3px;
    border-radius:12px;
}

/* адаптація */
@media (max-width: 767.98px){
    .leader-intro{ padding:28px 0; }
    .quote-bubble{top: 22px;width:56px;/* height:56px; */}
    .quote-card{ padding:22px 18px; }
    .leader-meta{padding: 0 18px;}
    .leader-role{padding-right: 0;}
    .leader-photo{max-width: 350px;border-radius:22px;margin: 0 auto;}
}