* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2B2B2B;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header/Navigation */
.header {
    background: #FFFFFF;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FF6B35;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #6B6B6B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF6B35;
}

.cta-nav {
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FAF3E0 0%, #F4E9D8 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2B2B2B;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: #6B6B6B;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: white;
    color: #FF6B35;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #FF6B35;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    background: linear-gradient(135deg, #FF6B35 0%, #E76F51 100%);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B6B6B;
    font-size: 18px;
}

/* Stats Section */
.stats {
    background: white;
    padding: 60px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    border-radius: 20px;
    background: #FAF3E0;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #6B6B6B;
    font-size: 16px;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, #FAF3E0 0%, #F4E9D8 100%);
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #2B2B2B;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2B2B2B;
}

.step-card p {
    color: #6B6B6B;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: white;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:nth-child(even) {
    direction: rtl;
}

.feature-row:nth-child(even)>* {
    direction: ltr;
}

.feature-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2B2B2B;
}

.feature-content p {
    color: #6B6B6B;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #6B6B6B;
    font-size: 16px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: 800;
    font-size: 20px;
}

.feature-image {
    background: linear-gradient(135deg, #FAF3E0 0%, #F4E9D8 100%);
    border-radius: 25px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B6B6B;
    font-size: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #FAF3E0 0%, #F4E9D8 100%);
    padding: 100px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured {
    border: 3px solid #FF6B35;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2B2B2B;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 10px;
}

.pricing-period {
    color: #6B6B6B;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #6B6B6B;
    border-bottom: 1px solid #F4E9D8;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #FAF3E0;
    padding: 35px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    color: #6B6B6B;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    color: #2B2B2B;
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: #6B6B6B;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: #FF6B35;
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #2B2B2B;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: #FF6B35;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-about p {
    color: #B0B0B0;
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #B0B0B0;
    font-size: 15px;
}

.footer-bottom a {
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.95;
}

.footer-bottom a:hover {
    opacity: 1;
}
/* Responsive */
@media (max-width: 968px) {

    .hero-container,
    .feature-row,
    .pricing-cards,
    .testimonial-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .steps-container,
    .stats-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .nav-links {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}
/* BLOG HERO */
.blog-hero {
    background: linear-gradient(135deg, #FAF3E0 0%, #F4E9D8 100%);
    padding: 80px 20px;
    text-align: center;
}

.blog-hero-inner h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2B2B2B;
}

.blog-hero-inner p {
    font-size: 18px;
    color: #6B6B6B;
    margin-top: 10px;
}

/* BLOG GRID */
.blog-grid-section {
    padding: 60px 20px;
    background: #ffffff;
}

.blog-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: .3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(255, 107, 53, 0.25);
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    color: #666;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    font-size: 13px;
    color: #6B6B6B;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: #2B2B2B;
    text-decoration: none;
}

.blog-card-excerpt {
    font-size: 15px;
    color: #6B6B6B;
    margin-bottom: 20px;
}

.blog-card-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
}

/* PAGINATION */
.blog-pagination {
    text-align: center;
    margin-top: 40px;
}

/* SINGLE POST */
.single-hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.single-hero-content {
    text-align: center;
    padding: 40px 20px;
}

.single-hero-content h1 {
    font-size: 50px;
}

.single-meta {
    color: #777;
    margin-top: 10px;
}

/* SINGLE POST REFINED */
.single-content-section {
    padding: 80px 20px;
    background: #fff;
}

.single-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.single-body {
    font-size: 19px;
    line-height: 1.85;
    color: #2B2B2B;
    margin-bottom: 50px;
}

.single-body p {
    margin-bottom: 25px;
}

.single-body h2,
.single-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
}

.single-hero-image img {
    width: 100%;
    height: 420px;
    border-radius: 15px;
    object-fit: cover;
}

.single-meta {
    color: #6B6B6B;
    margin-top: 12px;
    font-size: 15px;
}

.single-author-box {
    background: #FAF3E0;
    padding: 25px;
    border-radius: 18px;
    margin-top: 50px;
}

/* AUTHOR BOX */
.single-author-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #FAF3E0;
    padding: 20px;
    border-radius: 15px;
}

.single-author-box .author-avatar img {
    border-radius: 50%;
}

.single-author-box .author-info h3 {
    margin: 0;
}

/* RELATED POSTS */
.related-posts {
    margin-top: 60px;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.related-card h3 {
    font-size: 18px;
    margin-top: 10px;
}
/* =====================================
   HOME BLOG SECTION
   Temas Espirituales V1-2026
===================================== */

.home-blog-section {
    padding: 80px 20px;
    background: #ffffff;
}

.home-blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-blog-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2B2B2B;
}

