.home_title {
    color: #24344B !important;
    text-shadow: none !important;
}
.breadcrumbs ul li,
.breadcrumbs ul li a {
    color: #24344B !important;
    text-shadow: none !important;
}
.breadcrumbs ul li:not(:last-child)::after {
    color: #24344B !important;
}

.bio_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    padding: 40px 0;
}
@media only screen and (max-width: 575px) {
    .bio_grid { grid-template-columns: 1fr; gap: 20px; padding: 20px 0; }
    .bio_section_title h2 { font-size: 26px; }
}
.bio_card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bio_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}
.bio_card_img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bio_card_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.bio_card_img .bio_no_img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #042C49, #24344B);
    display: flex;
    align-items: center;
    justify-content: center;
}
.bio_card_img .bio_no_img i {
    font-size: 80px;
    color: rgba(255,255,255,0.4);
}
.bio_card_body {
    padding: 20px;
}
.bio_card_nombre {
    font-size: 18px;
    font-weight: 700;
    color: #24344B;
    margin-bottom: 4px;
}
.bio_card_cargo {
    font-size: 13px;
    color: #F85E0C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.bio_card_texto {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}
.bio_card_link {
    display: inline-block;
    padding: 7px 18px;
    background-color: #042C49;
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    transition: background-color 0.2s;
}
.bio_card_link:hover {
    background-color: #F85E0C;
    color: #fff;
    text-decoration: none;
}
.bio_section_title {
    text-align: center;
    padding: 50px 0 10px;
}
.bio_section_title h2 {
    font-size: 36px;
    color: #24344B;
    font-weight: 700;
}
.bio_section_title p {
    color: #888;
    font-size: 16px;
    max-width: 560px;
    margin: 10px auto 0;
}
.bio_empty {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
    font-size: 18px;
}

.modal-bio-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #042C49;
    margin-bottom: 16px;
}
.modal-bio-no-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #042C49, #24344B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.modal-bio-no-img i {
    font-size: 60px;
    color: rgba(255,255,255,0.5);
}
.modal-bio-cargo {
    color: #F85E0C;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.modal-bio-texto {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    text-align: left;
    white-space: pre-line;
}
