/* ============================================
   Breadcrumb Component Styles
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-navigation {
    background: rgba(56, 93, 128, 0.18);
    /* padding: 15px 0; */
    border-bottom: 1px solid var(--color-border, #e5e7eb);
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--color-body, #2E2E2E);
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: var(--color-gray, #708090);
    font-weight: 300;
}

.breadcrumb-item a {
    color: var(--color-primary, #0A2463);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-blue, #00FFFF);
    text-decoration: underline;
}

.breadcrumb-item span[aria-current="page"] {
    color: var(--color-gray, #708090);
    font-weight: 500;
}

/* Team Breadcrumb Description */
.bread-td-description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media only screen and (max-width: 991px) {
    .bread-td-description {
        max-width: 85%;
    }
}

@media only screen and (max-width: 767px) {
    /* .breadcrumb-navigation {
        padding: 10px 0;
    } */

    .breadcrumb-list {
        font-size: 13px;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .breadcrumb-item {
        min-width: 0;
        /* Permite a los items flex reducir su ancho */
    }

    .breadcrumb-item a,
    .breadcrumb-item>span[aria-current="page"] {
        display: inline-block;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 6px;
    }

    .bread-td-description {
        max-width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .breadcrumb-list {
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .breadcrumb-navigation {
        display: none;
    }
}

/* ============================================
   BREADCRUMB TYPE="TEAM"
   ============================================ */
/* Estructura Principal y Contenedor */
.team-rts-breadcrumb-area {
    min-height: 477px;
    padding: 100px 0 60px;
    /* Padding superior excede el top negativo (-65px) para absorberlo */
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(32, 40, 45, 0.1) 0%, rgba(255, 255, 255, 0.1) 96.54%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Cierre radicular de seguridad para las capas */
}

/* Ajuste para móviles */
@media only screen and (max-width: 575px) {
    .team-rts-breadcrumb-area {
        min-height: 370px;
        padding: 85px 0 45px;
    }
}

/* Área de Título y Alineación */
.team-title-area-left {
    position: relative;
}

.team-title-area-left.center {
    text-align: center;
}

/* Texto de Fondo Decorativo */
.team-title-area-left .team-bg-title {
    font-size: 15rem;
    position: absolute;
    font-weight: 900;
    letter-spacing: 0;
    left: -90px;
    z-index: -1;
    top: -65px;
    font-family: var(--font-primary);
    min-width: max-content;
    color: transparent;
    -webkit-text-stroke: 1px rgba(11, 60, 255, 0.65);
    line-height: 1;
}

.team-title-area-left.center .team-bg-title {
    left: 50%;
    transform: translateX(-50%);
}

.team-title-area-left .team-bg-title::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 107%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.8855917367) 0%, rgba(255, 255, 255, 0.6082808123) 35%, rgba(255, 255, 255, 0) 100%);
}

@media only screen and (max-width: 575px) {
    .team-title-area-left .team-bg-title {
        font-size: 5rem;
        left: 0;
        top: -45px;
        /* Reducción de offset negativo en móvil para balance visual */
    }
}

/* Título Principal */
.team-title-area-left .team-title {
    font-size: 5.4rem;
    line-height: 1.23;
}

@media only screen and (max-width: 575px) {
    .team-title-area-left .team-title {
        font-size: 3.4rem;
    }

    .team-title-area-left .team-title br {
        display: none;
    }
}

/* Descripción */
.team-bread-td-description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 991px) {
    .team-title-area-left p.team-disc {
        max-width: 85% !important;
    }
}

@media only screen and (max-width: 767px) {
    .team-bread-td-description {
        max-width: 100%;
    }
}

/* Área de Formas Decorativas */
.team-shape-area img {
    position: absolute;
}

.team-shape-area .team-one {
    left: 80px;
    animation: jump-2 8s linear infinite;
}

.team-shape-area .team-two {
    left: 50%;
    top: 40%;
    animation: jump-2 6s linear infinite;
}

.team-shape-area .team-three {
    left: auto;
    right: 0;
    top: 60%;
    animation: jump-2 5s linear infinite;
}

@media only screen and (max-width: 575px) {

    .team-shape-area .team-two,
    .team-shape-area .team-three {
        display: none;
    }
}