.home-blog-header p {
    font-size: 18px;
    margin-top: 10px;
    color: #6B6B6B;
}

/* Blog grid */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.home-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.20);
}

.home-blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.home-blog-placeholder {
    background: #eee;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Blog content */
.home-blog-content {
    padding: 25px;
}

.home-blog-meta {
    font-size: 13px;
    color: #6B6B6B;
    margin-bottom: 8px;
}

.home-blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-blog-title a {
    text-decoration: none;
    color: #2B2B2B;
}

.home-blog-excerpt {
    font-size: 15px;
    color: #6B6B6B;
    margin-bottom: 20px;
}

/* Buttons */
.home-blog-button {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #FF6B35 0%, #C9184A 100%);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
}

.home-blog-view-all {
    text-align: center;
    margin-top: 40px;
}

.home-blog-view-all-btn {
    padding: 12px 30px;
    background: #2B2B2B;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background .3s ease;
}

.home-blog-view-all-btn:hover {
    background: #000;
}

/* Responsive */
@media(max-width: 900px) {
    .home-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .home-blog-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================
   HOME BLOG WRAPPER & FEATURED POST
===================================== */

.home-blog-wrapper {
    padding: 80px 20px 60px;
    background: #ffffff;
}

.home-blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Featured post */
.featured-post-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: #666;
}

.featured-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-title {
    font-size: 32px;
    font-weight: 800;
    margin: 15px 0;
}

.featured-post-title a {
    text-decoration: none;
    color: #2B2B2B;
}

.featured-post-meta {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 15px;
}

.featured-post-excerpt {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.featured-post-btn {
    display: inline-block;
    margin-top: 10px;
}

/* Category badges */
.post-category-badges {
    margin-bottom: 10px;
}

.category-badge {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 999px;
    background: #FAF3E0;
    color: #C9184A;
    margin-right: 6px;
    margin-bottom: 4px;
}

/* Tarot special styling */
.category-tarot {
    background: linear-gradient(135deg, #3b0f65, #c9184a);
    color: #fff;
}

/* Audio badge */
.audio-badge {
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(255, 107, 53, 0.12);
    color: #C9184A;
}

/* Top row: title + filters */
.home-blog-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    gap: 20px;
}

.home-blog-top-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #2B2B2B;
}

.home-blog-top-text p {
    font-size: 15px;
    color: #6B6B6B;
    margin-top: 6px;
}

.home-blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.filter-pill {
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #F4E9D8;
    color: #555;
    text-decoration: none;
    transition: all .2s ease;
}

.filter-pill:hover {
    background: #FF6B35;
    color: #fff;
}

.filter-pill-all {
    background: #2B2B2B;
    color: #fff;
}

/* Latest posts grid on home */
/* Modern Grid for Homepage Posts */


.home-blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: .3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .6s forwards;
}

.home-blog-card:nth-child(2) {
    animation-delay: .1s;
}

.home-blog-card:nth-child(3) {
    animation-delay: .2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-blog-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(255, 107, 53, 0.25);
}

.home-blog-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.home-blog-placeholder {
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
    color: #666;
}

.home-blog-content {
    padding: 20px 22px 24px;
}

.home-blog-meta {
    font-size: 13px;
    color: #7a7a7a;
    margin-bottom: 6px;
}

.home-blog-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.home-blog-title a {
    color: #2B2B2B;
    text-decoration: none;
}

.home-blog-excerpt {
    font-size: 14px;
    color: #6B6B6B;
    margin-bottom: 16px;
}

.home-blog-button {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF6B35, #C9184A);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

/* Popular posts section / carousel */
.home-popular-section {
    padding: 80px 30px 90px;
    background: linear-gradient(135deg, #FAF3E0, #F4E9D8);
    position: relative;
    overflow: hidden;
}

.home-popular-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-popular-header {
    text-align: center;
    margin-bottom: 30px;
}

.home-popular-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #2B2B2B;
}

.home-popular-header p {
    font-size: 15px;
    color: #6B6B6B;
    margin-top: 6px;
}

/* Horizontal "carousel" */
/* Popular posts section — new modern grid (NO SCROLLBAR) */
/* ============================================
   POPULAR POSTS — HORIZONTAL SWIPE CAROUSEL
============================================ */

.popular-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 5px 30px;
    scrollbar-width: none;
}

.popular-carousel::-webkit-scrollbar {
    display: none;
}

