/* ==========================================================================
   BREADCRUMB STYLES
   ========================================================================== */

.mepa-breadcrumb {
    position: relative;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.mepa-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mepa-breadcrumb .mepa-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.mepa-breadcrumb-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Navigation */
.mepa-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px;
    color: rgb(162, 162, 162);
}

.mepa-breadcrumb-nav a {
    color: rgb(248, 249, 250);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.mepa-breadcrumb-nav a:hover {
    color: rgb(0, 168, 226);
}

.mepa-breadcrumb-nav .separator {
    color: rgb(162, 162, 162);
    font-size: 12px;
}

.mepa-breadcrumb-nav .current {
    color: rgb(162, 162, 162);
    font-weight: 400;
}

/* Page Title */
.mepa-breadcrumb-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    font-style: normal;
    color: rgb(248, 249, 250);
    margin: 0;
    line-height: 38px;
}

/* Social Media Icons */
.mepa-breadcrumb-social {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.mepa-breadcrumb-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mepa-breadcrumb-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.mepa-breadcrumb-social svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .mepa-breadcrumb {
        height: 200px;
    }

    .mepa-breadcrumb-title {
        font-size: 26px;
        line-height: 32px;
    }

    .mepa-breadcrumb-nav {
        font-size: 11px;
        flex-wrap: wrap;
    }

    .mepa-breadcrumb-social a {
        width: 36px;
        height: 36px;
    }

    .mepa-breadcrumb-social svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .mepa-breadcrumb {
        height: 180px;
    }

    .mepa-breadcrumb-title {
        font-size: 22px;
        line-height: 28px;
    }

    .mepa-breadcrumb-nav {
        font-size: 10px;
    }

    .mepa-breadcrumb-social a {
        width: 32px;
        height: 32px;
    }
}
