/*
Theme Name: Larissa V2 Safe
Theme URI: https://larissabueno.com
Author: Larissa Bueno
Author URI: https://larissabueno.com
Description: Versão segura para atualização.
Version: 3.0.0
Text Domain: larissa-bueno
*/

:root {
    /* "Selena" Earthy Palette */
    --color-bg: #f7f5f3;
    /* Warm Off-White / Lightest Beige */
    --color-bg-card: #ffffff;
    /* Pure white for cards if needed */
    --color-text: #4a4a4a;
    /* Soft Charcoal, not harsh black */
    --color-heading: #2c2c2c;
    /* Darker Grey for headings */
    --color-accent: #9b7653;
    /* Warm Almond/Bronze Brown */
    --color-border: #e6e1de;
    /* Soft beige border */

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    /* Increased for more air */
    --spacing-md: 3rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;

    /* Layout */
    --container-width: 1140px;
    --header-height: 120px;
    /* Taller header */

    --color-bg-alt: #e3dacd;
    /* Slightly darker beige for contrast/numbers */
}

/* 1. Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* 2. Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.8rem;
    font-weight: 600;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* 3. Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 40px;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

.bg-alt {
    background-color: var(--color-bg-card);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 4. Components */

/* Header */
.site-header {
    padding: var(--spacing-md) 0;
    /* No sticky header, just spacious */
    background: transparent;
    text-align: center;
}

.site-branding {
    margin-bottom: var(--spacing-md);
}

.site-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Standard Logo */
.standard-logo {
    max-width: 200px;
    /* Adjust size as needed */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center if header is centered */
    filter: brightness(0);
    /* Convert white logo to black */
}

/* Navigation */
.main-navigation {
    margin: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    /* Wider spacing */
    margin: 0;
    padding: 0;
}

.main-navigation>div>ul {
    /* Ensure top level UL defaults to flex even if container wrapped */
    display: flex;
}

.main-navigation a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    /* Minimal size */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--color-heading);
    position: relative;
    padding-bottom: 5px;
}

/* Hover Effect - Underline expands */
.main-navigation a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color-heading);
    transition: width 0.3s ease;
    margin-top: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* "START HERE" Style - Always underlined */
.main-navigation li.start-here>a {
    border-bottom: 1px solid var(--color-heading);
}

.main-navigation li.start-here>a::after {
    display: none;
    /* Disable hover effect for this one */
}

/* Dropdown Indicators */
.menu-item-has-children>a {
    padding-right: 15px;
    /* Space for arrow */
}

.menu-item-has-children>a::before {
    content: '';
    display: inline-block;
    border: solid var(--color-heading);
    border-width: 0 1px 1px 0;
    padding: 3px;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 30%;
    pointer-events: none;
}

/* Dropdown Menu (Submenu) Styling */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li:hover>ul {
    display: flex;
}

.main-navigation ul ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
}

.main-navigation ul ul li a:hover {
    background-color: var(--color-bg);
    color: var(--color-accent);
}

.main-navigation ul ul li a::after {
    display: none;
    /* No underline for subitems */
}

/* Hero Section (if used) */
.hero {
    padding: var(--spacing-lg) 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent);
}

/* Post Grid - The "Selena" Look */
.post-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Strict 3 columns on desktop for that journal look */
    margin-bottom: var(--spacing-xl);
}

.post-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.post-thumbnail {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
}