.popular-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(255, 107, 53, 0.25);
}

.popular-image-link img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.popular-image-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddd;
    color: #666;
}

.popular-card-body {
    padding: 18px 18px 20px;
}

.popular-card-title {
    font-size: 18px;
    margin: 8px 0;
}

.popular-card-title a {
    color: #2B2B2B;
    text-decoration: none;
}

.popular-card-meta {
    font-size: 13px;
    color: #777;
}

/* Scroll animation base */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .featured-post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .home-blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-blog-top-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-post-card {
        border-radius: 18px;
    }

    .featured-post-content {
        padding: 20px;
    }

    .featured-post-title {
        font-size: 26px;
    }
}


/* ============================
   CAROUSEL ARROWS
============================ */

.carousel-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    background: #ffffffee;
    border-radius: 999px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: all .3s ease;
}

.carousel-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.06);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    fill: #C9184A;
}

.carousel-arrow-left {
    left: 30px;
}

.carousel-arrow-right {
    right: 30px;
}

/* Hide arrows on small screens */
@media (max-width: 768px) {
    .carousel-arrow {
        display: none;
    }
}




/* ============================
   CAROUSEL PROGRESS DOTS
============================ */

.popular-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.popular-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #e2d0b7;
    opacity: 0.7;
    transition: all .25s ease;
    cursor: pointer;
}

.popular-dot.is-active {
    width: 22px;
    background: #C9184A;
    opacity: 1;
}


/* =====================================
   SPECIAL TAROT CATEGORY COLOR SYSTEM
===================================== */

/* Tarot Badge (categories with slug "tarot") */
.category-tarot {
    background: linear-gradient(135deg, #4A148C, #880E4F);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.25);
}

/* Cards with Tarot category get a mystic border */
.home-blog-card.tarot-highlight,
.featured-post-card.tarot-highlight,
.popular-card.tarot-highlight {
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 10px 35px rgba(138, 43, 226, 0.25);
}

/* On hover */
.home-blog-card.tarot-highlight:hover,
.popular-card.tarot-highlight:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(138, 43, 226, 0.4) !important;
}

/* Tarot featured post gradient overlay */
.featured-post-card.tarot-highlight .featured-post-title a {
    background: linear-gradient(135deg, #6A1B9A 0%, #AD1457 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tarot category background for sidebar elements */
.sidebar-tarot-widget {
    background: linear-gradient(135deg, #6A1B9A33, #AD145733);
    padding: 24px;
    border-radius: 18px;
    margin-bottom: 22px;
}


.page-hero-container h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #2B2B2B;
}

/* PAGE LAYOUT */
.page-layout {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}







/* Tarot widget uses the special style already declared */



.page-hero-container h1 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #2B2B2B;
}










/* LINKS */
.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    text-decoration: none;
    color: #2B2B2B;
    font-weight: 500;
}

.sidebar-links a:hover {
    color: #FF6B35;
}

/* BUTTONS */
.sidebar-button {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 25px;
    background: linear-gradient(135deg, #FF6B35, #C9184A);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.sidebar-button:hover {
    opacity: .85;
}

/* TAROT SIDEBAR */
.sidebar-tarot {
    background: linear-gradient(135deg, rgba(106, 27, 154, .15), rgba(173, 20, 87, .15));
}

.tarot-button {
    background: linear-gradient(135deg, #6A1B9A, #AD1457);
}



  /* PAGE HERO */
.page-hero-section {
    padding: 80px 20px 50px;
    background: linear-gradient(135deg, #FAF3E0, #F4E9D8);
}

.page-hero-container h1 {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    color: #2B2B2B;
}

/* PAGE GRID */
.page-wrapper {
    padding: 40px 20px;
}

.page-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* MAIN CONTENT CARD */
.page-content-card {
    background: #fff;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    font-size: 18px;
    line-height: 1.8;
}



.sidebar-widget {
    background: #fff;
    padding: 24px 28px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* LINKS */
.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    text-decoration: none;
    color: #2B2B2B;
    font-weight: 500;
}

.sidebar-links a:hover {
    color: #FF6B35;
}

/* BUTTONS */
.sidebar-button {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 25px;
    background: linear-gradient(135deg, #FF6B35, #C9184A);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.sidebar-button:hover {
    opacity: .85;
}

/* TAROT SIDEBAR */
.sidebar-tarot {
    background: linear-gradient(135deg, rgba(106, 27, 154, .15), rgba(173, 20, 87, .15));
}

.tarot-button {
    background: linear-gradient(135deg, #6A1B9A, #AD1457);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .page-grid {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }
}