/*
Theme Name: La Brisa Mar
Theme URI: https://labrisamar.com
Author: Ivan Vega
Author URI: https://labrisamar.com
Description: Ultra-lightweight, programmatic-SEO theme for a real estate & climate directory. Built with Tailwind CSS and ACF Pro, optimized for Google PageSpeed and AdSense.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: labrisamar
*/

/* All layout/utility styling is handled by Tailwind CSS.
   Use this file only for the WP header above and any minimal
   custom overrides that Tailwind cannot express. */

/* ------------------------------------------------------------------
   Paginación (the_posts_pagination). Marcado nativo de WordPress que
   Tailwind no purga; se estiliza aquí con CSS real.
------------------------------------------------------------------ */
.pagination { margin-top: 2.5rem; }
.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 .75rem;
	border-radius: 9999px;
	border: 1px solid #e2e8f0; /* slate-200 */
	background: #fff;
	color: #334155; /* slate-700 */
	font-size: .875rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.pagination .page-numbers:hover { border-color: #34c6bd; color: #0a8781; } /* brand */
.pagination .page-numbers.current {
	background: #0a8781; /* brand-600 */
	border-color: #0a8781;
	color: #fff;
}
.pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}
