/* CSS VARIABLES & BASICS - Avoid Redeclaring Root Vars */

/* FADE IN ANIMATION */
.fading-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* BLOG LIST STYLES */
.blog-header {
    text-align: center;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-header p {
    color: #666;
    font-size: 1.1rem;
}

/* CATEGORY PILLS */
.cat-pill {
    padding: 8px 20px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.cat-pill:hover {
    border-color: #333;
    color: #333;
}

.cat-pill.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    color: inherit;
    border: 1px solid #eee;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 25px;
}

.card-date {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    line-height: 1.3;
    color: #222;
}

.blog-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

/* SINGLE ARTICLE STYLES */
.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #000;
}

/* RESERVED IMAGE SPACE - Google Discover Optimized */
.featured-image-container {
    width: 100%;
    position: relative;
    padding-bottom: 52.5%;
    /* ~1.91:1 Aspect Ratio (Google Discover recommended: 1200x630px) */
    background: #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-container {
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
}

/* article-main: constrain reading width, prevent grid blowout */
.article-main {
    min-width: 0;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.meta-badges {
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.author-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #333;
}

.read-time {
    display: block;
    font-size: 0.85rem;
    color: #888;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    font-family: 'Georgia', serif;
    text-align: left;
}

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

/* ── Liens dans le corps de l'article ── */
/* Tout lien dans un paragraphe, li, blockquote du contenu est rendu cliquable */
.article-body a,
.article-body p a,
.article-body li a,
.article-body blockquote a,
.article-body h2 a,
.article-body h3 a {
    color: var(--accent, #3898ec);
    text-decoration: underline;
    text-decoration-color: rgba(56, 152, 236, 0.4);
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    font-weight: 500;
    transition: color 0.2s, text-decoration-color 0.2s, background 0.15s;
    border-radius: 2px;
    padding: 0 1px;
}

.article-body a:hover,
.article-body p a:hover,
.article-body li a:hover,
.article-body blockquote a:hover {
    color: #1a6fb5;
    text-decoration-color: #1a6fb5;
    background: rgba(56, 152, 236, 0.07);
}

.article-body a:visited,
.article-body p a:visited {
    color: #7c5cbf;  /* violet discret pour liens visités */
    text-decoration-color: rgba(124, 92, 191, 0.4);
}

/* ── Exclusions : blocs fonctionnels dans le corps d'article ──────────────── */
/* La règle .article-body a ne doit PAS affecter les boutons CTA.              */

.article-body .wa-cta-block a,
.article-body .wa-cta-block a:hover,
.article-body .wa-cta-block a:visited,
.article-body .further-reading a,
.article-body .related-prayers a,
.article-body .attachment a {
    text-decoration: none !important;
}

/* ── Boutons CTA — design pill arrondi premium ─────────────────────────────── */

.article-body .wa-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 13px 22px !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    border: none !important;
    font-family: 'Inter Tight', sans-serif !important;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s !important;
    letter-spacing: 0.01em !important;
}

.article-body .wa-cta-btn:hover {
    transform: translateY(-2px) !important;
}

/* Bouton principal WhatsApp */
.article-body .wa-cta-btn.wa-cta-primary,
.article-body .wa-cta-btn.wa-cta-primary:visited {
    background: linear-gradient(135deg, #25d366 0%, #1db954 50%, #128c5e 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45) !important;
}

.article-body .wa-cta-btn.wa-cta-primary:hover {
    background: linear-gradient(135deg, #2ddf70 0%, #22c05e 50%, #15a36e 100%) !important;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6) !important;
    color: #fff !important;
}

/* Bouton secondaire Facebook */
.article-body .wa-cta-btn.wa-cta-secondary,
.article-body .wa-cta-btn.wa-cta-secondary:visited {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
}

.article-body .wa-cta-btn.wa-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* SVGs dans les boutons */
.article-body .wa-cta-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    fill: #fff !important;
}

/* Icône WA principale — fond vert cercle */
.article-body .wa-cta-icon {
    background: linear-gradient(135deg, #25d366, #128c5e) !important;
}

/* suppress duplicate H1 that content field may contain */
.article-body > h1:first-child { display: none; }

.article-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-family: 'Inter', sans-serif;
}

/* ── Article body raw tables ─────────────────────────── */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.93rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.article-body table thead tr {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
}
.article-body table th {
    padding: 13px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.article-body table td {
    padding: 12px 18px;
    color: #334155;
    border-bottom: 1px solid #f0f4f8;
    line-height: 1.6;
    vertical-align: top;
}
.article-body table tbody tr:nth-child(even) td { background: #f8fafc; }
.article-body table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
    .article-body table { font-size: 0.82rem; }
    .article-body table th,
    .article-body table td { padding: 9px 11px; }
}

.article-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 15px 25px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
    font-size: 1.25rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
}

.article-body figcaption {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 20px;
    font-style: italic;
}

.article-body .embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 30px 0;
    border-radius: 8px;
}

.article-body .embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bible-ref {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent);
    cursor: pointer;
    position: relative;
    font-weight: 500;
    transition: all 0.2s;
}

