/* ── Board of Directors ──────────────────────────────────────────────────── */

.bod-section {
    padding: 20px 16px;
    background: #fff;
   /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 0;
}

.bod-container {
    max-width: 760px;
    margin: 0 auto;
}

/* ── Section header ──────────────────────────────────────────────────────── */
.bod-header {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 28px; */
    /* padding-bottom: 14px; */
    /* border-bottom: 2px solid #e5e5e5; */
}

.bod-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.bod-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* ── Featured member card ────────────────────────────────────────────────── */
.bod-featured {
    display: grid;
    grid-template-areas:
        "img connect"
        "footer footer";
    grid-template-columns: 240px 1fr;
    border: 1px solid #000;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff;
	padding:12px;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06); */
}

.bod-featured-img-wrap {
    grid-area: img;
}

.bod-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 260px;
}

.bod-featured-connect {
    grid-area: connect;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.bod-connect-label {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    text-align: center;
    line-height: 24px;
}

.bod-connect-name {
    font-size: 22px;
    font-weight: 700;
    color: #e07540;
    line-height: 1.3;
}

.bod-qr {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 4px;
    border-radius: 4px;
}

.bod-featured-footer {
    grid-area: footer;
    padding: 16px 0;
    padding-top: 5px;
    /* border-top: 1px solid #efefef;
    background: #fafafa; */
}

/* ── Name row (featured) ─────────────────────────────────────────────────── */
.bod-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.bod-name {
    font-size: 28px;
    font-weight: 700;
    color: #00a959;
}

.bod-desig {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding-top: 10px;
}

.bod-follow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10%;
    white-space: nowrap;
}

.bod-follow svg {
    width: 24px;
    height: 24px;
}

.bod-follow:hover {
    color: #e07540;
}

/* ── Bio text ────────────────────────────────────────────────────────────── */
.bod-bio p{
    font-size: 13px;
    color: #333;
    line-height: 1.65;
    /* white-space: pre-wrap; */
    word-break: break-word;
    /* display: contents; */
	text-align: justify;
}
.bod-toggle-btn{
    display: contents;
}
.bod-readmore,
.bod-toggle-btn {
    color: #00a959;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    display: inline;
}

.bod-readmore:hover,
.bod-toggle-btn:hover {
    text-decoration: underline;
}
.bod-seprator {
    background: #f2f2f2;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    margin: 10px 0;
    font-weight: 600;
    color: #00a959;
    border-radius: 0.3rem;width: 100%;
    height: 42px;
    background: #f2f2f2;
}
/* ── Regular member row ──────────────────────────────────────────────────── */
.bod-member {
    padding-top: 0;
    border-bottom: 1px solid #eeeeee;
}

.bod-member:last-child {
    border-bottom: none;
}

.bod-member-inline {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-top: 20px;
}

.bod-member-img-wrap {
    flex-shrink: 0;
}

.bod-member-img {
    width: 160px;
    height: 184px;
    object-fit: cover;
    object-position: top;
    display: block;
    /* border: 1px solid #e0e0e0; */
}

.bod-member-info {
    flex: 1;
}

.bod-member-name {
    font-size: 24px;
    margin: 0 0 16px;
    color: #1a1a1a;
}

/* ── Additional bio (full-width below inline row) ────────────────────────── */
.bod-additional-bio {
    font-size: 14px;
    color: #333;
    line-height: 1.65;
    margin-top: 0;
}

.bod-additional-bio p {
    margin: 0;
}
.bod-section.bod-remove-seprator .bod-seprator {
    display: none;
}

img.bod-member-photo {
    object-fit: contain;
    width: 168px;
    height: 172px;
}
/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .bod-featured {
        grid-template-areas:
            "img"
            "connect"
            "footer";
        grid-template-columns: 1fr;
    }

    .bod-featured-img {
        min-height: 220px;
    }

    .bod-follow {
        margin-left: 0;
    }
    .bod-member-inline{
        flex-direction: column;
		align-items:center;
    }
    .bod-featured-footer {
        padding: 5px 0 16px 0;
    }
}