/* --- Management Mirror-Match Style (Based on Reference Image) --- */
.management-showcase {
    /* Background Pattern: Diagonal dots as seen in image */
    background-color: #f7f7f7;
    background-image: radial-gradient(#d1d1d1 1px, transparent 1px);
    background-size: 20px 20px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.management-profile-row {
    background: transparent;
    margin-bottom: 40px;
}

/* Image Container with Blue Border */
.management-image-container {
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    border: 2px solid #0056b3; /* The Blue border from image */
    box-shadow: 0 5px 25px rgba(0, 86, 179, 0.15); /* Subtle Blue Glow */
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.management-profile-img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Details Section */
.management-profile-details {
    padding-left: 20px;
}

.management-profile-name {
    font-family: 'Fredoka', 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.management-profile-role {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-transform: none;
    letter-spacing: normal;
}

.management-profile-subrole {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 30px;
}

.management-profile-bio p {
    font-size: 16px;
    line-height: 1.7;
    color: #2b2b2b;
    margin-bottom: 18px;
}

.management-bio-lead {
    font-weight: 700; /* Bolding the lead paragraph as per image */
    color: #1a1a1a !important;
}

.philosophy-title {
    font-style: italic; /* Italicized title as seen in image */
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    display: block;
}

.management-divider {
    height: 1px;
    background: #e1e1e1;
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .management-profile-details {
        padding-left: 0;
        margin-top: 30px;
    }
    .management-profile-name { font-size: 28px; }
}

@media (max-width: 575px) {
    .management-profile-name { font-size: 24px; }
    .management-profile-role { font-size: 14px; }
}
