/* PMT About page — blue theme aligned with homepage */

:root {
    --pmt-about-accent: #13B5EA;
    --pmt-about-header: #003865;
    --pmt-about-navy: #0d266c;
}

/* Header (frontend-2 uses orange CTA by default) */
body.pmt-about-page .header-1.header-2 .header-main .header-right .theme-btn {
    background-color: var(--pmt-about-accent);
}

body.pmt-about-page .header-1.header-2 .header-main .header-right .theme-btn:hover {
    background-color: var(--pmt-about-header);
}

body.pmt-about-page .header-1.header-2 .header-main .header-right .text-btn:hover {
    color: var(--pmt-about-accent) !important;
}

body.pmt-about-page .header-1.header-2 .header-main .main-menu ul li a:hover,
body.pmt-about-page .header-1.header-2 .header-main .main-menu ul li:hover > a {
    color: var(--pmt-about-accent) !important;
}

body.pmt-about-page .header-1.header-2 .header-main .main-menu ul li:hover > a::after {
    color: var(--pmt-about-accent);
}

/* Breadcrumb hero — navy overlay (match home hero tone) */
.pmt-about .breadcrumb-wrapper::before {
    background: linear-gradient(
        227deg,
        rgba(0, 56, 101, 0.35) 24.35%,
        rgba(13, 38, 108, 0.82) 81.21%
    );
}

/* Feature cards */
.pmt-about .about-feature-wrapper {
    border-bottom-color: rgba(13, 38, 108, 0.1);
}

.pmt-about .about-feature-wrapper .about-feature-items .content .icon {
    color: var(--pmt-about-accent);
}

.pmt-about .about-feature-wrapper .about-feature-items.style-2 {
    border-left-color: rgba(13, 38, 108, 0.1);
}

.pmt-about .about-feature-wrapper .about-feature-items {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
}

.pmt-about .about-feature-wrapper .about-feature-items .content {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
}

.pmt-about .about-feature-wrapper .about-feature-items .thumb {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
    min-width: 280px;
    max-width: 280px;
    overflow: hidden;
    border-radius: 10px;
}

.pmt-about .about-feature-wrapper .about-feature-items .thumb img,
.pmt-about .about-feature-wrapper .about-feature-items .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

@media (max-width: 1199px) {
    .pmt-about .about-feature-wrapper .about-feature-items .thumb {
        flex: 0 0 240px;
        width: 240px;
        height: 240px;
        min-width: 240px;
        max-width: 240px;
    }
}

@media (max-width: 767px) {
    .pmt-about .about-feature-wrapper .about-feature-items {
        flex-direction: column;
    }

    .pmt-about .about-feature-wrapper .about-feature-items .thumb {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        min-width: 0;
        max-width: 100%;
        aspect-ratio: 1 / 1;
    }
}

/* Section headings */
.pmt-about .section-title.style-2 span::before {
    background-color: var(--pmt-about-accent);
}

.pmt-about .section-title.style-2 h2 {
    color: var(--pmt-about-header);
}

/* Who we are */
.pmt-about .who-we-are-wrapper .about-content h5,
.pmt-about .who-we-are-wrapper .about-content .pmt-about-profile__subtitle {
    color: var(--pmt-about-header);
}

.pmt-about .who-we-are-wrapper .about-content .pmt-about-profile__subtitle {
    margin-top: 28px;
    margin-bottom: 22px;
    font-size: clamp(16px, 1.05vw, 18px);
    font-weight: 600;
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
}

