.ml-office-interviews-section {
    --content-width: 1500px;
    color: #171717;
}

.ml-office-interviews-section > .e-con-inner {
    display: grid !important;
    width: min(1500px, calc(100% - 72px)) !important;
    max-width: min(1500px, calc(100% - 72px)) !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 16px;
    align-items: start;
}

.ml-office-bearers-column,
.ml-interviews-column {
    width: 100% !important;
}

.ml-office-bearers-column {
    display: grid;
    gap: 26px;
}

.ml-ew {
    --ml-ew-accent: #a56f22;
    --ml-ew-border: #d6d6d6;
    --ml-ew-text-muted: #555;
    box-sizing: border-box;
    font-family: inherit;
}

.ml-ew *,
.ml-ew *::before,
.ml-ew *::after {
    box-sizing: border-box;
}

.ml-ew-heading {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 16px;
    padding: 0;
    background: transparent !important;
    color: #1e293b !important;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    text-align: left;
    text-transform: none;
}

.ml-ew-heading::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-left: 12px;
    background: #f06292;
    border-radius: 999px;
}

.ml-bearer-timeline {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
}

.ml-bearer-timeline::after {
    display: none;
}

.ml-bearer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.ml-bearer-card {
    position: relative;
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    min-height: 282px;
    padding: 20px 14px 0;
    color: inherit;
    text-align: center;
    text-decoration: none;
    background: #fff;
    border: 1px dotted var(--ml-ew-border);
    flex-direction: column;
    align-items: center;
}

.ml-bearer-card::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid var(--ml-ew-accent);
    border-radius: 50%;
    transform: translateX(-50%);
}

.ml-bearer-card:hover,
.ml-interview-card:hover {
    color: inherit;
    text-decoration: none;
}

.ml-bearer-photo {
    position: relative;
    width: 106px;
    height: 106px;
    margin: 4px auto 24px;
    overflow: hidden;
    background: #f4f1ec;
    border: 4px solid var(--ml-ew-accent);
    transform: rotate(45deg);
}

.ml-bearer-photo span {
    position: absolute;
    inset: -22%;
    display: block;
    transform: rotate(-45deg);
}

.ml-bearer-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.ml-bearer-name {
    width: 100%;
    margin: 0 0 10px;
    color: #171717;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

.ml-bearer-details {
    width: 100%;
    margin: 0 0 16px;
    color: #555;
    font-size: 13px;
    line-height: 1.45;
}

.ml-bearer-details p,
.ml-bearer-details ul {
    margin: 0;
}

.ml-bearer-details ul {
    display: inline-block;
    padding-left: 18px;
    text-align: left;
}

.ml-bearer-designation {
    position: relative;
    z-index: 1;
    display: inline-flex;
    max-width: 100%;
    min-height: 34px;
    margin-top: auto;
    padding: 8px 14px;
    color: #fff;
    background: var(--ml-ew-accent);
    border: 1px solid var(--ml-ew-accent);
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateY(50%);
}

.ml-interviews-sidebar {
    position: sticky;
    top: 90px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.055);
}

.ml-interviews-sidebar .ml-ew-heading {
    text-align: left;
    margin: 0 0 16px;
    font-size: 18px;
    color: #1e293b !important;
}

.ml-interviews-sidebar .ml-ew-heading::after {
    content: none;
    display: none;
}

.ml-interview-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.ml-interview-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ml-interview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.ml-interview-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8fafc;
    border: none;
    border-radius: 0;
}

.ml-interview-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ml-interview-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 12px;
}

.ml-interview-name {
    margin: 0;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: none;
}

