/* ------------------------------------------ */
/*        Ministers Listing Page              */
/* ------------------------------------------ */

.ministers-listing-section {
    min-height: calc(100vh - 68px);
    /* background-color: #ffffff; */
    padding-bottom: 3rem;
}

/* Page Title */
.page-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.2;
    color: #192D50;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 0;
}

/* Using Bootstrap's standard col-lg-3 for 4 items per row (12/3 = 4) */

/* Ministers Grid */
.ministers-grid {
    margin-top: 2rem;
}

/* Minister Card Link */
.minister-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.minister-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Minister Card */
.minister-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.minister-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Minister Image Wrapper */
.minister-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 80%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.minister-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: transform 0.3s ease;
}

.minister-card:hover .minister-image {
    transform: scale(1.05);
}

/* Minister Info */
.minister-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.minister-name {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #192D50;
    /* margin-bottom: 1rem; */
    min-height: 2.2em;
}

.minister-details {
    margin-top: auto;
}

.minister-government,
.minister-period {
    font-family: var(--font-main);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: #333333;
}

.minister-period {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #000000;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-weight: 500;
    color: #192D50;
    display: block;
    margin-top: 0.125rem;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    .ministers-listing-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* 3 items per row on tablets */
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (max-width: 767.98px) {
    .ministers-listing-section {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .minister-info {
        padding: 1.25rem;
    }

    .minister-name {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .minister-government,
    .minister-period {
        font-size: 0.8125rem;
        margin-bottom: 0.625rem;
    }

    .detail-label {
        font-size: 0.7rem;
    }

    .detail-value {
        font-size: 0.8125rem;
    }

    /* 2 items per row on mobile */
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }

    .minister-image-wrapper {
        padding-top: 90%;
    }

    .minister-info {
        padding: 1rem;
    }

    .minister-name {
        font-size: 0.95rem;
        min-height: 2.8em;
    }

    /* 1 item per row on small mobile */
    .col-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Additional styling for better visual hierarchy */

/* Ensure cards have equal height */
.ministers-grid .col-lg-3,
.ministers-grid .col-md-4,
.ministers-grid .col-sm-6,
.ministers-grid .col-12 {
    display: flex;
}

.minister-card-link {
    width: 100%;
    display: flex;
}

.minister-card {
    width: 100%;
}

