.blog-post-container {
    max-width: 850px;
    padding: 20px;
    background-color: #f8f7f7;
    border-radius: 4px;
    border: 1px solid #00000013; /* Añade un borde negro de 1 píxel */
}

.blog-sidebar {
    border-radius: 6px;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    box-shadow: #333;
}

@media (max-width: 767.98px) {
    .blog-sidebar {
        margin-top: 30px;
    }
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section img {
    max-width: 100%;
    border-radius: 10px;
}

.sidebar-section h4,
.sidebar-section h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sidebar-section ul {
    list-style-type: none;
    padding: 0;
}

.sidebar-section ul li {
    margin-bottom: 10px;
}

.sidebar-section ul li a {
    text-decoration: none;
    color: #007bff;
}

.sidebar-section ul li a:hover {
    color: #0056b3;
}

.recommended-articles h3 {
    font-size: 1.5rem;
    color: #333;
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}

.img-autor {
    width: 180px;
}

.img-book {
    width: 180px;
}


.navigation-between-articles {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navigation-between-articles a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
}

.navigation-between-articles a:hover {
    color: #007bff;
}

.navigation-between-articles a i {
    font-size: 1.2rem;
    vertical-align: middle;
}

.social-icons a {
    color: #000;
    font-size: 1.7rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #094c69;;
}

