.sec_team_mb {
    background: linear-gradient(135deg, #16a34a, #14532d);
    padding: 120px 0;
}

.sec_team3 {
    padding: 60px 0;
}

/* Subtitle */
.team-section .subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #2e7d32;
    /* leaf color */
}

.team-section .subtitle .line {
    width: 40px;
    height: 1px;
    background-color: #2e7d32;
}

/* Title */
.team-section .title {
    margin-top: 20px;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
}

.team-section .highlight {
    font-style: italic;
    color: #fff;
}

/* Description */
.team-section .description {
    margin-top: 20px;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

/* Actions */
.team-section .actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* Button */
.team-section .btn-primary {
    padding: 12px 24px;
    border-radius: 999px;
    background-color: #2e7d32;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.team-section .btn-primary:hover {
    background-color: #256628;
}

/* Link */
.team-section .link {
    font-size: 14px;
    color: black;
    text-decoration: none;
}

.team-section .link:hover {
    text-decoration: underline;
}

/* css etam images */
.image-wrapper {
    position: relative;
}

.image-wrapper .glow {
    position: absolute;
    inset: -20px;
    background: rgba(34, 197, 94, 0.3);
    filter: blur(50px);
    border-radius: 40px;
    z-index: -1;
}

.image-wrapper img {
    width: 100%;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper .badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: fit-content;
}

.image-wrapper .badge .number {
    font-size: 28px;
    font-weight: bold;
    color: #16a34a;
}

.image-wrapper.badge .text {
    font-size: 11px;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 1px;
}

/* css section team quản lý */

.team-section-ql {
    padding: 60px 0;
}

.team-section-ql .header {
    max-width: 600px;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.team-section-ql .sub {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    color: #22c55e;
}

.team-section-ql .sub span {
    width: 40px;
    height: 1px;
    background: #22c 55e;
}

.team-section-ql .header h2 {
    margin-top: 0px;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
    color: #118c46;
}

/* grid */
.team-section-ql .grid {
    display: grid;
    gap: 25px;
    place-items: center;
    grid-template-columns: 307px 307px;
    justify-content: center;
}

/* item */
.team-section-ql .item {
    position: relative;
    margin-bottom: 0 !important;
    background-color: #118c46;
    padding: 15px;
    border-radius: 10px;
}

/* image */
.team-section-ql .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
}

/* image zoom */
.team-section-ql .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-section-ql .item:hover img {
    transform: scale(1.05);
}

/* overlay gradient */
.team-section-ql .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(31, 61, 43, 0.7),
            rgba(31, 61, 43, 0.1),
            transparent);
    opacity: 0;
    transition: opacity .5s ease;
}

.team-section-ql .item:hover .overlay {
    opacity: 1;
}

/* social overlay */
.team-section-ql .social {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;

    opacity: 0;
    transform: translateY(12px);
    transition: all .5s ease;
}

.team-section-ql .item:hover .social {
    opacity: 1;
    transform: translateY(0);
}

/* social btn */
.team-section-ql .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: .3s;
}

.team-section-ql .social a:hover {
    background: #22c 55e;
}

.team-section-ql .social svg {
    width: 16px;
    height: 16px;
    stroke: #1f3d2b;
    fill: none;
    stroke-width: 2;
}

.team-section-ql .social a:hover svg {
    stroke: #fff;
}

/* caption */
.team-section-ql figcaption {
    margin-top: 10px;
}

.team-section-ql figcaption h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.team-section-ql figcaption p {
    margin-top: 0px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 0;
}

/* bottom social */
.team-section-ql .bottom-social {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.team-section-ql .bottom-social a {
    transition: .3s;
}

.team-section-ql .bottom-social svg {
    width: 16px;
    height: 16px;
    stroke: #6b7280;
    fill: none;
    stroke-width: 2;
}

.team-section-ql .bottom-social a:hover svg {
    stroke: #22c 55e;
}

/* responsive */
@media(max-width:768px) {
    .team-section-ql .grid {
        grid-template-columns: 1fr;
    }

    .team-section-ql .header h2 {
        font-size: 32px;
    }
}

/* team sub */
.sec_team3 {
    background-color: hsl(60 20% 92% / .4);
    padding: 60px 0 !important;
}

.sec_mnhjsa {
    padding: 60px 0 !important;
}

/* HEADER */
.team-sub .sub-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.team-sub .team_shop.small .item {
    background-color: #bf048d;
}

/* Khi chỉ có đúng 3 item */
.team-sub .team_shop.small:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    max-width: calc((100% / 4) * 3);
    margin: 0 auto;
}

/* LEFT */
.team-sub .sub-header .left {
    max-width: 600px;
}

/* SUB TITLE */
.team-sub .sub {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    color: #22c55e;
}

