.icon-base
{
    height:100%;
    width:auto;
}
.avatar-header
{
    background-color: var(--light-olive);
    box-sizing: content-box;
    position: relative;
}
a#user_appointments img {
    height: 25px;
}

/* Arreglos */
.border-none
{
    border:none;
}
.border-radius-10
{
    --border-radius-btn: 10px;
    border-radius:var(--border-radius-btn);
}
/* Banners */
    .swiper-container
    {
        width: 100%;
        height: auto;
        min-height:100%;
        position:relative;
    }
    img.url_banner_front {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .overlay-content-banner {
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 10%;
        transform: translate(0%,-50%);
    }
    .overlay-content-banner h2
    {
        --h2-font-size: calc(40px + (45 - 40) * ((100vw - 300px) / (1600 - 300)));
        font-family: 'recoleta';
        color: #ffffff;
        text-shadow: 0 0 3px #a1a1a1;
        overflow: unset;
    }
    img.icono-tarjeta {
        max-width: 60px;
    }

    /* Blog Styles */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .blog-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .blog-card .card-image {
        position: relative;
        overflow: hidden;
        background: #f5f5f5;
    }

    .blog-card .card-image img {
        transition: transform 0.5s ease;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-card:hover .card-image img {
        transform: scale(1.05);
    }

    .blog-card .card-header {
        padding: 1.2rem 1.2rem 0.5rem;
    }

    .blog-card .card-title {
        margin-bottom: 0.5rem;
        font-weight: 600;
        /* line-height: 1.4; */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 3em;
    }

    .blog-card .card-subtitle {
        font-size: 0.85rem;
        color: #666;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-card .card-body {
        padding: 0.5rem 1.2rem;
        flex-grow: 1;
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
        white-space: normal;
    }

    .blog-card .card-footer {
        padding: 0.8rem 1.2rem 1.2rem;
        border-top: 1px solid #f0f0f0;
        background: transparent;
    }

    .blog-card .btn-link {
        padding: 0;
        color: var(--primary);
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .blog-card .btn-link:hover {
        color: var(--primary-dark);
    }

    .divider-vert {
        display: inline-block;
        width: 4px;
        height: 4px;
        margin: 0 0.5rem;
        background-color: #999;
        border-radius: 50%;
        vertical-align: middle;
    }
    .nav.container
    {
        max-height: 90px;
    }
    .profile-user
    {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;    
    }
    nav.container {
        position: sticky;
        top: 0;
        background-color: rgba(255,255,255,.9);
        backdrop-filter: blur(1px);
        z-index: 9;
    }