#wpadminbar{ display:none; }  

body{
	 font-family: "Roboto", sans-serif;
}

article iframe{
	width:100%; 
	height:500px;
}    

/* Estilo para el borde verde activo */
.nav-link.active-category {
    position: relative;
    color: #075869 !important;
    font-weight: 600;
	background: #f0f0f0;
}

.nav-link.active-category::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Ajusta según tu diseño */
    left: 0;
    right: 0;
    height: 3px;
    background-color: #075869;
    border-radius: 2px;
}

.category-header {
    background: linear-gradient(135deg, #075869, #1F7A78);
    color: white;
    padding: 3rem;
    border-radius: 10px;
}

.text-muted a:hover {
    color: #075869 !important;
    text-decoration: underline;
}

.btn-outline-azul {
    background-color: white;
    color: #075869;
    border: 2px solid #075869;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-outline-azul:hover {
    background-color: #075869;
    color: white;
    border-color: #075869;
    text-decoration: none;
}
  

.banner-principal {
	background: linear-gradient(to right, #075869, #1F7A78);
	color: white;
	text-align: center;
	padding: 40px 0;
	margin-bottom: 30px;
	font-size: 36px;
	font-weight: bold;
	height: 300px;
}

.foto-nota-principal {
	background: linear-gradient(to right, #075869, #1F7A78);
	color: white;
	height: 500px;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: bold;
}

.columna-entrevista {
	background-color: #E8F4F8;
	padding: 20px;
	height: 100%;
	border-left: 5px solid #1F7A78;
}
 
 /* Entrevista home */
.columna-entrevista h3 {
	background-color: #075869;
	color:white;
	font-style: italic;
	margin-bottom: 15px;
	font-size: 18px;
	
	clip-path: polygon(
		0px 0%,       /* Esquina superior izquierda recortada */
		100% 0%,       /* Esquina superior derecha normal */
		85% 100%,     /* Esquina inferior derecha normal */
		0% 100%,       /* Esquina inferior izquierda normal */
		0% 100%        /* Esquina inferior izquierda recortada */
	);
}

.entrevista-overlay {
	position: relative;
	height: 220px;
	border-radius: 8px;
	overflow: hidden;
}

.entrevista-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.entrevista-overlay:hover img {
	transform: scale(1.05);
}

.entrevista-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(to top, 
				rgba(0,0,0,0.9) 0%, 
				rgba(0,0,0,0.7) 50%, 
				rgba(0,0,0,0) 100%);
	color: white;
}

.entrevista-title {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 5px;
}

.entrevista-meta {
	font-size: 0.8rem;
	opacity: 0.9;
}

.entrevista-link {
	color: white;
	text-decoration: none;
	display: block;
}

.entrevista-link:hover {
	color: #ffd700;
}

.columna-nota {
	background-color: white;
	padding: 20px;
	height: 100%;
	border: 2px solid #075869;
}

.columna-nota h3 {
	color: #075869;
	margin-bottom: 15px;
	font-size: 22px;
}

.sintesis {
	color: #333;
	font-size: 16px;
	line-height: 1.5;
}

.columna-autores {
	background-color: #E8F4F8;
	padding: 20px; 
	border-right: 5px solid #1F7A78;
}

.columna-autores ul li a{
	color: gray;
	width:100%;
	font-style:italic;
	font-size:.9rem;
}

.columna-autores ul li a:first-child{
	display: block;
	color: #075869;
	font-weight:bold;
	font-size: 1rem;
}

.hoy-escriben {
	background: #075869;
	color: white;
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 18px;
	
	clip-path: polygon(
		0px 0%,       /* Esquina superior izquierda recortada */
		100% 0%,       /* Esquina superior derecha normal */
		85% 100%,     /* Esquina inferior derecha normal */
		0% 100%,       /* Esquina inferior izquierda normal */
		0% 100%        /* Esquina inferior izquierda recortada */
	);
}

.lista-autores {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lista-autores li {
	padding: 8px 0;
	color: #333;
	border-bottom: 1px solid #ccc;
}

.lista-autores li:last-child {
	border-bottom: none;
}

.foto-nota {
	background: linear-gradient(to right, #075869, #1F7A78);
	color: white;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}
 
.titulo-nota {
	color: #075869;
	font-weight: bold;
	font-size: 16px;
}

.subtitulo-nota, .sintesis{
	color: gray;
	font-style: italic;
	font-size: 14px;
}

.banner-inferior {
	background: linear-gradient(to right, #075869, #1F7A78);
	color: white;
	text-align: center;
	padding: 30px 0;
	margin-top: 30px;
	font-size: 28px;
	font-weight: bold;
}

.row-equal-height {
	display: flex;
	flex-wrap: wrap;
}

.row-equal-height > [class*='col-'] {
	display: flex;
	flex-direction: column;
}

.fecha-destacada {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #075869, #1F7A78);
    color: white;
    padding: 2px 15px;
    box-shadow: 0 4px 12px rgba(7, 88, 105, 0.3);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.fecha-dia {
    font-size: 38px;
    font-weight: bold;
    margin-right: 15px;
    line-height: 1;
}

.fecha-mes-anio {
    display: flex;
    flex-direction: column;
}

.fecha-mes {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fecha-anio {
    font-size: 16px;
    opacity: 0.9;
}

/*  Seccion autores  */
.author-page-header {
	background: linear-gradient(135deg, #075869, #1F7A78); 
   color: white; 
   padding: 3rem; 
   border-radius: 10px;
}

.author-header {
    background: linear-gradient(135deg, #075869, #1F7A78);
    color: white;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(7, 88, 105, 0.3);
}

.author-header h1 {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.author-bio {
    max-width: 700px;
    margin: 0 auto;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
    border-bottom: 1px solid #e9ecef;
}

.card-title a:hover {
    color: #075869 !important;
    text-decoration: underline !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

.badge.bg-secondary:hover {
    background-color: #5a6268 !important;
}

.pagination .page-link {
    color: #075869;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #075869;
    border-color: #075869;
    color: white;
}

.pagination .page-link:hover {
    background-color: #E8F4F8;
    color: #05424F;
}

@media (max-width: 768px) {
	article iframe{
		width:100%; 
		height:auto;
	}  

    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .post-meta > span {
        margin-bottom: 5px;
    }
    
    .separador {
        display: none;
    }
    
    .otros-posts-autor .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
	.navbar-toggler{
		position: relative;
		right: -8rem;
	}
	.logo{
		width: 130px;
	}
}

@media (max-width: 576px) {
    .post-title {
        font-size: 1.5rem;
    }
    
    .otros-posts-autor .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
</style>