.management-page {
    background: #f4f7f9;
    color: #17323d;
    font-family: "Segoe UI", Arial, sans-serif;
}

.management-page * {
    box-sizing: border-box;
}

/* HERO */
.management-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 110px, transparent 112px),
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.13) 0, rgba(255, 255, 255, 0.13) 160px, transparent 162px),
        linear-gradient(135deg, #063746 0%, #087d91 48%, #35aebc 100%);
}

.management-hero::before {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.management-hero::after {
    content: "";
    position: absolute;
    left: -90px;
    top: -120px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
}

.management-hero .container {
    position: relative;
    z-index: 2;
}

.management-hero-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 68px 15px;
    text-align: center;
}

.management-label,
.management-section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.management-label {
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.management-section-label {
    color: #087d91;
}

.management-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
}

.management-hero p {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.7;
}

.management-hero-actions {
    margin-top: 28px;
}

.management-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.management-btn-primary {
    background: #ffffff;
    color: #087d91;
    border: 1px solid #ffffff;
}

.management-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
}

/* MAIN */
.management-main {
    padding: 0 0 80px;
}

.management-container {
    max-width: 1180px;
}

/* INTRO */
.management-intro-card {
    position: relative;
    z-index: 5;
    margin-top: -54px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.7fr 280px;
    gap: 30px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0eaee;
    border-radius: 22px;
}

.management-intro-card h2 {
    margin: 0 0 14px;
    color: #102d38;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.management-intro-card p {
    margin: 0;
    color: #5f747c;
    font-size: 16px;
    line-height: 1.75;
}

.management-intro-info {
    padding: 22px;
    background: #f7fbfc;
    border: 1px solid #e3eef2;
    border-radius: 18px;
}

.management-intro-info strong {
    display: block;
    margin-bottom: 6px;
    color: #087d91;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.management-intro-info span {
    color: #5f747c;
    font-size: 14px;
}

/* SECTION HEADING */
.management-team-section {
    margin-top: 34px;
}

.management-section-heading {
    margin-bottom: 22px;
}

.management-section-heading h2 {
    margin: 0 0 12px;
    color: #102d38;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.management-section-heading p {
    max-width: 680px;
    margin: 0;
    color: #5f747c;
    font-size: 16px;
    line-height: 1.75;
}

/* TEAM GRID */
.management-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.management-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0eaee;
    border-radius: 22px;
    transition: 0.25s ease;
}

.management-card:hover {
    transform: translateY(-4px);
    border-color: #c9e4eb;
}

.management-card-image {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: #eef4f6;
}

.management-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: 0.35s ease;
}

.management-card:hover .management-card-image img {
    transform: scale(1.035);
}

.management-card-body {
    padding: 22px;
}

.management-card-body h3 {
    margin: 0 0 8px;
    color: #102d38;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.management-position {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #eef8fa;
    color: #087d91;
    font-size: 13px;
    font-weight: 800;
}

.management-card-body p {
    margin: 0;
    color: #5f747c;
    font-size: 15px;
    line-height: 1.7;
}

.management-empty {
    margin-top: 34px;
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e0eaee;
    border-radius: 22px;
    text-align: center;
}

.management-empty h3 {
    margin: 0 0 10px;
    color: #102d38;
    font-size: 24px;
    font-weight: 800;
}

.management-empty p {
    margin: 0;
    color: #5f747c;
    font-size: 16px;
}

/* ANIMATION */
.management-hero-content,
.management-intro-card,
.management-card {
    animation: managementFadeUp 0.75s ease both;
}

.management-intro-card {
    animation-delay: 0.12s;
}

.management-card:nth-child(1) {
    animation-delay: 0.16s;
}

.management-card:nth-child(2) {
    animation-delay: 0.24s;
}

.management-card:nth-child(3) {
    animation-delay: 0.32s;
}

.management-card:nth-child(4) {
    animation-delay: 0.40s;
}

.management-card:nth-child(5) {
    animation-delay: 0.48s;
}

.management-card:nth-child(6) {
    animation-delay: 0.56s;
}

@keyframes managementFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .management-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .management-card-image {
        height: 320px;
    }
}

@media (max-width: 991px) {
    .management-hero {
        min-height: 300px;
    }

    .management-hero h1 {
        font-size: 42px;
    }

    .management-intro-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .management-hero {
        min-height: 260px;
    }

    .management-hero-content {
        padding: 50px 15px;
    }

    .management-hero h1 {
        font-size: 32px;
    }

    .management-hero p {
        font-size: 15px;
    }

    .management-intro-card {
        padding: 24px;
        border-radius: 18px;
    }

    .management-intro-card h2,
    .management-section-heading h2 {
        font-size: 24px;
    }

    .management-team-grid {
        grid-template-columns: 1fr;
    }

    .management-card-image {
        height: 360px;
    }

    .management-card-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .management-card-image {
        height: 310px;
    }
}