@import url('general.css');
@import url('root.css');

.content-div-divisior{
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0;
}

.blog-post-article{
    background: #f4f4f4;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.main-text-article-container{
    background: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-article-h1{
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
}

.post-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}
.blog-img-cover{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}
.post-content figure {
    margin: 0;
    text-align: center;
}
.post-content figcaption {
    font-style: italic;
    color: #555;
    margin-top: 5px;
}

.return-blog-btn{
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 300ms ease-in-out;
}

.return-blog-btn:hover {
    background-color: #0056b3;
}

/* Estilos para post en general */

ul, ol{
    margin-left: 25px;
}

.blog-img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}