.ml-interview-position,
.ml-interview-organization {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

.ml-interview-position {
    color: #f06292;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .ml-office-interviews-section > .e-con-inner {
        width: min(100% - 40px, 1500px) !important;
        max-width: min(100% - 40px, 1500px) !important;
        grid-template-columns: 1fr;
    }

    .ml-interviews-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .ml-office-interviews-section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .ml-office-interviews-section > .e-con-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 22px;
        box-sizing: border-box;
    }

    .ml-office-bearers-column,
    .ml-interviews-column,
    .ml-bar-bearers-group,
    .ml-bearer-timeline {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: visible;
    }

    .ml-bearer-timeline {
        padding: 0;
    }

    .ml-bearer-cards {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .ml-bearer-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: none;
        scroll-snap-align: none;
    }

    .ml-bearer-name,
    .ml-bearer-details,
    .ml-bearer-designation {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .ml-interviews-sidebar {
        width: 100%;
        max-width: 100%;
        position: static;
    }

    .ml-interview-card {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .ml-interview-photo {
        width: 74px;
        height: 74px;
    }
}

@media (max-width: 480px) {
    .ml-ew-heading {
        padding: 11px 14px;
        font-size: 16px;
    }

    .ml-interview-card {
        grid-template-columns: 1fr;
    }

    .ml-interview-photo {
        width: 100%;
        height: 180px;
    }
}

.ml-news-insights {
    --ml-news-accent: #f06292;
    --ml-news-border: #e2e8f0;
    --ml-news-radius: 16px;
    --ml-news-gap: 16px;
    --ml-news-image-height: 190px;
    --ml-news-container-max: 1500px;
    padding: 34px 0 56px;
    background: #ffffff;
    color: #334155;
    overflow-x: hidden;
}

.ml-news-insights-inner {
    width: min(var(--ml-news-container-max), calc(100% - 72px));
    max-width: min(var(--ml-news-container-max), calc(100% - 72px));
    margin: 0 auto;
}

.ml-news-heading-wrap {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 16px;
}

.ml-news-heading {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    color: #1e293b;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
}

.ml-news-heading::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin-left: 12px;
    background: var(--ml-news-accent);
    border-radius: 999px;
}

.ml-news-grid {
    display: grid;
    grid-template-columns: repeat(var(--ml-news-columns-desktop, 4), minmax(0, 1fr));
    gap: var(--ml-news-gap);
    align-items: stretch;
}

.ml-news-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--ml-news-border);
    border-radius: var(--ml-news-radius);
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.055);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ml-news-card:hover,
.ml-news-card:focus-within {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.ml-news-link {
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    flex-direction: column;
}

.ml-news-link:hover,
.ml-news-link:focus {
    color: inherit;
    text-decoration: none;
}

.ml-news-link:hover .ml-news-title,
.ml-news-link:focus .ml-news-title {
    color: var(--ml-news-accent);
}

.ml-news-image {
    display: flex;
    width: 100%;
    height: var(--ml-news-image-height);
    overflow: hidden;
    background: #f1f5f9;
    color: #1e293b;
    align-items: center;
    justify-content: center;
}

.ml-news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.25s ease;
}

.ml-news-card:hover .ml-news-image img,
.ml-news-card:focus-within .ml-news-image img {
    transform: scale(1.03);
}

.ml-news-image-placeholder {
    display: inline-flex;
    width: 76px;
    height: 76px;
    color: var(--ml-news-accent);
    background: rgba(240, 98, 146, 0.09);
    border: 1px solid rgba(240, 98, 146, 0.18);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.ml-news-content {
    display: flex;
    min-width: 0;
    padding: 14px;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
}

.ml-news-date {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.ml-news-title {
    margin: 0;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.28;
    font-weight: 700;
    transition: color 0.2s ease;
}

.ml-news-excerpt {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ml-news-empty {
    margin: 0;
    padding: 18px;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    font-size: 14px;
    text-align: center;
}

.ml-news-tagline {
    max-width: min(1120px, 100%);
    margin: clamp(34px, 4vw, 52px) auto 0;
    text-align: center;
}

.ml-news-tagline h2 {
    margin: 0;
    color: #1e293b;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.ml-news-tagline p {
    margin: 18px 0 0;
    color: #0f172a;
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0;
}

@media (max-width: 1024px) {
    .ml-news-insights {
        padding: 30px 0 48px;
    }

    .ml-news-insights-inner {
        width: min(var(--ml-news-container-max), calc(100% - 40px));
        max-width: min(var(--ml-news-container-max), calc(100% - 40px));
    }

    .ml-news-grid {
        grid-template-columns: repeat(var(--ml-news-columns-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ml-news-insights {
        padding: 26px 0 42px;
    }

    .ml-news-insights-inner {
        width: min(var(--ml-news-container-max), calc(100% - 24px));
        max-width: min(var(--ml-news-container-max), calc(100% - 24px));
    }

    .ml-news-heading {
        font-size: 22px;
    }

    .ml-news-grid {
        grid-template-columns: repeat(var(--ml-news-columns-mobile, 1), minmax(0, 1fr));
    }

    .ml-news-image {
        height: min(var(--ml-news-image-height), 240px);
    }

    .ml-news-tagline h2 {
        font-size: 30px;
    }

    .ml-news-tagline p {
        font-size: 16px;
    }
}