.pmt-about .who-we-are-wrapper .about-content .pmt-about-profile__text {
    font-size: clamp(15px, 1vw, 16px);
    font-weight: 400;
    line-height: 1.85;
    color: var(--text, #406a8c);
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
}

.pmt-about .who-we-are-wrapper .about-content .theme-btn,
.pmt-about .who-we-are-wrapper .about-content .theme-btn.theme-btn-2 {
    margin-top: 36px;
    background-color: var(--pmt-about-accent);
    border-color: var(--pmt-about-accent);
    color: #fff;
}

.pmt-about .who-we-are-wrapper .about-content .theme-btn::after,
.pmt-about .who-we-are-wrapper .about-content .theme-btn.theme-btn-2::after {
    background-color: var(--pmt-about-header);
}

.pmt-about .who-we-are-wrapper .about-content .theme-btn:hover,
.pmt-about .who-we-are-wrapper .about-content .theme-btn.theme-btn-2:hover {
    background-color: var(--pmt-about-header);
    border-color: var(--pmt-about-header);
    color: #fff;
}

.pmt-about-profile__row {
    align-items: stretch;
}

.pmt-about-profile__media-col {
    display: flex;
}

.pmt-about .who-we-are-wrapper .pmt-about-profile__thumb {
    flex: 1;
    display: flex;
    min-height: 100%;
    width: 100%;
}

.pmt-about .who-we-are-wrapper .pmt-about-profile__thumb img,
.pmt-about .who-we-are-wrapper .pmt-about-profile__thumb video {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

@media (min-width: 992px) {
    .pmt-about-profile__media-col {
        min-height: 100%;
    }

    .pmt-about .who-we-are-wrapper .pmt-about-profile__thumb {
        min-height: 520px;
    }
}

@media (max-width: 991px) {
    .pmt-about .who-we-are-wrapper .pmt-about-profile__thumb img,
    .pmt-about .who-we-are-wrapper .pmt-about-profile__thumb video {
        min-height: 320px;
        max-height: 420px;
        object-fit: cover;
    }
}

.pmt-about .who-we-are-wrapper .thumb .counter-box {
    background-color: var(--pmt-about-accent);
}

/* Vision section */
.pmt-about .feature-vision-section.section-bg-2 {
    background-color: var(--pmt-about-header);
}

.pmt-about .pmt-about-vision-section__title {
    margin-bottom: clamp(32px, 5vw, 56px);
}

.pmt-about .pmt-about-vision__row {
    align-items: stretch;
    --bs-gutter-x: clamp(32px, 5vw, 72px);
}

.pmt-about .pmt-about-vision__col {
    display: flex;
}

.pmt-about .pmt-about-vision__card.feature-vision-items {
    max-width: none;
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
}

.pmt-about .pmt-about-vision__card .text-header {
    padding-bottom: 24px;
    margin-bottom: 0;
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pmt-about .pmt-about-vision__card .text-header span {
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    opacity: 0.85;
}

.pmt-about .pmt-about-vision__card .text-header h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0;
}

.pmt-about .pmt-about-vision__list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.pmt-about .pmt-about-vision__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: clamp(0.9375rem, 1.1vw, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.pmt-about .pmt-about-vision__list li i {
    flex-shrink: 0;
    margin: 0.35em 0 0;
    font-size: 0.85em;
    color: var(--pmt-about-accent);
}

.pmt-about .pmt-about-vision__list li span {
    flex: 1;
    min-width: 0;
}

.pmt-about .pmt-about-vision__list li:not(:last-child) {
    margin-bottom: 18px;
}

@media (max-width: 991.98px) {
    .pmt-about .pmt-about-vision__col:not(:last-child) {
        margin-bottom: 40px;
    }
}

/* Board of Directors / Managers */
.pmt-commissioners-section {
    background: #fff;
    overflow: hidden;
}

.pmt-commissioners-section + .pmt-commissioners-section {
    padding-top: clamp(64px, 8vw, 110px);
}

.pmt-commissioners-section.pb-0 {
    padding-bottom: clamp(48px, 6vw, 80px);
}

.pmt-commissioners-section__heading {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 16px 16px;
}

.pmt-commissioners-section__label {
    display: block;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-weight: 400;
    letter-spacing: 0.14em;
    color: var(--pmt-about-header);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.pmt-commissioners-section__watermark {
    margin: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(2.75rem, 8.5vw, 6.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.16em;
    color: rgba(0, 56, 101, 0.42);
    text-transform: uppercase;
    white-space: nowrap;
}

.pmt-commissioners-board {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 12px 24px;
}

.pmt-commissioner {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex: 0 1 auto;
    transition: transform 0.35s ease, z-index 0s;
}

.pmt-commissioner + .pmt-commissioner {
    margin-left: clamp(-72px, -6vw, -36px);
}

.pmt-commissioner__figure {
    position: relative;
    display: block;
    line-height: 0;
}

.pmt-commissioner__figure img {
    display: block;
    width: auto;
    height: clamp(280px, 34vw, 430px);
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}

.pmt-commissioner__card {
    position: absolute;
    left: 12%;
    bottom: 18%;
    z-index: 2;
    min-width: 170px;
    max-width: 220px;
    padding: 14px 16px 12px;
    border-radius: 10px;
    background: var(--pmt-about-header);
    color: #fff;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.pmt-commissioner__card strong {
    display: block;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.pmt-commissioner__card .pmt-commissioner__role {
    display: block;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 0.92rem;
    line-height: 1.3;
    white-space: pre-line;
}

.pmt-commissioner__line {
    display: block;
    width: 42px;
    height: 2px;
    background: var(--pmt-about-accent);
    margin-bottom: 8px;
}

.pmt-commissioner:hover,
.pmt-commissioner:focus-visible {
    z-index: 10;
    transform: translateY(-10px);
}

.pmt-commissioner:hover .pmt-commissioner__figure img,
.pmt-commissioner:focus-visible .pmt-commissioner__figure img {
    transform: scale(1.04);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.16));
}

.pmt-commissioner:hover .pmt-commissioner__card,
.pmt-commissioner:focus-visible .pmt-commissioner__card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pmt-commissioner-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.pmt-commissioner-modal[hidden] {
    display: none;
}

.pmt-commissioner-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
}

.pmt-commissioner-modal__dialog {
    position: relative;
    width: min(920px, 100%);
    background: var(--pmt-about-header);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    overflow: visible;
}

.pmt-commissioner-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 3;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.pmt-commissioner-modal__layout {
    display: grid;
    grid-template-columns: minmax(220px, 34%) 1fr;
    gap: 0;
    min-height: 360px;
}

.pmt-commissioner-modal__photo-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 0 0 12px;
}

.pmt-commissioner-modal__photo-wrap img {
    width: auto;
    max-width: 115%;
    height: auto;
    max-height: 430px;
    object-fit: contain;
    transform: translateX(-18%);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
}

.pmt-commissioner-modal__body {
    padding: 34px 34px 34px 10px;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
}

.pmt-commissioner-modal__body h3 {
    margin: 0 0 6px;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 700;
}

.pmt-commissioner-modal__role {
    margin: 0;
    font-size: 1.05rem;
}

.pmt-commissioner-modal__divider {
    margin: 18px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.pmt-commissioner-modal__section + .pmt-commissioner-modal__section {
    margin-top: 16px;
}

.pmt-commissioner-modal__section h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
}

.pmt-commissioner-modal__section p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    text-align: left;
}

.pmt-commissioner-modal__positions {
    margin: 0;
    padding-left: 1.1rem;
}

.pmt-commissioner-modal__positions li {
    margin-bottom: 6px;
    line-height: 1.45;
}

body.pmt-commissioner-modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .pmt-commissioners-board {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 0;
        padding-bottom: 12px;
    }

    .pmt-commissioner + .pmt-commissioner {
        margin-left: clamp(-42px, -5vw, -20px);
    }

    .pmt-commissioner__figure img {
        height: clamp(220px, 42vw, 320px);
    }

    .pmt-commissioner-modal__layout {
        grid-template-columns: 1fr;
    }

    .pmt-commissioner-modal__photo-wrap {
        padding: 20px 20px 0;
    }

    .pmt-commissioner-modal__photo-wrap img {
        transform: none;
        max-height: 280px;
    }

    .pmt-commissioner-modal__body {
        padding: 20px 24px 28px;
    }
}

@media (max-width: 767px) {
    .pmt-commissioners-board {
        flex-direction: column;
        align-items: center;
    }

    .pmt-commissioner + .pmt-commissioner {
        margin-left: 0;
        margin-top: -28px;
    }

    .pmt-commissioner__card {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Why choose us */
.pmt-about .choose-us-section-2 {
    border-top-color: rgba(13, 38, 108, 0.1);
}

.pmt-about .choose-us-wrapper-2 .choose-us-content .icon-items .icon {
    color: var(--pmt-about-accent);
}

.pmt-about .choose-us-wrapper-2 .choose-us-content .icon-items .content h4 {
    color: var(--pmt-about-header);
}

/* Paragraph text alignment — same as home */
.pmt-about p {
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
}

.pmt-about .counter-box p,
.pmt-about .team-content p,
.pmt-about .pmt-commissioner-modal__section p,
.pmt-about .breadcrumb-wrapper .page-heading h1,
.pmt-about .breadcrumb-wrapper .page-heading span {
    text-align: inherit;
}
