.section-specific{
    background-image: url('/cuidado/public/assets/images/banners/BLOG%20BANNER.png');
    place-content: center;
    min-height: 55vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Estilos para los botones de idioma */
.language-selector-blog {
    display: inline-flex;
    background-color: #f8f9fa;
    border-radius: 25px;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.language-btn {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 45px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border: none;
    color: #666;
    background: transparent;
    border-radius: 20px;
    margin: 0 2px;
}

.language-btn:hover {
    color: #333;
    background-color: rgba(0,0,0,0.05);
}

.language-btn.active {
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 4px rgba(0,123,255,0.3);
}

/* Estilo para los botones Ver más/Read more */
.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,123,255,0.2);
}

/* Agregando las animaciones para fade-in */
.fade-in-up {
    opacity: 1 !important;
    animation: fadeInUp 0.5s ease-out;
}

.fade-in-left {
    opacity: 1 !important;
    animation: fadeInLeft 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
#pagination-container {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

#pagination-container ul {
    display: flex;
    gap: 0.5rem;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

#pagination-container li {
    display: flex;
}

#pagination-container li a,
#pagination-container li span {
    border: none;
    background: #fff;
    color: #19b0df;
    font-weight: 500;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(25,176,223,0.07);
}

#pagination-container li.active a,
#pagination-container li.active span {
    background: #19b0df;
    color: #fff;
    font-weight: bold;
}

#pagination-container li.disabled a,
#pagination-container li.disabled span {
    color: #ccc;
    background: #f1f1f1;
    cursor: not-allowed;
}

#pagination-container li a:hover:not(.active),
#pagination-container li span:hover:not(.active) {
    background: #e6f7fb;
    color: #19b0df;
}


@media (max-width: 767.98px) {
    .section-specific{
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .blog-container{
        padding-left: 2rem !important;
        padding-right: 2rem !important; 
    }

    span.text-white{
        font-size: 1rem !important;
    }
    h1{
        font-size: 2rem !important;
    }
}