/* The ARCH Mask */
.post-thumbnail img {
    width: 100%;
    aspect-ratio: 3/4;
    /* Taller portrait format */
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    /* The Arch */
    transition: transform 0.5s ease, filter 0.5s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.entry-meta {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.post-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.read-more-btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #7d5e41;
    /* Darker brown */
    color: #fff;
}

/* Pagination */
.pagination {
    margin-top: var(--spacing-lg);
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    margin: 0 5px;
    font-family: var(--font-heading);
    color: var(--color-heading);
}

.pagination .current {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

/* Footer */
.site-footer {
    background-color: #fff;
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 900px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .site-title {
        font-size: 2rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
}

/* Services Page Specific Styles */
.services-page .services-hero {
    padding: 0;
    /* Remove padding to let background touch edges */
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

/* Hero Background Blob/Shape Simulation */
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: var(--color-bg-alt);
    /* Beige block on left */
    z-index: -1;
    border-radius: 0 0 200px 0;
    /* Soft curve */
}

.hero-content-wrapper {
    gap: var(--spacing-lg);
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) 20px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 200px 200px 0 0;
    /* Arched Image */
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-text {
    flex: 1;
    padding-left: var(--spacing-md);
    position: relative;
}

.rotated-script {
    position: absolute;
    top: -40px;
    /* Adjusted position */
    left: 0;
    transform: rotate(-10deg);
    /* Slight tilt like the image */
    white-space: nowrap;
    font-size: 2.5rem;
    color: var(--color-bg-alt);
    /* Light color text behind? Or accent? Image has white/light script */
    font-family: 'Mrs Saint Delafield', cursive;
    opacity: 0.8;
    z-index: -1;
}

/* Override script color based on image analysis - it's often light or accent */
.hero-text .rotated-script {
    color: var(--color-accent);
    transform: rotate(0);
    top: -30px;
    left: 20px;
    font-size: 1.8rem;
}


.statement-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    /* Lighter grey */
}

.statement-section .highlight {
    font-family: 'Mrs Saint Delafield', cursive;
    color: var(--color-heading);
    font-size: 3rem;
    display: block;
    margin-top: 0.5rem;
}

.divider-line {
    width: 100px;
    height: 1px;
    background-color: var(--color-border);
    margin: 3rem auto;
}

/* Service Rows */
.services-list {
    margin: var(--spacing-xl) auto;
}

.service-row {
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
    align-items: center;
    /* Center vertically */
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: var(--spacing-md);
    position: relative;
}

.service-content h3 {
    font-size: 2.2rem;
    letter-spacing: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* Reset default */
}

/* Apply arch only to specific images if needed, or keeping square as per second image in screenshot? 
   Looking at screenshot, Service 1 is square/rect. Service 2 is square/rect. Hero is Arched.
   Let's remove universal arch for service images based on screenshot reference.
*/

.big-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-border);
    /* Lighter, subtle */
    line-height: 1;
    display: block;
    position: absolute;
    top: -40px;
    left: 20px;
    z-index: -1;
    opacity: 0.5;
}

.service-price {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1rem 0 2rem;
    color: var(--color-text);
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--color-accent);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: #7d5e41;
    color: #fff;
}

/* Client Love (Testimonials) - Split Layout */
.client-love {
    padding: 0;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.client-love-container {
    display: flex;
    align-items: stretch;
}

.client-love-bg {
    flex: 1;
    background-color: #d8dcd6;
    /* Sage/Greyish Green from screenshot? Or Beige? Let's go Beige/Grey var */
    background-color: var(--color-bg-alt);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.client-love-image {
    flex: 1;
    min-height: 500px;
}

.client-love-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-box {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonial-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-heading);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text);
}

.rotated-script-right {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 3rem;
    color: #fff;
    opacity: 0.8;
}

/* Process Section */
.process-section {
    padding: var(--spacing-md) 0;
    text-align: center;
}

.process-section h2 {
    font-size: 3rem;
    color: var(--color-bg-alt);
    /* Beige outlined title effect? Or just heading color */
    color: var(--color-heading);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 4rem;
    text-align: center;
}

.process-step {
    padding: 2rem;
    border: 1px solid transparent;
    /* Placeholder for hover effect */
}

.big-number-small {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-bg-alt);
    display: block;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* CTA */
.cta-section {
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
    background-color: var(--color-bg-alt);
    /* Full width background for CTA */
}

/* Responsive */
@media (max-width: 768px) {

    .flex,
    .service-row,
    .hero-content-wrapper,
    .client-love-container {
        flex-direction: column;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        border-radius: 0;
        /* Reset on mobile? Or keep arch */
        border-radius: 200px 200px 0 0;
    }

    .services-hero::before {
        width: 100%;
        height: 60%;
        border-radius: 0 0 50% 50%;
    }

    .rotated-script {
        display: none;
    }
}

/* About Page Specific Styles */
.about-page .about-hero {
    position: relative;
    padding-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.about-hero-wrapper {
    position: relative;
    z-index: 2;
    gap: var(--spacing-lg);
}

.about-hero-text {
    flex: 1;
    padding-right: var(--spacing-md);
}

.about-hero-text .script-text {
    color: var(--color-accent);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
    font-family: 'Mrs Saint Delafield', cursive;
}

.about-hero-image {
    flex: 1;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    /* No arch here based on reference, just rectangular portrait */
}

/* Beige background block behind hero */
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 80%;
    background-color: var(--color-bg-alt);
    z-index: 1;
}

/* Bio Section */
.about-bio {
    margin-bottom: var(--spacing-xl);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.bio-col p {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--color-text);
}

