
.fecha {
	  font-style:       italic;
	  text-align:       right;
}

.retro {
		font-style: bolder;
}


.nota-panel .fecha {
  display:          block;
  font-size:        0.8em;
  color:            #777;
  margin-top:       1px;

}

/* Post completo */
article.post {
    max-width: 700px;
    margin: 4rem auto;
    padding: 1rem 2rem;
    line-height: 1.6;
    font-family: "Georgia", serif;
    background-color: #fefefe;
    border-left: 4px solid #336699; /* toque editorial */
}

/* Cabecera del post */
article.post header h1 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 0.3rem;
}

article.post header .fecha {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

/* Contenido */
article.post .contenido p {
    margin-bottom: 1.2rem;
}

/* Footer */
article.post footer a {
    text-decoration: none;
    color: #336699;
    font-size: 0.9rem;
}

article.post footer a:hover {
    text-decoration: underline;
}

.nota-archivo {
    margin-bottom: 2rem;
}

.nota-archivo h1 {
    font-weight: normal;
	font-color: #F54927;
    font-size: 1.5rem;
	font-style: bold;
}

.nota-archivo h2 {
    font-weight: normal;
    font-size: 1.1rem;
	font-style: italic;
}

.nota-archivo small {
    color: #777;
    font-size: 0.75rem;
}

.blog-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.nota-panel {
    background-color: #defcfa;
    border-left: 4px solid #336699;
    padding: 0.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 3px;
}

.nota-panel h4 {
    margin: 0 0 0.005rem 0;
    font-size: 0.85rem;
}

.nota-panel h4 a {
    text-decoration: none;
    color: #336699;
}

.nota-panel h4 a:hover {
    text-decoration: underline;
}

.nota-panel .fecha {
    display: block;
    font-size: 0.8rem;
    color: #777;
}

/* Efecto hover */
.nota-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}