/* ------------------------------------------ */
/*        Single Minister Profile Page        */
/* ------------------------------------------ */

.minister-profile-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    min-height: calc(100vh - 68px);
}

.minister-profile-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Section */
.minister-content {
    padding: 0;
}

/* Minister Name */
.minister-name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    color: #192D50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Meta Information (Government & Assignment Period) */
.minister-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.meta-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.meta-label {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    min-width: 180px;
}

.meta-value {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    color: #192D50;
}

/* Content Sections */
.content-section {
    margin-top: 1.5rem;
}

.content-section:first-of-type {
    margin-top: 1.5rem;
}

.section-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.5rem;
    color: #192D50;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    /* border-bottom: 2px solid #e0e0e0; */
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #192D50;
} */

/* Details List */
.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.details-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #192D50;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.6;
}

.details-list li:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #192D50;
    margin-right: 0.5rem;
}

.detail-value {
    color: #333333;
    font-weight: 400;
}

/* Image Wrapper */
.minister-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.minister-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.minister-profile-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .minister-name {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .minister-profile-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .minister-name {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .meta-label {
        min-width: 160px;
        font-size: 0.8rem;
    }

    .meta-value {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .content-section {
        margin-top: 1.25rem;
    }

    .minister-image-wrapper {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .minister-profile-section {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .minister-name {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .minister-meta {
        padding: 0.75rem 0;
        gap: 0.625rem;
    }

    .meta-item {
        flex-direction: column;
        gap: 0.25rem;
    }

    .meta-label {
        min-width: auto;
        font-size: 0.75rem;
    }

    .meta-value {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .section-title::after {
        width: 40px;
    }

    .content-section {
        margin-top: 1rem;
    }

    .details-list li {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-left: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .detail-label {
        display: block;
        margin-bottom: 0.25rem;
        margin-right: 0;
    }

    .minister-image-wrapper {
        border-radius: 16px;
    }

    .minister-profile-img {
        border-radius: 16px;
    }
}

@media (max-width: 575.98px) {
    .minister-name {
        font-size: 1.75rem;
    }

    .meta-label {
        font-size: 0.7rem;
    }

    .meta-value {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1rem;
    }

    .details-list li {
        font-size: 0.9rem;
    }
}