/* css/guia.css */

/* ============================================
   HERO SECTION — Full Height with Background
   ============================================ */
.hero-guia {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('/images/guia-hero-bg.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

/* Dark overlay for text readability */
.hero-guia::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(22, 10, 40, 0.65) 0%,
            rgba(22, 10, 40, 0.5) 60%,
            rgba(22, 10, 40, 0.8) 100%);
    z-index: 1;
}

.hero-guia-container {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
}

.hero-guia .hero-tag {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background-color: rgba(208, 168, 101, 0.15);
    color: var(--clr-primary);
    border: 1px solid rgba(208, 168, 101, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-guia .hero-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-guia .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

/* ============================================
   SEARCH BAR in Hero
   ============================================ */
.hero-search {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.9rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.search-wrapper:focus-within {
    border-color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.18);
}

.search-icon {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    opacity: 0.7;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    caret-color: var(--clr-primary);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(208, 168, 101, 0.7), transparent);
}

/* ============================================
   SECTION LABEL — common reusable style
   ============================================ */
.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
}

/* ============================================
   FEATURED GUIDE SECTION
   ============================================ */
.featured-guide {
    background-color: var(--clr-bg-main);
    padding: 5rem 0;
}

.featured-container {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-card {
    position: relative;
    background: linear-gradient(135deg,
            rgba(47, 27, 65, 0.95) 0%,
            rgba(30, 15, 50, 0.98) 100%);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    border: 1px solid rgba(208, 168, 101, 0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.featured-card-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.featured-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(208, 168, 101, 0.15);
    border: 1px solid rgba(208, 168, 101, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.featured-card-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.featured-card-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-btn {
    display: inline-block;
}

/* Decorative orb inside the card */
.featured-card-decoration {
    position: relative;
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoration-orb {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%,
            rgba(208, 168, 101, 0.3) 0%,
            rgba(208, 168, 101, 0.05) 60%,
            transparent 80%);
    border: 1px solid rgba(208, 168, 101, 0.2);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* ============================================
   CONTENT HUB — Categories
   ============================================ */
.guia-hub-section {
    background-color: var(--clr-bg-secondary);
    padding: 6rem 0;
}

.guia-hub-container {
    max-width: 1000px;
    margin: 0 auto;
}

.guia-category {
    margin-bottom: 4rem;
    background-color: var(--clr-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(47, 27, 65, 0.04);
}

.guia-category:last-child {
    margin-bottom: 0;
}

.category-header {
    margin-bottom: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 2px solid rgba(208, 168, 101, 0.15);
    padding-bottom: 1.25rem;
}

.category-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.category-heading h2 {
    font-size: 1.75rem;
    color: var(--clr-text-main);
    margin: 0 0 0.4rem;
}

.category-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

/* Modern Card Design */
.guia-card {
    background-color: var(--clr-bg-main);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(47, 27, 65, 0.05);
    display: flex;
    align-items: center;
}

.guia-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    border-color: var(--clr-primary);
    background-color: var(--clr-white);
}

.guia-card a {
    font-weight: 500;
    color: var(--clr-text-main);
    width: 100%;
    display: inline-block;
    font-size: 0.95rem;
}

.guia-card:hover a {
    color: var(--clr-primary);
}

.guia-card::before {
    content: "→";
    color: var(--clr-primary);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.guia-card:hover::before {
    opacity: 1;
    transform: translateX(3px);
}

/* Category Footer Link */
.category-footer {
    text-align: right;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
}

.btn-category-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.btn-category-link:hover {
    opacity: 0.75;
}

/* ============================================
   ARTICLE HERO
   ============================================ */
.article-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(22, 10, 40, 0.58) 0%,
            rgba(22, 10, 40, 0.48) 45%,
            rgba(22, 10, 40, 0.72) 100%);
    z-index: 1;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.article-hero .hero-tag {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background-color: rgba(208, 168, 101, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-hero h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.text-center {
    text-align: center;
}

.article-subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .article-hero {
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 3.5rem;
    }

    .article-hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .article-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding-top: 7.5rem;
        padding-bottom: 3rem;
    }
}

/* ============================================
   INTERACTIVE TOOLS SECTION
   ============================================ */
.tools-section {
    background-color: var(--clr-bg-main);
    padding: 6rem 0;
}

.tools-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tools-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tools-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--clr-text-main);
    margin-bottom: 0.75rem;
}

.tools-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.tool-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg,
            rgba(47, 27, 65, 0.04) 0%,
            rgba(208, 168, 101, 0.04) 100%);
    border: 1px solid rgba(47, 27, 65, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(47, 27, 65, 0.0) 0%,
            rgba(208, 168, 101, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(47, 27, 65, 0.1);
    border-color: rgba(208, 168, 101, 0.3);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: block;
}

.tool-card h3 {
    font-size: 1.2rem;
    color: var(--clr-text-main);
    margin-bottom: 0.65rem;
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.tool-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 0.05em;
    transition: letter-spacing 0.2s ease;
}

.tool-card:hover .tool-cta {
    letter-spacing: 0.08em;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.guia-cta {
    background: linear-gradient(135deg,
            rgba(47, 27, 65, 0.97) 0%,
            rgba(30, 10, 50, 0.99) 100%);
    padding: 7rem 0;
    text-align: center;
}

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

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guia-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

.guia-cta p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.guia-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guia-cta-actions .btn {
    min-width: 190px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-guia {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero-guia .hero-title {
        font-size: 2.4rem;
    }

    .hero-guia .hero-subtitle {
        font-size: 1.05rem;
    }

    /* Featured card responsive */
    .featured-card {
        flex-direction: column;
        padding: 2.5rem 2rem;
        text-align: center;
    }

    .featured-card-decoration {
        display: none;
    }

    /* Hub */
    .guia-hub-section {
        padding: 4rem 0;
    }

    .guia-category {
        margin-bottom: 2.5rem;
        padding: 2rem 1.25rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
    }

    .category-footer {
        text-align: center;
    }

    /* Tools */
    .tools-section {
        padding: 4rem 0;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* CTA */
    .guia-cta {
        padding: 5rem 0;
    }

    .guia-cta h2 {
        font-size: 1.9rem;
    }

    .guia-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   TAROT SI O NO WIDGET
   ============================================ */
.tarot-widget-section {
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(180deg, rgba(47, 27, 65, 0.02) 0%, rgba(208, 168, 101, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(47, 27, 65, 0.08);
    max-width: 800px;
    opacity: 1 !important;
    /* Ensure visibility */
}

.tarot-widget-section .tool-kicker {
    display: table;
    margin: 0 auto 1.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(208, 168, 101, 0.12);
    color: var(--clr-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.tarot-card-shell {
    perspective: 1200px;
}

.tarot-card {
    width: 220px;
    height: 380px;
    position: relative;
    cursor: pointer;
}

.tarot-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.tarot-card.is-revealed .tarot-card-inner {
    transform: rotateY(180deg);
}

.tarot-card-face {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    backface-visibility: hidden;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(47, 27, 65, 0.15);
    border: 1px solid rgba(47, 27, 65, 0.1);
}

.tarot-card-back {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #2F1B41 0%, #4a2b66 100%);
}

.card-back-symbol {
    font-size: 3.5rem;
    color: rgba(208, 168, 101, 0.8);
}

.tarot-card-front {
    transform: rotateY(180deg);
    background: var(--clr-white);
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    flex: 1;
    min-height: 0;
    background: #f8f5f0;
}

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

.card-front-content {
    padding: 1rem;
    border-top: 1px solid rgba(47, 27, 65, 0.06);
    text-align: center;
}

.card-arcana {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-primary);
    margin-bottom: 0.25rem;
}

.card-name {
    margin: 0;
    font-size: 1.25rem;
    color: var(--clr-text-main);
}

.card-reading {
    max-width: 500px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(47, 27, 65, 0.08);
    box-shadow: 0 10px 30px rgba(47, 27, 65, 0.05);
}

.reading-result {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.result-yes {
    color: #2e7d32;
}

.result-no {
    color: #c62828;
}

.result-maybe {
    color: #f9a825;
}

.card-meaning {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
}

.reset-btn {
    display: inline-block;
    color: var(--clr-primary);
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .tarot-widget-section {
        padding: 2rem 1.25rem;
        margin: 3rem 0;
    }

    .tarot-card {
        width: 180px;
        height: 310px;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

.tarot-widget-section,
.card-area,
.tarot-card-shell,
.card-reading {
    position: relative;
}

.draw-btn,
.reset-btn {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.tarot-card {
    position: relative;
    z-index: 5;
}

.article-hero::before {
    pointer-events: none;
}

.card-reflection,
.card-next-step {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}

.widget-upgrade-panel,
.widget-final-cta {
    max-width: 560px;
    margin: 1.5rem auto 0;
    padding: 1.75rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(47, 27, 65, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(47, 27, 65, 0.05);
}

.widget-upgrade-panel h3,
.widget-final-cta h3 {
    margin-bottom: 0.75rem;
}

.widget-upgrade-panel p,
.widget-final-cta p {
    margin-bottom: 1.25rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.widget-upgrade-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.draw-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.widget-question-type {
    margin-bottom: 1.5rem;
}

.widget-question-type select {
    margin-top: 0.4rem;
    padding: 0.4rem 0.6rem;
}

/* Shared styles for all Guia articles */

/* Article Hero */
.article-hero {
    min-height: 60vh;
    padding-top: 9rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(22, 10, 40, 0.3) 0%,
            rgba(22, 10, 40, 0.75) 70%,
            rgba(22, 10, 40, 0.9) 100%);
    z-index: 1;
}

.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    text-align: center;
    padding-bottom: 2rem;
}

.article-hero-content .hero-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: rgba(208, 168, 101, 0.15);
    color: var(--clr-primary);
    border: 1px solid rgba(208, 168, 101, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.article-hero-content .article-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb strip */
.breadcrumb-bar {
    background-color: var(--clr-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.breadcrumb-bar .breadcrumb {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    margin: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-bar .breadcrumb a {
    color: var(--clr-text-muted);
}

.breadcrumb-bar .breadcrumb a:hover {
    color: var(--clr-primary);
}

.breadcrumb-sep {
    color: var(--clr-primary);
    opacity: 0.5;
}

/* Article Body */
.article-body {
    background-color: var(--clr-white);
    padding: 5rem 0;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
}

.article-content p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--clr-text-muted);
    margin-bottom: 1.4rem;
}

.article-content p strong {
    color: var(--clr-text-main);
    font-weight: 600;
}

.article-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--clr-text-main);
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(208, 168, 101, 0.2);
}

.article-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: none;
    padding-left: 0;
}

.article-content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-text-muted);
    padding: 0.4rem 0 0.4rem 1.8rem;
    position: relative;
}

.article-content ul li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-size: 0.75rem;
    top: 0.65rem;
}

/* Article Image (inline) */
.article-image {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.article-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Signal Number Titles */
.signal-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--clr-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    margin-right: 0.75rem;
    vertical-align: middle;
    flex-shrink: 0;
}

.signal-title {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.signal-title h2 {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

/* CTA Block */
.article-cta {
    background: linear-gradient(135deg, rgba(208, 168, 101, 0.1) 0%, rgba(212, 65, 142, 0.05) 100%);
    border: 1px solid rgba(208, 168, 101, 0.25);
    border-radius: 16px;
    padding: 3.5rem 3rem;
    margin-top: 5rem;
    text-align: center;
}

.article-cta h3 {
    font-size: 1.8rem;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}

.article-cta p {
    max-width: 540px;
    margin: 0 auto 2rem;
    color: var(--clr-text-muted);
}

.article-cta .btn {
    margin: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .article-hero {
        min-height: 50vh;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .article-hero-content h1 {
        font-size: 1.8rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-cta {
        padding: 2.5rem 1.5rem;
    }
}

.expert-note {
    position: relative;
    margin: 2rem 0;
    padding: 1.35rem 1.35rem 1.2rem;
    background: linear-gradient(135deg, rgba(248, 243, 255, 0.92), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(160, 124, 187, 0.18);
    border-left: 4px solid rgba(122, 79, 148, 0.55);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(44, 24, 67, 0.05);
}

.expert-note-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a4f94;
}

.expert-note-label::before {
    content: "✦";
    font-size: 0.8rem;
    line-height: 1;
}

.expert-note h3 {
    margin: 0 0 0.7rem;
    font-size: 1.08rem;
    line-height: 1.35;
    color: #2d1d3a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.expert-note p {
    margin: 0 0 0.8rem;
    color: #4d3f5c;
    line-height: 1.78;
}

.expert-note p:last-child {
    margin-bottom: 0;
}

.expert-note-soft {
    border-left-color: rgba(122, 79, 148, 0.32);
}