/* ===========================
AZM LEADERSHIP CARD
=========================== */

.azm-leadership-card {
    padding: 30px 0;
}

.azm-leadership-wrapper {
    background: #ffffff;
    position: relative;
}

.azm-leadership-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

.azm-leadership-card__image {
    flex-shrink: 0;
    width: 226px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
        background: var(--common-gredient);
}

.azm-leadership-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.azm-leadership-card__content {
    flex: 1;
}

.azm-leadership-card__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.azm-leadership-card__name {
    margin: 0;
    color: #2C2E3B;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.azm-leadership-card__designation {
    margin: 4px 0 0;
    color: #6C6C64;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    /* text-transform: capitalize; */
}

.azm-leadership-card__linkedin {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.azm-leadership-card__linkedin:hover {
    transform: translateY(-2px);
}

.azm-leadership-card__description p {
    margin: 0;
    color: rgba(117, 117, 117, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.azm-leadership-card__description p+p {
    margin-top: 18px;
}

/* ===========================
BOARD DIRECTORSHIPS TABLE
=========================== */

.azm-board-directorships {
    margin-top: 40px;
}

.azm-board-directorships__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.azm-board-directorships__table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    border: 1px solid #000;
    font-size: 14px;
    line-height: 1.4;
}

.azm-board-directorships__table th,
.azm-board-directorships__table td {
    border: 1px solid #000;
    padding: 10px 12px;
    vertical-align: top;
    text-align: left;
}

.azm-board-directorships__table thead th {
    background: #1f3f7a;
    color: #fff;
    font-weight: 600;
}

.azm-board-directorships__table tbody tr:nth-child(even) {
    background: #f7f7f7;
}

.azm-board-directorships__table tbody tr:nth-child(odd) {
    background: #fff;
}

.azm-board-directorships__table td:first-child {
    width: 70px;
    text-align: center;
    white-space: nowrap;
}

/* ===========================
MOBILE
=========================== */

@media (min-width: 1900px) {

    .azm-leadership-card__name {
        font-size: 18px;
    }

    .azm-leadership-card__description p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {

    .azm-leadership-card {
        flex-direction: column;
        gap: 20px;
    }

    .azm-leadership-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 226 / 250;
        margin: 0 auto;
        border-radius: 22px;
    }

    .azm-leadership-card__header {
        gap: 15px;
        margin-bottom: 18px;
        justify-content: space-between;
    }

    .azm-leadership-card__name {
        font-size: 20px;
    }

    .azm-leadership-card__designation {
        font-size: 14px;
    }

    .azm-leadership-card__linkedin {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .azm-leadership-card__description p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .azm-leadership-card__name {
        font-size: 18px;
    }
}

/* ===========================
BREADCRUMBS OVERRIDES FOR PROFILE PAGE (WHITE BACKGROUND)
=========================== */
.azm-leadership-wrapper {
    padding-top: 10px;
}

.site-breadcrumb {
    margin-bottom: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #6C6C64;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #666667;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666667;
}