/* Get To Know Me */
.get-to-know {
    padding: var(--spacing-xl) 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
    /* Row gap, Col gap */
    margin-top: 3rem;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fact-item {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fact-answer {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 2.5rem;
    color: var(--color-heading);
    line-height: 1.2;
}

/* Resources Grid */
.resources-section {
    padding: var(--spacing-xl) 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.resource-box {
    background-color: #dcdcdc;
    /* Placeholder grey/beige */
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
    transition: transform 0.3s ease;
}

/* Colors for the boxes based on image */
.resource-box:nth-child(1) {
    background-color: #d6d6ce;
}

/* Greenish/Grey */
.resource-box:nth-child(2) {
    background-color: #e6d3c4;
}

/* Pinkish/Beige */
.resource-box:nth-child(3) {
    background-color: #d2c8c1;
}

/* Brownish/Grey */

.resource-box:hover {
    transform: translateY(-5px);
}

.resource-inner {
    text-align: center;
}

.resource-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
    color: var(--color-text);
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    /* Looks white in reference */
    margin: 0;
}

/* Newsletter */
.newsletter-section {
    padding: var(--spacing-xl) 0;
}

.newsletter-section .container {
    gap: var(--spacing-xl);
}

.newsletter-left {
    flex: 1;
    position: relative;
    min-height: 300px;
    /* Placeholder for image or space */
}

/* Simulating the "join the list" script placement */
.title-deco {
    font-size: 4rem;
    transform: rotate(-15deg);
    position: absolute;
    top: 50px;
    left: 50px;
    color: #fff;
    /* If on image */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-right {
    flex: 1;
    max-width: 500px;
}

.newsletter-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    /* Transparent white */
    border-bottom: 2px solid var(--color-accent);
}

@media (max-width: 768px) {
    .about-hero-bg {
        width: 100%;
        height: 50%;
    }

    .grid-2-col,
    .facts-grid,
    .resources-grid,
    .newsletter-section .container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .about-hero-wrapper {
        flex-direction: column-reverse;
        /* Image on top? Or text on top? usually image top mobile */
    }
}

/* =========================================
   STITCH THEME MENU STYLES
   ========================================= */
.stitch-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    /* Equivalent to space-x-10 */
    list-style: none;
    margin: 0;
    padding: 0;
}

.stitch-nav li {
    position: relative;
    margin: 0;
}

.stitch-nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    color: #4A4541;
    /* text-main */
    text-decoration: none;
    transition: color 0.3s ease;
}

.stitch-nav a:hover {
    color: #A67C52;
    /* primary */
}

/* Dropdown */
.stitch-nav ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    flex-direction: column;
    gap: 0;
    padding: 0;
    z-index: 100;
}

.stitch-nav li:hover>ul.sub-menu {
    display: flex;
}

.stitch-nav ul.sub-menu li {
    width: 100%;
}

.stitch-nav ul.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #4A4541;
    border-bottom: 1px solid #f9f9f9;
}

.stitch-nav ul.sub-menu a:hover {
    background-color: #f9f9f9;
    color: #A67C52;
}

/* Dark Mode Overrides (if class 'dark' is present on html/body) */
.dark .stitch-nav a {
    color: #e5e7eb;
}

.dark .stitch-nav a:hover {
    color: #A67C52;
}

.dark .stitch-nav ul.sub-menu {
    background: #1f1f1f;
    border-color: #333;
}

.dark .stitch-nav ul.sub-menu a {
    color: #e5e7eb;
    border-color: #333;
}

.dark .stitch-nav ul.sub-menu a:hover {
    background-color: #2a2a2a;
}

/* YouTube Embed Styling - Forced Overrides */
figure.wp-block-embed-youtube,
figure.wp-block-embed,
.wp-block-embed__wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 2rem 0 !important;
}

.entry-content iframe[src*="youtube.com"],
.entry-content iframe[src*="youtu.be"],
.wp-block-embed-youtube iframe {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
    border: 8px solid #fff !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border-radius: 2px !important;
}

/* Custom Pagination Styles */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.custom-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #e5e7eb;
    /* Gray-200 */
    color: #374151;
    /* Gray-700 */
    background-color: #ffffff;
    font-size: 0.9rem;
    /* text-sm */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    /* slight rounded */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Current Page */
.custom-pagination .page-numbers.current {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #ffffff;
}

/* Hover State */
.custom-pagination .page-numbers:not(.current):hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background-color: transparent;
}

/* Dark Mode Support */
.dark .custom-pagination .page-numbers {
    border-color: #374151;
    /* Gray-700 */
    color: #D1D5DB;
    /* Gray-300 */
}

.dark .custom-pagination .page-numbers.current {
    background-color: #A67C52;
    /* Fallback accent */
    border-color: #A67C52;
    color: white;
}

.dark .custom-pagination .page-numbers:not(.current):hover {
    border-color: #A67C52;
    color: #A67C52;
}

/* Icons in pagination */
.custom-pagination .page-numbers i {
    font-size: 1.25rem;
    /* text-xl */
}

/* Load More Post Animation */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-loaded {
    animation: slideInFromTop 0.6s ease-out forwards;
}