
body {
    font-family: 'Times New Roman', Times, serif;
    /*background-color: #D8C3A5;*/
    background: linear-gradient(to bottom, #ead9c4, #d8c3a5);
    color: #3E2F1C;
    margin: 0;
    padding: 0;
    max-height: none;
    min-height: 100vh;
}

.page-wrapper {
    max-width: 800px;
    margin: 30px auto;
    display: flex;
    gap: 20px;
}

/*      Titulo       */
.titulo {
    margin-top: 30px;
}



/*      Sidebar     */
.sidebar {
    width: 120px;
    background-color: #EAD9C4;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #7B5E3C;
    max-height: 190px;
}

.sidebar h2 {
    margin-top: 0;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.sidebar a {
    display: block;
    color: #3E2F1C;
    text-decoration: none;
    margin-bottom: 8px;
}

.sidebar a:hover {
    text-decoration: underline;
}

.content-wrapper {
    flex-grow: 1;
    box-sizing: border-box;
    border: 1px solid #7B5E3C;
    background-color: #EAD9C4;
}

/*      Header      */
header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 18px 0 0 0;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo {
    width: 55px; /* Ajusta el tamaño de tu mascota */
    height: auto;
    filter: drop-shadow(5px 5px 0 rgba(0,0,0,1));


}


/*      Post        */
.container {
    padding: 0 10px;
}

.post {
    margin-bottom: 15px;
}

.post h3 {
    display: flex;
    justify-content: space-between; /* separa el título y la fecha */
    align-items: center;            /* alinea verticalmente */
    margin: 0 0 5px 0;
    font-size: 1.2em;
    border-top: 1px dashed #3E2F1C;
    padding-top: 10px;
}

.post-date {
    font-size: 0.9em;
    color: #7B5E3C;
}

.post a {
    color: #3E2F1C;
    text-decoration: underline;
}


/*      Footer      */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9em;
    padding-top: 15px;
}


/*
    //Color para detalles: #d9a66b
 
    body {
    background-color: #d8c3a5;
    color: #18130c;
}
a {
    color: #a1573b;
}
section {
    background-color: #ead9c4;
    border: 2px solid #7b5e3c;
    margin-bottom: 5px;
}
*/