:root {
            --deep-forest: #071a10;
            --forest: #0e2619;
            --pine: #163828;
            --emerald: #2a6343;
            --sage: #5a8f6c;
            --amber: #e8781a;
            --golden: #f5a623;
            --honey: #fbbf24;
            --warm-white: #faf7f2;
            --cream: #f4efe4;
            --snow: #ffffff;
            --stone: #e6e1d5;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --text-muted: #737373;
            --border-subtle: #e0dcd2;
            --border-light: #f0ece4;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
            --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
            --shadow-xl: 0 20px 48px rgba(0,0,0,0.14);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --radius-full: 9999px;
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--warm-white);
            color: var(--text-primary);
            line-height: 1.7;
            display: flex;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* SIDEBAR */
        .sidebar {
            width: 290px;
            background: linear-gradient(170deg, #071a10 0%, #0e2619 40%, #163828 100%);
            color: var(--snow);
            display: flex; flex-direction: column;
            position: fixed; top: 0; left: 0;
            height: 100vh; z-index: 1100;
            box-shadow: 8px 0 40px rgba(0,0,0,0.3);
            transition: transform var(--transition-smooth);
            overflow-y: auto; border-right: 1px solid rgba(255,255,255,0.05);
        }
        .sidebar::-webkit-scrollbar { width: 3px; }
        .sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
        .sidebar-header { padding: 1.8rem 1.4rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
        .logo-wrapper { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
        .logo-icon {
            width: 42px; height: 42px; background: linear-gradient(135deg, var(--amber), var(--golden));
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            color: white; box-shadow: 0 6px 18px rgba(232,120,26,0.4);
        }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; line-height: 1.15; }
        .logo-text span { color: var(--golden); }
        .tagline { font-size: 0.8rem; color: #a8b8a0; font-style: italic; }
        .sidebar-nav { flex: 1; padding: 0.7rem 1rem; display: flex; flex-direction: column; gap: 1px; }
        .nav-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.3); padding: 0.8rem 0.7rem 0.2rem; font-weight: 700; }
        .sidebar-nav a {
            color: #c8d4be; text-decoration: none; padding: 0.65rem 0.8rem;
            border-radius: var(--radius-sm); display: flex; align-items: center; gap: 10px;
            font-weight: 450; font-size: 0.9rem; transition: all var(--transition-fast);
        }
        .sidebar-nav a i { width: 18px; height: 18px; flex-shrink: 0; }
        .sidebar-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; transform: translateX(2px); }
        .sidebar-nav a.active { background: rgba(255,255,255,0.1); color: white; font-weight: 600; box-shadow: inset 3px 0 0 var(--golden); }
        .sidebar-cta { margin: 1rem; padding: 1rem; background: rgba(232,120,26,0.12); border: 1px solid rgba(245,166,35,0.2); border-radius: var(--radius-lg); text-align: center; }
        .sidebar-cta p { font-size: 0.8rem; color: #d8ccb0; margin-bottom: 0.6rem; }
        .cta-btn {
            display: flex; align-items: center; justify-content: center; gap: 6px;
            background: var(--amber); color: white; text-decoration: none;
            padding: 0.7rem 1.2rem; border-radius: var(--radius-full);
            font-weight: 700; font-size: 0.85rem; transition: all var(--transition-bounce);
        }
        .cta-btn:hover { background: #d06e14; transform: translateY(-2px); }
        .sidebar-footer { padding: 1rem 1.4rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.7rem; color: rgba(255,255,255,0.3); text-align: center; }

        /* MAIN */
        .main-content { margin-left: 290px; flex: 1; width: calc(100% - 290px); background: var(--warm-white); transition: margin-left var(--transition-smooth); min-height: 100vh; }
        .mobile-header {
            display: none; position: sticky; top: 0; background: var(--deep-forest);
            color: white; padding: 0.8rem 1.2rem; align-items: center;
            justify-content: space-between; z-index: 1050; box-shadow: var(--shadow-lg);
        }
        .mobile-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
        .mobile-logo span { color: var(--golden); }
        .hamburger-btn { background: none; border: none; color: white; cursor: pointer; padding: 4px; border-radius: 8px; }
        .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1090; backdrop-filter: blur(2px); }
        .sidebar-overlay.active { display: block; }

        .container { max-width: 900px; margin: 0 auto; padding: 1.2rem 1.8rem; }

        /* ARTICLE HEADER */
        .article-header { margin-bottom: 2rem; }
        .breadcrumb-article {
            display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
            font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem;
        }
        .breadcrumb-article a { color: var(--text-muted); text-decoration: none; }
        .breadcrumb-article a:hover { color: var(--amber); }
        .category-badge {
            display: inline-block; background: var(--amber); color: white;
            padding: 5px 16px; border-radius: var(--radius-full);
            font-size: 0.78rem; font-weight: 700; margin-bottom: 0.8rem;
        }
        .article-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 800; color: var(--deep-forest);
            line-height: 1.2; margin-bottom: 0.8rem;
        }
        .article-meta {
            display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
            font-size: 0.88rem; color: var(--text-muted);
            padding-bottom: 1.2rem; border-bottom: 1px solid var(--border-subtle);
        }
        .article-meta span { display: flex; align-items: center; gap: 5px; }
        .author-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--emerald); color: white;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 1rem; flex-shrink: 0;
        }

        /* SOCIAL SHARE FLOATING */
        .social-share-bar {
            display: flex; gap: 10px; margin: 1.5rem 0; flex-wrap: wrap;
        }
        .social-share-btn {
            display: flex; align-items: center; gap: 8px;
            padding: 0.6rem 1.2rem; border-radius: var(--radius-full);
            font-weight: 600; font-size: 0.85rem; cursor: pointer;
            border: none; color: white; transition: all var(--transition-fast);
        }
        .social-share-btn.facebook { background: #1877f2; }
        .social-share-btn.twitter { background: #1da1f2; }
        .social-share-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-share-btn.tiktok { background: #000000; border: 1px solid #333; }
        .social-share-btn.whatsapp { background: #25d366; }
        .social-share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

        /* FEATURED IMAGE */
        .featured-image {
            width: 100%; height: 450px; border-radius: var(--radius-xl);
            background: center/cover no-repeat; margin-bottom: 2rem;
            box-shadow: var(--shadow-lg);
        }
        .featured-image-caption {
            text-align: center; font-size: 0.85rem; color: var(--text-muted);
            font-style: italic; margin-top: 0.5rem;
        }

        /* ARTICLE CONTENT - TYPOGRAPHY */
        .article-content {
            font-size: 1.1rem; line-height: 1.85; color: var(--text-primary);
        }
        .article-content h2 {
            font-family: 'Playfair Display', serif; font-size: 1.8rem;
            font-weight: 700; color: var(--deep-forest);
            margin: 2rem 0 0.8rem; line-height: 1.3;
        }
        .article-content h3 {
            font-family: 'Playfair Display', serif; font-size: 1.4rem;
            font-weight: 600; color: var(--pine);
            margin: 1.5rem 0 0.6rem;
        }
        .article-content p { margin-bottom: 1.2rem; }
        .article-content a { color: var(--amber); text-decoration: underline; font-weight: 500; }
        .article-content ul, .article-content ol {
            margin: 1rem 0; padding-left: 1.5rem;
        }
        .article-content li { margin-bottom: 0.5rem; }
        .article-content strong { color: var(--deep-forest); font-weight: 700; }
        .article-content em { color: var(--text-secondary); }

        /* BLOCKQUOTE */
        .article-content blockquote {
            background: linear-gradient(135deg, #fef9f0, #fff5e8);
            border-left: 5px solid var(--amber);
            padding: 1.5rem 2rem; margin: 2rem 0;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem; font-style: italic;
            color: var(--pine); line-height: 1.6;
            position: relative;
        }
        .article-content blockquote::before {
            content: '"'; position: absolute; top: 10px; left: 15px;
            font-size: 5rem; color: rgba(232,120,26,0.15);
            font-family: 'Playfair Display', serif; line-height: 1;
        }
        .article-content blockquote cite {
            display: block; margin-top: 0.8rem; font-size: 0.9rem;
            font-style: normal; color: var(--text-muted); font-family: 'Inter', sans-serif;
        }

        /* YOUTUBE EMBED */
        .video-embed {
            position: relative; padding-bottom: 56.25%; height: 0;
            margin: 2rem 0; border-radius: var(--radius-lg); overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .video-embed iframe {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            border: none;
        }

        /* INFO BOX */
        .info-box {
            background: #f0f7f2; border: 1px solid #c5e0cc;
            border-radius: var(--radius-lg); padding: 1.5rem;
            margin: 1.5rem 0; display: flex; gap: 1rem; align-items: flex-start;
        }
        .info-box i { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }

        /* TAGS */
        .article-tags {
            display: flex; flex-wrap: wrap; gap: 8px; margin: 2rem 0;
            padding: 1.5rem 0; border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .tag {
            padding: 5px 14px; background: var(--cream);
            border-radius: var(--radius-full); font-size: 0.8rem;
            font-weight: 500; color: var(--text-secondary);
            text-decoration: none; transition: all var(--transition-fast);
        }
        .tag:hover { background: var(--amber); color: white; }

        /* AUTHOR BOX */
        .author-box {
            background: white; border-radius: var(--radius-lg);
            padding: 1.5rem; display: flex; gap: 1.2rem; align-items: center;
            box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
            margin: 2rem 0;
        }
        .author-box-avatar {
            width: 70px; height: 70px; border-radius: 50%;
            background: var(--emerald); color: white;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 1.3rem; flex-shrink: 0;
        }
        .author-box h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--deep-forest); }
        .author-social { display: flex; gap: 8px; margin-top: 0.5rem; }
        .author-social a { color: var(--text-muted); transition: color var(--transition-fast); }
        .author-social a:hover { color: var(--amber); }

        /* COMMENTS */
        .comments-section {
            background: white; border-radius: var(--radius-xl);
            padding: 2rem; box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light); margin: 2rem 0;
        }
        .comments-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem; color: var(--deep-forest); margin-bottom: 1.5rem;
        }
        .comment-form { margin-bottom: 2rem; }
        .comment-form textarea {
            width: 100%; padding: 1rem; border: 2px solid var(--border-subtle);
            border-radius: var(--radius-md); font-family: 'Inter', sans-serif;
            font-size: 0.95rem; resize: vertical; min-height: 100px;
            margin-bottom: 0.8rem;
        }
        .comment-form textarea:focus { border-color: var(--amber); outline: none; }
        .comment-form-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
        .comment-form-row input {
            flex: 1; min-width: 180px; padding: 0.7rem 1rem;
            border: 2px solid var(--border-subtle); border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif; font-size: 0.9rem;
        }
        .comment-form-row input:focus { border-color: var(--amber); outline: none; }
        .submit-comment-btn {
            background: var(--amber); color: white; border: none;
            padding: 0.7rem 1.5rem; border-radius: var(--radius-full);
            font-weight: 700; cursor: pointer; margin-top: 0.8rem;
            transition: all var(--transition-fast);
        }
        .submit-comment-btn:hover { background: #d06e14; }
        .comment-item {
            border: 1px solid var(--border-light); border-radius: var(--radius-md);
            padding: 1.2rem; margin-bottom: 1rem;
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem; }
        .comment-avatar {
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--sage); color: white;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.85rem;
        }
        .comment-reply {
            color: var(--amber); font-weight: 600; cursor: pointer;
            font-size: 0.85rem; margin-top: 0.5rem;
        }

        /* RELATED & ACCOMMODATION */
        .related-section { margin: 2rem 0; }
        .related-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem; color: var(--deep-forest); margin-bottom: 1rem;
        }
        .related-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
        }
        .related-card {
            background: white; border-radius: var(--radius-lg); overflow: hidden;
            box-shadow: var(--shadow-sm); cursor: pointer; transition: all var(--transition-bounce);
            border: 1px solid var(--border-light); display: flex;
        }
        .related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
        .related-card-img {
            width: 130px; min-height: 120px; background: center/cover no-repeat; flex-shrink: 0;
        }
        .related-card-body { padding: 0.9rem 1rem; }
        .related-card-body h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--deep-forest); }

        .accommodation-promo {
            background: linear-gradient(135deg, #fef9f0, #fff5e8);
            border-radius: var(--radius-lg); padding: 1.5rem;
            margin: 2rem 0; display: flex; gap: 1.2rem; align-items: center;
            border: 1px solid #fde8c8;
        }
        .accommodation-promo-img {
            width: 120px; height: 100px; border-radius: var(--radius-md);
            background: center/cover no-repeat; flex-shrink: 0;
        }
        .accommodation-promo h4 { font-family: 'Playfair Display', serif; }
        .accommodation-promo .price { color: var(--amber); font-weight: 700; font-size: 1.1rem; }

        /* FOOTER */
        .footer { background: #05120b; color: #a0b098; padding: 3rem 2rem 1.5rem; margin-top: 3rem; }
        .footer-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
        .footer-col h4 { color: white; font-weight: 700; margin-bottom: 0.8rem; }
        .footer-col a { color: #889a80; text-decoration: none; display: block; margin-bottom: 0.4rem; font-size: 0.86rem; }
        .footer-col a:hover { color: var(--golden); }
        .footer-bot { max-width: 900px; margin: 1.5rem auto 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; font-size: 0.8rem; }

        /* RESPONSIVE */
        @media (max-width: 900px) {
            .sidebar { transform: translateX(-100%); }
            .sidebar.open { transform: translateX(0); }
            .main-content { margin-left: 0; width: 100%; }
            .mobile-header { display: flex; }
            .featured-image { height: 280px; }
            .related-grid { grid-template-columns: 1fr; }
            .article-content { font-size: 1rem; }
            .social-share-bar { gap: 6px; }
            .social-share-btn { padding: 0.5rem 0.9rem; font-size: 0.78rem; }
        }
        @media (max-width: 600px) {
            .container { padding: 0.8rem; }
            .author-box { flex-direction: column; text-align: center; }
            .accommodation-promo { flex-direction: column; text-align: center; }
            .related-card { flex-direction: column; }
            .related-card-img { width: 100%; height: 140px; }
            .footer-inner { grid-template-columns: 1fr; }
        }

/* WordPress dynamic helpers */
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article-content .aligncenter { display:block; margin-left:auto; margin-right:auto; }
.article-content .wp-caption { max-width:100%; color:var(--text-muted); font-size:.9rem; text-align:center; }
.comment-list { list-style:none; padding:0; margin:0; }
.comment-list .children { list-style:none; margin-left:2rem; padding-left:0; }
.comment-awaiting-moderation { color: var(--amber); font-weight:600; }
.comment-reply a { color: var(--amber); text-decoration:none; font-weight:600; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] { flex:1; min-width:180px; padding:.7rem 1rem; border:2px solid var(--border-subtle); border-radius:var(--radius-sm); font-family:'Inter',sans-serif; font-size:.9rem; }
.comment-form input:focus { border-color:var(--amber); outline:none; }
.comment-form .form-submit input { background:var(--amber); color:#fff; border:none; padding:.7rem 1.5rem; border-radius:var(--radius-full); font-weight:700; cursor:pointer; }
.comment-form .form-submit input:hover { background:#d06e14; }
.screen-reader-text { position:absolute !important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }

/* v18 single post polish */
.social-share-bar--single { align-items:center; }
.social-share-bar--single .social-share-btn { border:1px solid rgba(255,255,255,.08); box-shadow:var(--shadow-sm); }
.social-share-bar--single .social-share-btn.viber { background:#7360f2; }
.social-share-bar--single .social-share-btn.copy { background:var(--deep-forest); }
.social-share-bar--single .social-share-btn.whatsapp { background:#25d366; }
.featured-image-wrap { margin:0 0 2rem; }
.featured-image { position:relative; overflow:hidden; margin-bottom:0; }
.featured-image::after { content:""; position:absolute; left:0; right:0; bottom:0; height:42%; background:linear-gradient(to top, rgba(0,0,0,.58), transparent); pointer-events:none; opacity:.9; }
.featured-image-caption { position:absolute; left:1rem; right:1rem; bottom:1rem; z-index:2; display:inline-flex; align-items:center; width:auto; max-width:calc(100% - 2rem); margin:0; padding:.55rem .8rem; border-radius:999px; background:rgba(7,26,16,.72); color:#fff!important; font-size:.84rem; line-height:1.35; text-align:left; backdrop-filter:blur(8px); box-shadow:0 8px 22px rgba(0,0,0,.18); }
.article-content iframe, .article-content embed, .article-content object { max-width:100%; border:0; border-radius:var(--radius-xl); box-shadow:var(--shadow-lg); overflow:hidden; }
.article-content iframe[src*="youtube.com"], .article-content iframe[src*="youtu.be"], .article-content iframe[src*="youtube-nocookie.com"] { width:100%; aspect-ratio:16/9; height:auto; display:block; margin:1.8rem 0; }
.article-content .wp-block-embed, .article-content .wp-block-video, .article-content figure.wp-block-embed { margin:2rem 0; }
.article-content .wp-block-embed__wrapper { position:relative; overflow:hidden; border-radius:var(--radius-xl); box-shadow:var(--shadow-lg); background:#000; }
.article-content .wp-block-embed__wrapper iframe { display:block; width:100%; aspect-ratio:16/9; height:auto; margin:0; border-radius:var(--radius-xl); box-shadow:none; }
.comments-section--post { background:#fff; border:1px solid var(--border-light); border-radius:var(--radius-xl); box-shadow:var(--shadow-sm); padding:1.6rem; margin:2.2rem 0; }
.comments-section--post h3 { margin:0 0 1.1rem; padding-bottom:.8rem; border-bottom:1px solid var(--border-light); }
.comments-section--post .comment-form { background:var(--warm-white); border:1px solid var(--border-subtle); border-radius:var(--radius-lg); padding:1.1rem; margin-bottom:1.2rem; }
.comments-section--post .comment-form p { margin:0 0 .8rem; }
.comments-section--post .comment-form label { display:block; margin:0 0 .35rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; font-size:.72rem; color:var(--text-muted); }
.comments-section--post .comment-form input[type="text"],
.comments-section--post .comment-form input[type="email"],
.comments-section--post .comment-form input[type="url"],
.comments-section--post .comment-form textarea { width:100%; display:block; background:#fff; border:2px solid var(--border-subtle); border-radius:var(--radius-md); padding:.85rem 1rem; font-family:'Inter',sans-serif; font-size:.95rem; transition:all var(--transition-fast); }
.comments-section--post .comment-form input:focus, .comments-section--post .comment-form textarea:focus { outline:none; border-color:var(--amber); box-shadow:0 0 0 4px rgba(232,120,26,.08); }
.comments-section--post .comment-form .comment-form-cookies-consent { display:flex; gap:.55rem; align-items:flex-start; color:var(--text-secondary); font-size:.86rem; }
.comments-section--post .comment-form .comment-form-cookies-consent input { margin-top:.25rem; }
.comments-section--post .comment-form .comment-form-cookies-consent label { text-transform:none; letter-spacing:0; font-weight:500; font-size:.86rem; margin:0; color:var(--text-secondary); }
.comments-section--post .comment-list { display:grid; gap:.85rem; }
.comments-section--post .comment-item { background:#fff; border:1px solid var(--border-light); border-radius:var(--radius-lg); padding:1rem; box-shadow:var(--shadow-sm); }
.comments-section--post .comment-head-text { display:flex; flex-wrap:wrap; gap:.45rem; align-items:center; }
.comments-section--post .comment-date { color:var(--text-muted); font-size:.8rem; }
.footer .footer-grid { max-width:1180px; margin:0 auto; }
@media(max-width:600px){ .featured-image-caption{position:absolute;left:.7rem;right:.7rem;bottom:.7rem;max-width:calc(100% - 1.4rem);font-size:.78rem;border-radius:var(--radius-md)} }

/* v19 single post: global sidebar/footer + cleaner media/comments */
body.single-post .container.sp-single-post-container { max-width: 900px; }
body.single-post .sidebar .logo-wrapper.has-custom-logo,
body.single-post .sidebar .logo-wrapper { justify-content:center; text-align:center; }
body.single-post .sidebar .site-logo-media img { max-width:220px; }
body.single-post .sidebar .sidebar-nav a svg { width:19px; height:19px; }
body.single-post .footer { margin-top:3rem; }

.article-content figure { position:relative; margin:2rem 0; max-width:100%; overflow:hidden; border-radius:var(--radius-xl); }
.article-content figure img { display:block; width:100%; height:auto; border-radius:var(--radius-xl); box-shadow:var(--shadow-md); }
.article-content figure figcaption,
.article-content .wp-caption-text {
    position:absolute; left:1rem; right:1rem; bottom:1rem; z-index:2;
    display:inline-flex; max-width:calc(100% - 2rem); width:auto;
    padding:.55rem .8rem; border-radius:999px;
    background:rgba(7,26,16,.74); color:#fff!important;
    font-size:.84rem; line-height:1.35; text-align:left; font-style:italic;
    backdrop-filter:blur(8px); box-shadow:0 8px 22px rgba(0,0,0,.18);
}
.article-content figure::after { content:""; position:absolute; left:0; right:0; bottom:0; height:36%; background:linear-gradient(to top,rgba(0,0,0,.52),transparent); pointer-events:none; opacity:.9; }
.article-content figure figcaption { pointer-events:none; }
.article-content .wp-caption { width:auto!important; }
.article-content .wp-block-image { display:block; }
.article-content p:empty { display:none; }

.article-content iframe[src*="youtube"],
.article-content iframe[src*="youtu.be"],
.article-content iframe[src*="vimeo"] { width:100%!important; min-height:420px; border-radius:var(--radius-xl); box-shadow:var(--shadow-lg); display:block; }
.article-content .wp-block-embed__wrapper { border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); background:#000; }
.article-content .wp-block-embed__wrapper iframe { box-shadow:none; border-radius:0; margin:0; }

.comments-section--post { background:#fff; border:1px solid var(--border-light); border-radius:var(--radius-xl); box-shadow:var(--shadow-sm); padding:1.7rem; margin:2.2rem 0; }
.comments-section--post h3 { margin:0 0 1.1rem; padding-bottom:.8rem; border-bottom:1px solid var(--border-light); }
.comments-section--post .comment-form { background:transparent!important; border:0!important; box-shadow:none!important; padding:0!important; margin:0 0 1.2rem!important; }
.comments-section--post .comment-form p { margin:0 0 .9rem; }
.comments-section--post .comment-form textarea { min-height:130px; background:#fff; }
.comments-section--post .comment-form .logged-in-as,
.comments-section--post .comment-form .comment-notes,
.comments-section--post .comment-form .required-field-message { display:none!important; }
.comments-section--post .comment-form .form-submit { margin-top:.4rem; }
.comments-section--post .submit-comment-btn { margin-top:.4rem; }
.comments-section--post .comment-list { margin-top:1.2rem; }
.comments-section--post .comment-item { background:#fff; box-shadow:none; border:1px solid var(--border-light); }

@media(max-width:600px){
  .article-content figure figcaption,.article-content .wp-caption-text{left:.7rem;right:.7rem;bottom:.7rem;max-width:calc(100% - 1.4rem);border-radius:var(--radius-md);font-size:.78rem}
  .article-content iframe[src*="youtube"],.article-content iframe[src*="youtu.be"],.article-content iframe[src*="vimeo"]{min-height:220px}
}
