/* --- FIX: FORZAR 2 COLUMNAS EN BLOG --- */

.blog-grid-container {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px !important;
}

@media (min-width: 768px) {
    .blog-grid-container .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0 15px !important;
    }
}

.blog-section-title {
    color: #ff8000 !important;
    font-weight: 800;
    text-transform: uppercase;
    border-left: 6px solid #ff8000;
    padding-left: 20px;
    margin-bottom: 40px;
    font-size: 2rem;
}

.blog-card-final {
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease;
    background: #fff;
    overflow: hidden;
    height: 100%;
}

.blog-card-final:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
    border-color: #ff8000 !important;
}

.blog-card-img-container {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.blog-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-link-title {
    color: #0d3172 !important;
    text-decoration: none !important;
    font-size: 1.5rem !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    display: block;
}

.blog-card-final:hover .blog-link-title {
    color: #ff8000 !important;
}

.resumen-label {
    color: #ff8000;
    font-weight: 800;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
}

.resumen-text {
    color: #444 !important;
    font-size: 1.1rem !important;
    line-height: 1.7;
    text-align: justify;
}

.btn-orange-action {
    background-color: #ff8000 !important;
    color: #ffffff !important;
    padding: 10px 25px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-radius: 6px !important;
    display: inline-block;
    border: none !important;
    text-decoration: none !important;
}

.btn-orange-action:hover {
    background-color: #e67300 !important;
    color: #fff !important;
}

/* --- FIX BOTÓN VOLVER ARRIBA --- */
#toTop {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 9999 !important;
    width: 50px !important;
    height: 50px !important;
    background-color: #ff8000 !important;
    border-radius: 50% !important;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
}

#toTop svg {
    width: 28px !important;
    height: 28px !important;
    stroke: #ffffff !important;
}