.team-sub .sub span {
    width: 40px;
    height: 1px;
    background: #22c55e;
}

.team-sub .sub-header .left h2 {
    color: #bf048d;
}

/* TITLE */
.team-sub .sub-header h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    color: #2b76a4;
}

/* DESCRIPTION */
.team-sub .sub-header .desc {
    max-width: 400px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* GRID */
.team-sub .team-grid {
    display: grid;
}

.team-sub .team-grid.small {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ITEM */
.team-sub .item {
    position: relative;
    margin-bottom: 0;
    padding: 15px;
    background-color: #0378a6;
    border-radius: 10px;
}

/* IMAGE BOX */
.team-sub .img-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
}

/* IMAGE */
.team-sub .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER ZOOM */
.team-sub .item:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.team-sub .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(31, 61, 43, 0.7),
            rgba(31, 61, 43, 0.1),
            transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-sub .item:hover .overlay {
    opacity: 1;
}

/* SOCIAL */
.team-sub .social {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;

    opacity: 0;
    transform: translateY(12px);
    transition: all 0.5s ease;
}

.team-sub .item:hover .social {
    opacity: 1;
    transform: translateY(0);
}

/* SOCIAL BUTTON */
.team-sub .social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.team-sub .social a:hover {
    background: #22c55e;
}

/* ICON */
.team-sub .social svg {
    width: 16px;
    height: 16px;
    stroke: #1f3d2b;
    fill: none;
    stroke-width: 2;
}

.team-sub .social a:hover svg {
    stroke: #fff;
}

/* CAPTION */
.team-sub figcaption {
    margin-top: 16px;
}

/* NAME */
.team-sub figcaption h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

/* ROLE */
.team-sub figcaption p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .team-sub .team-grid.small {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-sub .team-grid.small {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-sub .sub-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-sub .sub-header h2 {
        font-size: 32px;
    }
}

.team-sub .team_shop.small {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* css team advisor */
.sec_team_advisor {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a, #14532d);
}

/* Background pattern */
.advisor-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
        radial-gradient(circle at 80% 60%, white 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Grid */
.advisor-grid {
    display: grid;
    gap: 50px;
}

/* Responsive */
@media (min-width: 768px) {
    .advisor-grid {
        grid-template-columns: 5fr 7fr;
    }
}

/* Left */
.advisor-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 0px;
}

.advisor-label .line {
    width: 40px;
    height: 1px;
    background: #22c55e;
}

.text-accent {
    color: #38bdf8;
}

.advisor-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
    color: #fff;
}

.sub-header.vn_ADVISORS h2 {
    color: #78bf45 !important;
}

.team-grid.gr_vn_ADVISORS.small .item {
    background-color: #78bf45;
}

.sub-header.vn_ADVISORS h2 {
    color: #78bf45;
}

.advisor-right p {
    margin-bottom: 0;
}

.advisor-left img {
    min-height: 341px;
    object-fit: cover;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .advisor-title {
        font-size: 48px;
    }
}

/* Right */
.advisor-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0.85;
    font-size: 16px;
    line-height: 1.7;
}

.advisor-section {
    padding: 96px 0;
    margin: auto;
}

.sec_sub_team_ana {
    padding: 60px 0 !important;
}

/* css cta team */

/* Wrapper */
.cta-section {
    padding-bottom: 4rem;
}

.cta-container {
    margin: 0 auto;
}

/* Box */
.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    background: hsl(150 55% 22%);
    /* primary */
    padding: 3rem;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 5rem;
    }
}

/* Background blur circle */
.cta-bg {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(34, 197, 94, 0.4);
    /* leaf */
    border-radius: 50%;
    filter: blur(60px);
}

/* Content */
.cta-content {
    position: relative;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr 1fr;
        align-items: flex-end;
    }
}

/* Left */
.cta-sub {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.cta-sub .line {
    width: 40px;
    height: 1px;
    background: #22c55e;
}

.cta-sub .highlight {
    color: #facc15;
    /* accent */
}

.cta-left h2 {
    margin-top: 1.25rem;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

@media (min-width: 768px) {
    .cta-left h2 {
        font-size: 3rem;
    }
}

/* Right */
.cta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cta-right {
        justify-content: flex-end;
    }
}

/* Buttons */
.cta-section .btn {
    height: 44px;
    padding: 0 2rem;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

/* Primary */
.cta-section .btn-primary {
    background: #facc15;
    color: #000;
}

.cta-section .btn-primary:hover {
    opacity: 0.9;
}

/* Outline */
.cta-section .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: 'Lexend Deca', sans-serif;
}

.cta-section .btn-outline:hover {
    background: #fff;
    color: #0f172a;
}