/* ===== A Note From Our Chairman ===== */
.chairman {
    position: relative;   /* sit above the overview band's decorative hoops */
    z-index: 1;
    width: 100%;
    background: #FFFFFF;
    padding: 20px 0 60px;
    display: flex;
    justify-content: center;
}

.chairman__inner {
    width: 1380px;
    max-width: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Header */
.chairman__head {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.chairman__bar {
    flex: none;
    width: 6px;
    align-self: stretch;
    min-height: 72px;
    border-radius: 3px;
    background: linear-gradient(180deg, #CF8E00 0%, #064700 100%);
}

.chairman__title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 72px;
    text-transform: uppercase;
    color: #363636;
}

/* Card (Frame 222) */
.chairman__card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 46px;
    padding: 36px 31px 39px 35px;
    border: 1px solid rgba(18, 38, 27, 0.07);
    border-radius: 30px;
}

.chairman__img {
    flex: none;
    width: 436px;
    align-self: stretch;
    min-height: 551px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.chairman__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.chairman__text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.chairman__desc {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    text-align: justify;
    color: #363636;
}

.chairman__name {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 27px;
    line-height: 40px;
    color: #363636;
}

.chairman__role {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #363636;
}

/* Socials pinned to the bottom-right of the card */
.chairman__socials {
    margin-top: auto;
    padding-top: 32px;
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.chairman__social {
    display: inline-flex;
    line-height: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.chairman__social:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.chairman__social svg,
.chairman__social img { display: block; width: 30px; height: 30px; object-fit: contain; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .chairman__title { font-size: 38px; line-height: 56px; }
    .chairman__desc { font-size: 20px; line-height: 31px; }
    .chairman__name { font-size: 24px; line-height: 34px; }
    .chairman__role { font-size: 20px; line-height: 30px; }
    .chairman__img { width: 360px; min-height: 460px; }
}

@media (max-width: 820px) {
    .chairman__card {
        flex-direction: column;
        gap: 26px;
        padding: 24px;
    }
    .chairman__img { width: 100%; min-height: 0; aspect-ratio: 436 / 480; }
    .chairman__socials { align-self: flex-start; padding-top: 22px; }
}

@media (max-width: 480px) {
    .chairman { padding: 24px 0 50px; }
    .chairman__title { font-size: 26px; line-height: 38px; }
    .chairman__desc { font-size: 16px; line-height: 25px; text-align: left; }
    .chairman__name { font-size: 20px; }
    .chairman__role { font-size: 17px; }
}
