/* PAGINADOR EN LA NOTICIA*/

.entry-content .paginador2 {
	position: relative;
    width: 100%;
    margin: 10px 0;
    display: block;
    text-align: right;
    clear: both;
}

.entry-content .paginador2 a {
    color: white !important;
    font-size: 20px;
    padding: 10px 20px;
    background: #c71616;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    display: inline-table;
}

.entry-content .paginador2 a:hover {
	background: #de2121;
	color: white;
}

.entry-content .paginador2 a:first-child {
	background-color: transparent; 
	color: #c71616 !important;
	float: left;
	font-weight: 300;
	font-weight: bold;
}

.entry-content .paginador2 a:first-child:hover{
	background: #de2121;
	color: white !important;
}

.entry-content .paginador2 a:last-child {}

.entry-content .paginador2 span {
	display: inline-table;
    margin-right: 5px;
    font-size: 18px;
    color: #333333;
}

/* //PAGINADOR EN LA NOTICIA*/


/*Formulario para anunciarse*/

.page-id-98692 h1.entry-title {
	max-width: 700px;
	margin: auto;
	margin-bottom: 20px;
}

.page-id-98692 h4{
	font-size: 20px;	
	margin-top: 30px;
	margin-bottom: 20px;
}

.formulario-banner {
	max-width: 700px;
	margin: 0 auto;
}
.formulario-banner form {
	width: 100%;
}

.formulario-banner form p{
	font-size: 14px;
}

.formulario-banner input, .formulario-banner textarea{
	border-color: #b9b9b9;
	padding: 5px;
	background-color: white;
	font-size: 20px;
	border-radius: 5px;
	display: inline-flex;
	width: 100%;
}

.formulario-banner input[type=submit] {
	font-size: 20px;
	border: 0;
	background-color: #1c9fd3;
	padding: 10px 20px;
	border-radius: 10px;
	color: white;
	margin: 0 auto;
	display: table;
	width: auto;
}

.formulario-banner span.wpcf7-not-valid-tip{
	font-size: 13px;
	margin-top: -15px;
	margin-bottom: 15px;
}

/* END Formulario para anunciarse*/

/* para quitar la primera letra mayuscula */
.entry-content p:first-of-type::first-letter {
	initial-letter: 1 1 !important;
}

/*.format-standard .entry-content > p:first-child:first-letter, .page .entry-content > p:first-child:first-letter {
	initial-letter: 1 1 !important;
    float: none !important;
    font-size: initial !important;
    line-height: inherit !important;
    margin: 0 !important;
}*/

/* 
	Boton para el de canal de WhatsApp
*/

/* Contenedor principal */
.rdn-wa-container {
    margin: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    clear: both;
}

/* El enlace que envuelve todo */
.rdn-wa-link {
    text-decoration: none !important;
    display: block;
    background-color: #e5ddd5; /* Color de fondo estilo chat WhatsApp */
    background-image: linear-gradient(135deg, #e5ddd5 25%, #dcb 25%, #dcb 50%, #e5ddd5 50%, #e5ddd5 75%, #dcb 75%, #dcb 100%);
    background-size: 20px 20px;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 5px solid #25D366; /* Borde verde WhatsApp */
    transition: transform 0.2s ease;
}

.rdn-wa-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Layout interno flex */
.rdn-wa-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

/* La burbuja de mensaje */
.rdn-wa-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 12px 12px 12px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    flex-grow: 1;
}

/* Triangulito de la burbuja */
.rdn-wa-bubble::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
    border-right: 0;
    margin-top: 0;
}

.rdn-wa-text {
    color: #111b21;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 4px;
}

/* Hora y checkmarks */
.rdn-wa-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #667781;
}

.rdn-wa-checks {
    color: #53bdeb; /* Azul de leído */
    font-weight: bold;
    font-size: 12px;
    letter-spacing: -2px;
}

/* Área del icono */
.rdn-wa-icon-box {
    position: relative;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.rdn-wa-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Notificación roja */
.rdn-wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Ajuste móvil */
@media (max-width: 480px) {
    .rdn-wa-text {
        font-size: 14px;
    }
    .rdn-wa-wrapper {
        gap: 10px;
    }
}