/* Management Page Styles */

/* General Container */
.management-container {
    padding: 60px 0;
    color: #e0e0e0;
    /* Light text for dark bg */
    font-family: 'Montserrat', sans-serif;
    /* Assuming main font */
}

/* .container removed to use global width (1400px) */

/* Idea Section */
.idea-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.idea-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #cccccc;
    font-style: italic;
}

.idea-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.idea-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    color: #cccccc;
    font-style: italic;
}

.idea-list li::before {
    content: "-";
    position: absolute;
    left: 0;
}

.highlight-text {
    font-weight: 500;
    color: #fff;
}

/* Manager Card */
.manager-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.manager-photo {
    flex: 0 0 350px;
}

.manager-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.manager-info {
    flex: 1;
}

.manager-name {
    font-family: var(--font-accent), 'Bebas Neue', sans-serif;
    /* Assuming accent font */
    font-size: 48px;
    line-height: 1;
    margin: 0 0 5px 0;
    color: #fff;
    letter-spacing: 1px;
}

.manager-role {
    font-size: 24px;
    color: #a0a0a0;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.manager-bio {
    margin-bottom: 30px;
}

.manager-bio p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 15px;
    color: #d0d0d0;
}

/* Achievements */
.manager-achievements h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
    position: relative;
    padding-left: 0;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .manager-card {
        flex-direction: column;
        align-items: center;
    }

    .manager-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }

    .manager-info {
        width: 100%;
    }

    .manager-name {
        text-align: center;
    }

    .manager-role {
        text-align: center;
    }
}