.bible-ref:hover {
    background-color: #e3f2fd;
    color: var(--accent-hover);
    border-bottom-style: solid;
}

/* BREADCRUMB */
.breadcrumb-nav {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumb-nav a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.breadcrumb-nav span {
    margin: 0 5px;
    color: #bbb;
}

.breadcrumb-nav .current {
    color: #222;
    font-weight: 600;
}

/* TAGS SECTION */
.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

.article-tags strong {
    margin-right: 10px;
    color: #555;
}

.tag-pill {
    display: inline-block;
    background: #f1f3f5;
    color: #555;
    padding: 4px 10px;
    border-radius: 15px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* COMMENTS STYLE */
.comments-section {
    max-width: 740px;
    margin: 60px auto;
    text-align: left;
    /* Fix: Override parent text-align: center */
}

.comments-section h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comment-form {
    margin-bottom: 40px;
}

.comment-box textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 100px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 10px;
}

.comment-box textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-prompt {
    background: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.login-prompt a {
    color: var(--accent);
    font-weight: bold;
    text-decoration: none;
}

.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
}

.comment-avatar.small {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
}

.comment-body {
    flex: 1;
}

/* TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.comment-meta {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.comment-author {
    font-weight: bold;
    margin-right: 10px;
}

.comment-date {
    color: #888;
    font-size: 0.8rem;
}

.reply-btn {
    background: #e3f2fd;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.reply-btn:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
}

.comment-text {
    color: #333;
    line-height: 1.5;
}

.replies-list {
    margin-top: 15px;
    border-left: 2px solid #eee;
    padding-left: 15px;
}

.reply-item {
    margin-bottom: 15px;
}

/* New EditorJS Plugins Support */
.article-body .editor-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-body .editor-table td,
.article-body .editor-table th {
    border: 1px solid #ddd;
    padding: 10px;
}

.article-body .editor-table th {
    background: #f9f9f9;
    font-weight: 600;
}

.article-body .checklist {
    list-style: none;
    padding-left: 0;
}

.article-body .checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.article-body .checklist li.checked {
    text-decoration: line-through;
    color: #999;
}

.article-body .warning-box {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 8px;
    color: #856404;
    margin: 20px 0;
}

.article-body pre {
    background: #2d2d2d;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
    font-family: monospace;
}

.article-body code {
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.article-body .attachment {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.article-body .attachment a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-body .attachment a:hover {
    text-decoration: underline;
}

/* EditorJS Image Variants */
.article-body figure.with-border img {
    border: 1px solid #e8e8eb;
    padding: 10px;
}

.article-body figure.with-background {
    background: #eff2f5;
    padding: 10px;
}

.article-body figure.stretched img {
    width: 100%;
}

.article-body figure.stretched {
    width: 100%;
    margin: 20px 0;
}

/* EditorJS Quote Alignment */
.article-body blockquote.align-center {
    text-align: center;
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* SHARING GRID */
.share-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    max-width: 600px;
    margin: 20px auto;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
    background: #f8f9fa;
    color: #555;
    border: 1px solid transparent;
}

.share-btn svg {
    margin-bottom: 5px;
    opacity: 0.8;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Brand Colors */
.share-btn.whatsapp:hover {
    background: #e8f5e9;
    color: #128c7e;
    border-color: #128c7e;
}

.share-btn.telegram:hover {
    background: #e3f2fd;
    color: #0088cc;
    border-color: #0088cc;
}

.share-btn.email:hover {
    background: #fff3e0;
    color: #e65100;
    border-color: #e65100;
}

.share-btn.copy:hover {
    background: #eceff1;
    color: #37474f;
    border-color: #37474f;
}

.share-btn.facebook:hover {
    background: #e7f0ff;
    color: #1877f2;
    border-color: #1877f2;
}

.share-btn.instagram:hover {
    background: #fae6f0;
    color: #c13584;
    border-color: #c13584;
}

/* CODE BLOCK RESTYLING */
.article-body pre {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-body code {
    font-family: inherit;
    background: transparent;
    padding: 0;
    color: inherit;
    border-radius: 0;
}

/* Inline code not in pre */
.article-body p>code,
.article-body li>code {
    background: #f0f0f0;
    color: #e83e8c;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* REACTIONS / STICKERS */
.reactions-container {
    margin-bottom: 30px;
    text-align: center;
}

.sticker-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.sticker-btn {
    background: #fff;
    border: 1px solid #eee;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sticker-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    border-color: #ddd;
}

.sticker-btn.pop-active {
    transform: scale(0.9);
}

.sticker-icon {
    font-size: 1.2rem;
}

.sticker-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.sticker-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #777;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .featured-image-container {
        border-radius: 10px;
    }

    .card-img {
        height: 180px;
    }

    .share-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════
   FURTHER READING BLOCK
   ═══════════════════════════════════════════════════════════ */

.further-reading,
.related-prayers {
    margin-top: 2.5rem;
    border-radius: 14px;
    padding: 22px 24px;
}

/* Further Reading — blue accent */
.further-reading {
    background: linear-gradient(135deg, #f8faff 0%, #eff6ff 100%);
    border: 1.5px solid #dbeafe;
    border-left: 4px solid var(--accent, #3898ec);
}

/* Related Prayers — warm gold accent */
.related-prayers {
    background: linear-gradient(135deg, #fffdf7 0%, #fef9ec 100%);
    border: 1.5px solid #fde68a;
    border-left: 4px solid #d4a373;
}

.further-reading h3,
.related-prayers h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.further-reading h3 { color: var(--accent, #3898ec); }
.related-prayers h3 { color: #b07d3a; }

.further-reading h3::before,
.related-prayers h3::before {
    content: '';
    display: inline-block;
    width: 16px; height: 2px;
    border-radius: 2px;
}
.further-reading h3::before { background: var(--accent, #3898ec); }
.related-prayers h3::before { background: #d4a373; }

.further-reading ul,
.related-prayers ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.further-reading ul li,
.related-prayers ul li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}
.further-reading ul li::before {
    content: '→';
    color: var(--accent, #3898ec);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 0.85rem;
}
.related-prayers ul li::before {
    content: '🙏';
    flex-shrink: 0;
    margin-top: 0;
    font-size: 0.78rem;
    line-height: 1.6;
}

.further-reading ul li a,
.further-reading ul li a[style],
.related-prayers ul li a,
.related-prayers ul li a[style] {
    text-decoration: none !important;
    font-size: 0.92rem;
    font-weight: 600;
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
    line-height: 1.45;
}

.further-reading ul li a,
.further-reading ul li a[style] {
    color: #1e40af !important;
    border-bottom: 1.5px solid rgba(30, 64, 175, 0.25);
}
.further-reading ul li a:hover {
    color: var(--accent, #3898ec) !important;
    border-bottom-color: var(--accent, #3898ec);
}

.related-prayers ul li a,
.related-prayers ul li a[style] {
    color: #92400e !important;
    border-bottom: 1.5px solid rgba(212, 163, 115, 0.4);
}
.related-prayers ul li a:hover {
    color: #b07d3a !important;
    border-bottom-color: #d4a373;
}

@media (max-width: 600px) {
    .further-reading,
    .related-prayers { padding: 18px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP CTA BLOCK
   ═══════════════════════════════════════════════════════════ */

/* WhatsApp CTA — charte VerseOfTheDay
   Fond sable/doré chaud, accent bleu #3898ec, typographie Inter Tight */
.wa-cta-block {
    position: relative;
    margin: 2.5rem 0;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
    box-shadow: 0 10px 48px rgba(56, 152, 236, 0.22);
    border: 1px solid rgba(56, 152, 236, 0.18);
}

/* Orbe lumineux accent */
.wa-cta-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(56,152,236,0.18) 0%, transparent 65%);
    pointer-events: none;
}
/* Second orbe bas-gauche doré */
.wa-cta-block::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212,163,115,0.14) 0%, transparent 65%);
    pointer-events: none;
}

.wa-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 30px 34px;
}

/* Icône WhatsApp dans un carré avec couleurs WhatsApp */
.wa-cta-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c5e);
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.wa-cta-icon svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Titre — serif élégant comme les titres articles */
.wa-cta-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
    font-family: 'Inter Tight', sans-serif;
    letter-spacing: -0.01em;
}

.wa-cta-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.72);
    margin: 0 0 14px;
    line-height: 1.55;
}

/* Masquer le CTA box "Want to grow deeper" injecté à l'intérieur */
.wa-cta-text > div[style*="667eea"] {
    display: none !important;
}

/* Badges */
.wa-cta-badges {
    display: flex;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.wa-cta-badges li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
}
.wa-cta-badges li svg {
    width: 13px;
    height: 13px;
    fill: #d4a373;  /* doré charte */
    flex-shrink: 0;
}

/* Boutons */
.wa-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.wa-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
    font-family: 'Inter Tight', sans-serif;
}
.wa-cta-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.wa-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Bouton principal — accent bleu site */
.wa-cta-primary {
    background: linear-gradient(135deg, #25d366, #128c5e);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.wa-cta-primary svg { fill: #fff; }
.wa-cta-primary:hover {
    background: linear-gradient(135deg, #2ddf70, #15a36e);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    transform: translateY(-1px);
}

/* Bouton secondaire — ghost sobre */
.wa-cta-secondary {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.18);
}
.wa-cta-secondary svg { fill: none; stroke: rgba(255,255,255,0.85); }
.wa-cta-secondary:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

@media (max-width: 768px) {
    .wa-cta-inner {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        padding: 22px 20px;
        gap: 16px;
    }
    .wa-cta-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .wa-cta-btn { flex: 1; justify-content: center; min-width: 130px; }
}

@media (max-width: 480px) {
    .wa-cta-inner { grid-template-columns: 1fr; }
    .wa-cta-icon { display: none; }
    .wa-cta-badges { gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE PAGE — TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════ */

/* Reading Progress Bar */
#art-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Source credit (YouTube origin) */
.source-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 10px;
    flex-wrap: wrap;
}
.source-credit a { color: #667eea; text-decoration: none; font-weight: 500; }
.source-credit a:hover { text-decoration: underline; }

/* Video embed */
.article-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin: 0 0 36px;
    background: #000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.article-video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    border-radius: 16px;
}

/* Two-column layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}


/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 88px; /* below fixed nav */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sidebar-widget-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Sidebar search widget ─────────────────────────────────────────── */
.sidebar-search-widget { padding: 18px 20px; }

.sidebar-search-form { margin: 0; }

.sidebar-search-field {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.sidebar-search-field:focus-within {
    border-color: #d4a373;
    box-shadow: 0 2px 12px rgba(212,163,115,0.18);
    background: #fff;
}

/* leading icon */
.sidebar-srch-icon {
    padding: 0 10px 0 13px;
    font-size: 1.05rem;
    color: #b0bec5;
    flex-shrink: 0;
    pointer-events: none;
    transition: color 0.2s;
}
.sidebar-search-field:focus-within .sidebar-srch-icon { color: #d4a373; }

/* input */
.sidebar-srch-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.93rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    padding: 11px 4px 11px 0;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
}
.sidebar-srch-input::placeholder { color: #b0bec5; font-size: 0.9rem; }
.sidebar-srch-input::-webkit-search-cancel-button { display: none; }

/* submit button */
.sidebar-srch-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    border-left: 1.5px solid #e2e8f0;
    color: #94a3b8;
    padding: 10px 13px;
    cursor: pointer;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    height: 100%;
}
.sidebar-srch-btn:hover {
    color: #d4a373;
    background: rgba(212,163,115,0.08);
}
.sidebar-search-field:focus-within .sidebar-srch-btn {
    border-left-color: #e9d8c7;
    color: #d4a373;
}

/* ToC */
#toc-nav { display: flex; flex-direction: column; gap: 4px; }
#toc-nav a {
    font-size: 0.88rem;
    color: #475569;
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 8px;
    line-height: 1.4;
    transition: background 0.15s, color 0.15s;
    border-left: 2px solid transparent;
}
#toc-nav a:hover,
#toc-nav a.active {
    background: #f1f5ff;
    color: #667eea;
    border-left-color: #667eea;
}

/* Sidebar share buttons */
.sidebar-share-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sshare-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s, transform 0.15s;
    width: 100%;
    text-align: left;
}
.sshare-btn:hover { opacity: 0.88; transform: translateX(2px); }
.sshare-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.sshare-wa    { background: #dcfce7; color: #15803d; }
.sshare-fb    { background: #eff6ff; color: #1d4ed8; }
.sshare-tg    { background: #e0f2fe; color: #0369a1; }
.sshare-email { background: #fef9c3; color: #92400e; }
.sshare-copy  { background: #f1f5f9; color: #475569; }

/* Sidebar related articles */
.sidebar-related-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-related-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: flex-start;
    transition: opacity 0.15s;
}
.sidebar-related-item:hover { opacity: 0.8; }
.sidebar-related-thumb {
    width: 64px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}
.sidebar-related-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.sidebar-related-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sidebar-related-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Comments section (inside article-main) */
.comments-section {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}
.comments-section h3 {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    animation: cmtFadeIn 0.4s ease-out;
}
.comment-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.comment-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.comment-avatar {
    width: 45px; height: 45px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.comment-avatar.purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.comment-avatar.blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.comment-avatar.green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.comment-avatar.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.comment-avatar.pink   { background: linear-gradient(135deg, #ec4899, #db2777); }
.comment-avatar.red    { background: linear-gradient(135deg, #ef4444, #dc2626); }
.comment-avatar.small  { width: 35px; height: 35px; font-size: 0.9rem; }
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.comment-author { font-weight: 600; color: #1e293b; font-size: 0.95rem; }
.comment-date  { font-size: 0.8rem; color: #94a3b8; }
.comment-text  { color: #475569; line-height: 1.6; font-size: 0.95rem; margin-bottom: 8px; white-space: pre-wrap; }
.reply-btn {
    background: none; border: none; color: #64748b;
    font-size: 0.8rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 4px;
    padding: 4px 8px; border-radius: 6px; transition: all 0.2s;
    margin-left: auto;
}
.reply-btn:hover { color: #3b82f6; background: #eff6ff; }
.reply-btn svg { width: 14px; height: 14px; }
.children-comments { margin-top: 15px; padding-left: 0; }
.nested { margin-left: 20px; padding-left: 20px; border-left: 2px solid #e2e8f0; }
.reply-form {
    background: #f8fafc; padding: 15px; border-radius: 12px;
    margin-top: 10px; border: 1px solid #e2e8f0;
    animation: cmtSlideDown 0.3s ease-out;
}
.reply-form textarea { border: 1px solid #cbd5e1; background: white; resize: vertical; min-height: 80px; }
.reply-form textarea:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); outline: none; }

@keyframes cmtFadeIn  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes cmtSlideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Comparison table (Biblical vs Eastern meditation, etc.) ───────────── */
.compare-table-wrap {
    margin: 2rem 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
}
.compare-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.compare-col-head {
    padding: 18px 24px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.compare-col-head.biblical {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #fff;
}
.compare-col-head.eastern {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: #fff;
}
.compare-col-head .col-icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.compare-table-body { display: flex; flex-direction: column; }
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #f0f4f8;
}
.compare-row:nth-child(even) .compare-cell { background: #f8fafc; }
.compare-row:nth-child(odd)  .compare-cell { background: #fff; }
.compare-cell {
    padding: 16px 22px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    position: relative;
}
.compare-cell:first-child {
    border-right: 1px solid #e2e8f0;
    color: #1e293b;
    font-weight: 500;
}
.compare-cell:first-child::before {
    content: '';
    position: absolute;
    left: 0; top: 16px; bottom: 16px;
    width: 3px;
    background: #6366f1;
    border-radius: 0 3px 3px 0;
}
.compare-cell:last-child::before {
    content: '';
    position: absolute;
    left: 0; top: 16px; bottom: 16px;
    width: 3px;
    background: #94a3b8;
    border-radius: 0 3px 3px 0;
}
@media (max-width: 640px) {
    .compare-table-header { grid-template-columns: 1fr 1fr; }
    .compare-col-head { padding: 12px 14px; font-size: 0.85rem; }
    .compare-cell { padding: 12px 14px; font-size: 0.88rem; }
}

/* ── Responsive: stack on mobile ─────────────────────────────────────── */
@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    .article-header h1 { font-size: 1.9rem; }
}

/* ── Shared Rich Article Styles (used by CMS article HTML) ─────────────── */
.art-rich { font-family: 'Inter Tight', 'Inter', sans-serif; color: #1a1a1a; line-height: 1.85; font-size: 1.04rem; }
.art-rich h2 { font-size: 1.45rem; font-weight: 800; color: #0f1f3d; margin: 44px 0 16px; padding-left: 16px; border-left: 4px solid var(--primary, #1e4d8c); line-height: 1.25; }
.art-rich h3 { font-size: 1.12rem; font-weight: 700; color: #1e3a5f; margin: 26px 0 10px; }
.art-rich p  { margin-bottom: 20px; }
.art-rich ul, .art-rich ol { margin: 0 0 20px 24px; }
.art-rich li { margin-bottom: 8px; }
.art-rich strong { color: #0f1f3d; }
/* Quick answer box */
.art-answer { background: linear-gradient(135deg,#1e4d8c,#2c6fad); border-radius: 16px; padding: 24px 28px; margin: 32px 0; }
.art-answer .art-label { font-size: 0.78rem; font-weight: 800; color: #b8d4f5; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 8px; }
.art-answer p { margin: 0; font-size: 1.04rem; line-height: 1.75; color: #fff; }
/* Verse block */
.art-verse { background: linear-gradient(135deg,#eef4ff,#f5f9ff); border-left: 5px solid #1e4d8c; border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 26px 0; font-style: italic; color: #1e3a5f; font-size: 1.02rem; }
.art-verse cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 0.85rem; color: #2c6fad; }
.art-verse cite a { color: #2c6fad; }
/* Facts panel */
.art-facts { background: #f4f8ff; border: 1px solid #c8d8f5; border-radius: 16px; padding: 24px 28px; margin: 34px 0; }
.art-facts h3 { margin: 0 0 14px; color: #1e4d8c; font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.art-facts ul { margin: 0; padding: 0; list-style: none; }
.art-facts li { padding: 7px 0; border-bottom: 1px solid #dde8f7; font-size: 0.96rem; }
.art-facts li:last-child { border-bottom: none; }
.art-facts li strong { min-width: 150px; display: inline-block; color: #1e4d8c; }
/* Timeline */
.art-timeline { margin: 32px 0; position: relative; padding-left: 36px; }
.art-timeline::before { content: ''; position: absolute; left: 10px; top: 4px; bottom: 4px; width: 3px; background: linear-gradient(to bottom,#1e4d8c,#7bb3e0); border-radius: 3px; }
.art-tl { position: relative; margin-bottom: 26px; }
.art-tl:last-child { margin-bottom: 0; }
.art-tl-dot { position: absolute; left: -32px; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: #1e4d8c; border: 3px solid #fff; box-shadow: 0 0 0 2px #1e4d8c; }
.art-tl-label { font-size: 0.75rem; font-weight: 800; color: #2c6fad; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.art-tl h3 { margin: 0 0 6px; font-size: 1.04rem; color: #0f1f3d; }
.art-tl p  { margin: 0; font-size: 0.96rem; }
/* Truth/lesson box */
.art-truth { background: #f0f5fb; border: 1px solid #c2d4ef; border-radius: 12px; padding: 18px 22px; margin: 20px 0; }
.art-truth h3 { margin: 0 0 7px; color: #1e4d8c; font-size: 0.97rem; font-weight: 700; }
.art-truth p { margin: 0; }
/* Data table */
.art-table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: 0.9rem; border-radius: 12px; overflow: hidden; border: 1px solid #c8d8f5; }
.art-table thead { background: linear-gradient(135deg,#1e4d8c,#2c6fad); color: #fff; }
.art-table th { padding: 12px 15px; text-align: left; font-weight: 700; font-size: 0.86rem; }
.art-table tbody tr:nth-child(even) { background: #f4f8ff; }
.art-table td { padding: 11px 15px; border-bottom: 1px solid #e4edf8; vertical-align: top; font-size: 0.92rem; }
.art-table tbody tr:last-child td { border-bottom: none; }
.art-table td:first-child { font-weight: 700; color: #1e4d8c; }
/* passage link pill */
.art-link { display: inline-block; background: #1e4d8c; color: #fff !important; border-radius: 20px; padding: 6px 16px; font-size: 0.85rem; font-weight: 700; text-decoration: none !important; margin: 4px 2px; transition: background .2s; }
.art-link:hover { background: #163a6b; }
/* Related articles box */
.art-related { background: linear-gradient(135deg,#f0f5fb,#f8faff); border-radius: 14px; padding: 22px 26px; margin: 36px 0 0; }
.art-related h3 { margin: 0 0 12px; color: #1e4d8c; font-size: 1rem; font-weight: 700; }
.art-related ul { margin: 0 0 14px 18px; padding: 0; }
.art-related li { margin-bottom: 8px; }
.art-related a { color: #1e4d8c; font-weight: 600; text-decoration: none; }
.art-related a:hover { text-decoration: underline; }

/* ── WhatsApp Community CTA Block ──────────────────────────────────────── */
.wa-cta-block { position: relative; margin: 48px 0 16px; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg,#075e54 0%,#128c7e 50%,#25d366 100%); box-shadow: 0 8px 40px rgba(37,211,102,.2); }
.wa-cta-glow { position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle,rgba(37,211,102,.3),transparent 70%); pointer-events: none; }
.wa-cta-inner { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 28px 32px; }
.wa-cta-icon { width: 56px; height: 56px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-cta-icon svg { width: 30px; height: 30px; color: #fff; }
.wa-cta-text { color: #fff; }
.wa-cta-title { font-size: 1.12rem; font-weight: 800; margin: 0 0 6px; color: #fff; border: none !important; padding: 0 !important; }
.wa-cta-desc { font-size: 0.9rem; margin: 0 0 12px; opacity: .9; line-height: 1.55; color: #fff; }
.wa-cta-badges { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.wa-cta-badges li { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,.9); margin: 0; }
.wa-cta-badges li svg { width: 14px; height: 14px; flex-shrink: 0; color: #25d366; background: rgba(255,255,255,.9); border-radius: 50%; padding: 1px; }
.wa-cta-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.wa-cta-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 30px; font-size: .88rem; font-weight: 700; text-decoration: none !important; white-space: nowrap; transition: all .2s; }
.wa-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.wa-cta-primary { background: #fff; color: #075e54 !important; }
.wa-cta-primary:hover { background: #f0fff8; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.wa-cta-secondary { background: rgba(255,255,255,.15); color: #fff !important; border: 1px solid rgba(255,255,255,.3); }
.wa-cta-secondary:hover { background: rgba(255,255,255,.25); }
@media (max-width: 700px) {
    .wa-cta-inner { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
    .wa-cta-actions { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .wa-cta-inner { padding: 20px; gap: 14px; }
    .wa-cta-btn { padding: 9px 14px; font-size: .82rem; }
}