/**
 * HEADER
 */
.site-header {
	margin-bottom: 0 !important;
	background: #003366;
}

.site-branding {
	text-align: center;
	margin-bottom: 20px;
}

.site-title {
	display: none;
}

.site-content {
	padding-top: 30px;
}

.header-overlay {
	max-width: 100%;
	text-align: center;
	margin: 0;
}

.header-overlay img {
	display: block;
	margin: 0 auto;
}

.button {
	background: #003366;
}

td, th {
	padding: 10px !important;
}

/**
     * MENU
     */
.comment-metadata,
        .entry-footer,
        .entry-meta,
        .footer-widgets .widget-title,
        .main-navigation ul > li.current-menu-item > a,
        .main-navigation ul > li.current_page_item > a,
        .more-recent-posts,
        .more-recent-posts:visited,
        .more-testimonials,
        .more-testimonials:visited,
        .search-form-icon:before,
        .site-header .jetpack-social-navigation a,
        .site-info, div#jp-relatedposts h3.jp-relatedposts-headline {
	color: #ffffff;
}

.comment-metadata .edit-link a,
        .site-header .jetpack-social-navigation a:hover,
        .jetpack_widget_social_icons a:hover,
        .jetpack_widget_social_icons a:focus,
        .widget_wpcom_social_media_icons_widget a:hover,
        .widget_wpcom_social_media_icons_widget a:focus,
        .main-navigation .nav-menu > li > a,
        .testimonials .edit-link a,
        .testimonials .edit-link a:visited {
	color: #ffffff;
}

.site-header .search-form-icon:before {
	background-color: #0025af;
}

/**
    * /MENU
    */
/**
 * /HEADER
 */
/**
 * CONTENT
 */
.entry-content {
	position: relative;
	padding-top: 40px;
}

.entry-content:after {
	content: '';
	position: absolute;
	width: 80%;
	height: 4px;
	left: 0;
	top: 10px;
	background: #003366;
}

.site-description-wrapper {
	max-width: 100%;
	z-index: 1;
	left: 30%;
	transform: translate(-30%, 0px);
}

@media screen and (min-width: 75em) {
	.site-description-wrapper {
		max-width: 50%;
		z-index: 1;
		left: 50%;
		transform: translate(-50%, 0px);
		border: 1px solid #003366 !important;
	}
}

.main-navigation ul {
	color: #0025af !important;
	background-color: #003366 !important;
}

.main-navigation ul ul a {
	color: #fff !important;
}

.site-header .search-form-icon:before {
	background-color: #003366;
}

.singular .entry-title {
	margin: 0;
	border-bottom: 0;
	padding-bottom: 10px;
}

/**
 * /CONTENT
 */
/* Make featured image full width on secondary pages */
body:not(.home) .post-thumbnail {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	position: relative;
}

body:not(.home) .post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

/* Limit the visible height of the full-width image */
body:not(.home) .header-image img,
body:not(.home) .post-thumbnail img {
	max-height: 370px;
/* adjust 300–500px to your liking */
	object-fit: cover;
/* keeps image from squishing */
	width: 100%;
	height: 100%;
	display: block;
}

.wp-block-quote p {
	font-size: 16px;
}

.wp-block-quote cite {
	font-size: 14px;
}

.wp-block-media-text blockquote,
.wp-block-media-text .wp-block-quote {
	border-color: #003366 !important;
/* cambia color */
/* Ajusta según gusto */
	overflow: hidden;
/* Hace que los bordes respeten el redondeo */
	background-color: #f7f7f7;
/* Opcional: fondo suave para que se note */
	padding: 20px;
/* Espacio interno */
}

/* 1. Bloque Medios y texto: fondo uniforme y bordes redondeados */
.wp-block-media-text {
	border-radius: 12px;
/* Bordes redondeados del bloque completo */
	overflow: hidden;
/* Para que los bordes redondeados afecten la imagen y la cita */
	background-color: #f7f7f7;
/* Fondo suave uniforme */
	padding: 20px;
/* Espacio interno del bloque */
	max-width: 900px;
/* Ancho máximo en pantallas grandes */
	margin-left: auto;
	margin-right: auto;
/* Centrar bloque */
}

/* 2. Imagen dentro del bloque: responsive y con redondeo parcial */
.wp-block-media-text__media img {
	width: 100%;
/* Se adapta al contenedor */
	height: auto;
/* Mantiene proporciones */
	display: block;
	object-fit: cover;
}

/* 3. Bloque de cita dentro del bloque Medios y texto */
.wp-block-media-text blockquote,
.wp-block-media-text .wp-block-quote {
	background-color: transparent !important;
/* Transparente para heredar fondo del bloque */
	border-top: 4px solid #ff9900;
/* Borde superior de la cita */
	border-bottom: 4px solid #ff9900;
/* Borde inferior de la cita */
	border-radius: 12px;
/* Bordes redondeados de la cita */
	padding: 15px 20px;
/* Espacio interno de la cita */
	margin: 0;
/* Quita márgenes predeterminados */
}

/* 4. Separación entre cita y nombre de la autora */
.wp-block-media-text blockquote cite,
.wp-block-media-text .wp-block-quote cite {
	display: block;
/* Cada elemento en su propia línea */
	margin-top: 12px;
/* Espacio entre cita y autora */
	font-style: normal;
/* Opcional: quita cursiva */
	opacity: .85;
/* Opcional: más suave visualmente */
}

/* 5. Ajustes responsivos para móviles */
@media (max-width: 768px) {
	.wp-block-media-text {
		padding: 15px;
	/* Reduce padding en móviles */
	}
	
	.wp-block-media-text blockquote {
		padding: 10px 15px;
	/* Ajusta padding de la cita */
	}
}

/* Oculta la lista de últimas entradas solo en la portada */
.home .latest-posts,  /* Algunos temas usan esta clase */
.home .blog-posts,    /* Otra clase común */
.home .recent-posts {
/* Ajusta según el selector de tu tema */
	display: none !important;
}