/**
 * 8-single.css — arabdown.net Single Article
 * إعادة كتابة كاملة وفق برومت التصميم.
 *
 * المراجع البصرية:
 *   - Medium       → reading experience + whitespace + minimal headings
 *   - NYT          → byline + article meta احترافي
 *   - BBC Arabic   → عنوان عربي بارز + التسلسل البصري RTL
 *
 * بنية الأب (singular-content.php):
 *   .entry-outer
 *     .breadcrumbs
 *     .primary-header > .container > .primary-header-inner > .primary-header-inner-2
 *     .primary-content > .container
 *       .primary-content-inner
 *         .primary-content-inner-2
 *           .entry-header-outer > .entry-image + .entry-header
 *           .primary-content-inner-3
 *             .entry-share
 *             .primary-content-inner-4.entry-content
 *             .entry-share
 *             .entry-tags
 *             .entry-author
 *
 * الفلسفة: راحة بصرية قصوى للقارئ العربي. لا زخرفة بدون سبب.
 * line-height 1.85 ضروري للعربية لأن الحروف ذات روابط متصلة.
 */

/* ════════════════════════════════════════════════════════════════════════
   1. READING PROGRESS BAR
   ──────────────────────────────────────────────────────────────────────
   شريط رفيع جداً بلون البراند (3px) — JS يتحكم في عرضه.
   ════════════════════════════════════════════════════════════════════════ */
#adc-reading-progress {
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0);
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}
#adc-reading-bar {
    height: 100%;
    background: #6e9f44;
    width: 0;
    transform-origin: left;
    transition: width 0.15s ease;
}
[dir="rtl"] #adc-reading-bar {
    transform-origin: right;
}

/* ════════════════════════════════════════════════════════════════════════
   2. ARTICLE SHELL
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-outer {
    background: #ffffff;
}
.adc-single .primary-header {
    background: #ffffff !important;
    padding-block: 0 !important;
    border-bottom: 0 !important;
}
.adc-single .primary-header-inner-2 {
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   3. FEATURED IMAGE — full-bleed mobile / radius على desktop
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-image,
.adc-single .entry-image-inner {
    border-radius: 0 !important;
    overflow: hidden;
    max-height: 520px;
    margin: 0;
    transform: none !important;
    box-shadow: none !important;
}
.adc-single .entry-image img {
    width: 100%;
    max-height: 520px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    transition: none;
    transform: none !important;
    box-shadow: none !important;
}
.adc-single .entry-image:hover img {
    transform: none !important;
}

@media (min-width: 768px) {
    .adc-single .entry-image,
    .adc-single .entry-image-inner {
        border-radius: 12px !important;
        max-width: 1100px;
        margin: 24px auto 0;
    }
    .adc-single .entry-image img {
        border-radius: 12px;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   4. CATEGORY BADGE — قبل العنوان
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .primary-header-inner-2 .post-meta-terms {
    margin: 0 0 12px 0;
    padding: 0;
    display: block;
}
.adc-single .primary-header-inner-2 .post-meta-terms a,
.adc-single .primary-header-inner-2 .post-meta-terms span {
    display: inline-block;
    background: #eef5e6 !important;
    color: #3d6420 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    margin: 0 4px 0 0;
    box-shadow: none !important;
    transform: none !important;
    border: 0 !important;
}
.adc-single .primary-header-inner-2 .post-meta-terms a:hover {
    background: #d8ecc8 !important;
    color: #3d6420 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* ════════════════════════════════════════════════════════════════════════
   5. ARTICLE TITLE — H1
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .primary-header h1,
.adc-single .primary-header-inner-2 h1 {
    font-size: clamp(24px, 4vw, 44px) !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    color: #111111 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: 0 !important;
}

/* ════════════════════════════════════════════════════════════════════════
   6. SUB-TITLE / DECK
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .primary-header h2,
.adc-single .primary-header .secondary-title,
.adc-single .primary-header-inner-2 h2 {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #555555 !important;
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 12px 0 0 0 !important;
}

/* ════════════════════════════════════════════════════════════════════════
   7. META BAR — Author + Date + Reading Time
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    margin: 20px 0 0;
    font-size: 14px;
    color: #666;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}
.adc-single .post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.adc-single .post-meta-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #eee;
    box-shadow: none !important;
    transform: none !important;
}
.adc-single .post-meta-avatar img:hover {
    transform: none !important;
}
.adc-single .post-meta a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}
.adc-single .post-meta a:hover {
    color: #6e9f44;
}
.adc-single .post-meta .post-meta-date,
.adc-single .post-meta .post-meta-comments {
    color: #666;
    font-weight: 400;
}

/* Reading time chip (مولّد من functions.php) */
.adc-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}
.adc-reading-time svg {
    flex-shrink: 0;
    color: #6e9f44;
}

/* ════════════════════════════════════════════════════════════════════════
   8. ARTICLE BODY CONTAINER
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .primary-content {
    background: #ffffff !important;
    padding-block: 0 !important;
}
.adc-single .primary-content-inner-3,
.adc-single .entry-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px 48px;
}

/* ════════════════════════════════════════════════════════════════════════
   9. TYPOGRAPHY — النص الأساسي
   ──────────────────────────────────────────────────────────────────────
   line-height: 1.85 إلزامي للعربية. font-size: 18px desktop / 17 mobile.
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content {
    font-size: 17px;
    line-height: 1.85;
    color: #1a1a1a;
    font-weight: 400;
}
@media (min-width: 768px) {
    .adc-single .entry-content {
        font-size: 18px;
    }
}

.adc-single .entry-content p {
    margin: 0 0 1.5em;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.adc-single .entry-content p:last-child {
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   10. ⚠ CRITICAL PARENT OVERRIDE — H2/H3 داخل المقال
   ──────────────────────────────────────────────────────────────────────
   القالب الأب يحقن background gradient + border-top على .entry-content h2.
   نلغيها صراحة قبل تطبيق ستايلنا الخاص.
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content h2:not(.unstyled),
.adc-single .entry-content h3:not(.unstyled) {
    border-top: none !important;
    background: none !important;
    background-image: none !important;
    box-shadow: none !important;
}
.adc-single .entry-content h2:not(.unstyled)::before,
.adc-single .entry-content h2:not(.unstyled)::after {
    content: none !important;
    display: none !important;
}

/* H2 — العنوان الفرعي الكبير */
.adc-single .entry-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 48px 0 16px;
    padding: 0 0 12px 0;
    border: 0 !important;
    border-bottom: 2px solid #d4e8c0 !important;
    line-height: 1.35;
    letter-spacing: -0.01em;
    position: static;
}
@media (min-width: 768px) {
    .adc-single .entry-content h2 {
        font-size: 26px;
    }
}

/* H3 */
.adc-single .entry-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 36px 0 12px;
    padding: 0;
    border: 0;
    background: none;
    line-height: 1.4;
}

/* H4 */
.adc-single .entry-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 28px 0 10px;
    padding: 0;
    border: 0;
    background: none;
}

/* ════════════════════════════════════════════════════════════════════════
   11. BLOCKQUOTE — اقتباس
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content blockquote {
    border-inline-start: 4px solid #6e9f44;
    border-top: 0;
    border-bottom: 0;
    border-inline-end: 0;
    padding: 16px 20px;
    background: #f6fbf1;
    border-radius: 0 8px 8px 0;
    color: #2d4a1e;
    font-style: italic;
    font-size: 19px;
    line-height: 1.75;
    margin: 32px 0;
    box-shadow: none;
    position: static;
}
[dir="rtl"] .adc-single .entry-content blockquote {
    border-radius: 8px 0 0 8px;
}
.adc-single .entry-content blockquote::before,
.adc-single .entry-content blockquote::after {
    content: none !important;
}
.adc-single .entry-content blockquote p:last-child {
    margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   12. IMAGES & FIGURES
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content img,
.adc-single .entry-content figure {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    margin: 32px auto;
    display: block;
    box-shadow: none !important;
    transform: none !important;
    transition: none !important;
}
.adc-single .entry-content img:hover {
    transform: none !important;
    box-shadow: none !important;
}
.adc-single .entry-content figure img {
    margin: 0 auto;
}
.adc-single .entry-content figcaption,
.adc-single .entry-content .wp-caption-text,
.adc-single .entry-content .wp-element-caption {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════════════
   13. LINKS داخل المقال
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content a:not(.btn):not(.no-underline) {
    color: #3d6420 !important;
    text-decoration: underline !important;
    text-decoration-color: #c8e0a8 !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 3px !important;
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    transition: text-decoration-color 200ms ease;
}
.adc-single .entry-content a:not(.btn):not(.no-underline):hover {
    color: #3d6420 !important;
    text-decoration-color: #6e9f44 !important;
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* ════════════════════════════════════════════════════════════════════════
   14. CODE — inline + block
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content code {
    background: #f4f7f0;
    color: #2d4a1e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
    border: 0;
}
.adc-single .entry-content pre {
    background: #1e2a1a;
    color: #d4f0c4;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 32px 0;
    border: 0;
    font-family: ui-monospace, "SF Mono", Consolas, monospace;
}
.adc-single .entry-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    font-size: inherit;
}

/* ════════════════════════════════════════════════════════════════════════
   15. TABLES
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 15px;
}
.adc-single .entry-content th,
.adc-single .entry-content td {
    padding: 10px 14px;
    border: 1px solid #e5e5e5;
    text-align: start;
    vertical-align: middle;
}
.adc-single .entry-content th {
    background: #eef5e6;
    color: #2d4a1e;
    font-weight: 700;
}
.adc-single .entry-content tr:hover td {
    background: #fafff8;
}

/* ════════════════════════════════════════════════════════════════════════
   16. SHARE BUTTONS — minimal
   ──────────────────────────────────────────────────────────────────────
   جوال: أيقونة فقط. Desktop: أيقونة + نص.
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-share,
.adc-single .share-links {
    margin: 24px 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.adc-single .share-links-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.adc-single .share-links-inner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    color: #555 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 200ms ease, color 200ms ease;
    transform: none !important;
    box-shadow: none !important;
    border-bottom-width: 1px !important;
}
.adc-single .share-links-inner a:hover {
    transform: none !important;
    box-shadow: none !important;
    opacity: 1;
}
/* تلوين الـ border حسب المنصة عند الـ hover */
.adc-single .share-links-inner a.facebook:hover { border-color: #1877f2 !important; color: #1877f2 !important; }
.adc-single .share-links-inner a.twitter:hover,
.adc-single .share-links-inner a.x:hover         { border-color: #000 !important; color: #000 !important; }
.adc-single .share-links-inner a.whatsapp:hover  { border-color: #25d366 !important; color: #25d366 !important; }
.adc-single .share-links-inner a.linkedin:hover  { border-color: #0a66c2 !important; color: #0a66c2 !important; }
.adc-single .share-links-inner a.telegram:hover  { border-color: #0088cc !important; color: #0088cc !important; }
.adc-single .share-links-inner a.email:hover     { border-color: #6e9f44 !important; color: #6e9f44 !important; }

/* جوال: إخفاء النص (أيقونة فقط) */
.adc-single .share-links-inner .title {
    font-size: 13px !important;
    font-weight: 500 !important;
}
@media (max-width: 767.98px) {
    .adc-single .share-links-inner .title {
        display: none !important;
    }
    .adc-single .share-links-inner a {
        width: 40px;
        height: 40px;
        padding: 0 !important;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   17. AUTHOR BOX (.entry-author)
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-author {
    background: #f9fdf6;
    border: 1px solid #d4e8c0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    box-shadow: none !important;
}
.adc-single .entry-author .entry-author-avatar img,
.adc-single .entry-author .author-avatar img,
.adc-single .entry-author img.avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 0;
    box-shadow: none;
}
.adc-single .entry-author .entry-author-name,
.adc-single .entry-author .author-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    text-decoration: none;
    line-height: 1.3;
}
.adc-single .entry-author .entry-author-name a,
.adc-single .entry-author .author-name a {
    color: #111;
    text-decoration: none;
}
.adc-single .entry-author .entry-author-name a:hover,
.adc-single .entry-author .author-name a:hover {
    color: #6e9f44;
}
.adc-single .entry-author .entry-author-bio,
.adc-single .entry-author .author-bio,
.adc-single .entry-author .author-description {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 6px 0 0;
}
.adc-single .entry-author .author-social,
.adc-single .entry-author .author-links {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.adc-single .entry-author .author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d4e8c0;
    color: #3d6420;
    text-decoration: none;
    transition: all 200ms ease;
}
.adc-single .entry-author .author-social a:hover {
    background: #6e9f44;
    border-color: #6e9f44;
    color: #fff;
}

/* ════════════════════════════════════════════════════════════════════════
   18. ENTRY TAGS
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .entry-tags {
    margin: 32px 0 0;
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.adc-single .entry-tags .title,
.adc-single .entry-tags .label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-inline-end: 4px;
}
.adc-single .entry-tags a {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all 200ms ease;
}
.adc-single .entry-tags a:hover {
    background: #eef5e6;
    border-color: #6e9f44;
    color: #3d6420;
}

/* ════════════════════════════════════════════════════════════════════════
   19. RELATED POSTS — "اقرأ أيضاً"
   ════════════════════════════════════════════════════════════════════════ */
.adc-single .related-posts,
.adc-single .related-articles,
.adc-single .entry-related {
    max-width: 780px;
    margin: 48px auto 0;
    padding: 0 20px;
}
.adc-single .related-posts .widget-title,
.adc-single .related-articles .widget-title,
.adc-single .entry-related .widget-title,
.adc-single .related-posts > h2,
.adc-single .related-posts > h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 0 24px !important;
    padding: 0 0 12px 0 !important;
    border: 0 !important;
    border-bottom: 3px solid #6e9f44 !important;
    background: none !important;
    line-height: 1.2;
}
.adc-single .related-posts .posts-loop,
.adc-single .related-articles .posts-loop,
.adc-single .entry-related .posts-loop {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.adc-single .related-posts .post .post-content,
.adc-single .related-articles .post .post-content,
.adc-single .entry-related .post .post-content {
    display: flex;
    flex-direction: row;
    gap: 12px;
    background: transparent;
    border: 0 !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0;
    box-shadow: none !important;
    padding: 12px 0;
    transform: none !important;
}
.adc-single .related-posts .post:last-child .post-content,
.adc-single .related-articles .post:last-child .post-content,
.adc-single .entry-related .post:last-child .post-content {
    border-bottom: 0 !important;
}
.adc-single .related-posts .post .post-thumb img,
.adc-single .related-articles .post .post-thumb img,
.adc-single .entry-related .post .post-thumb img {
    width: 100px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 6px;
}
.adc-single .related-posts .post .post-title h3,
.adc-single .related-articles .post .post-title h3,
.adc-single .entry-related .post .post-title h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .adc-single .related-posts .posts-loop,
    .adc-single .related-articles .posts-loop,
    .adc-single .entry-related .posts-loop {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .adc-single .related-posts .post .post-content,
    .adc-single .related-articles .post .post-content,
    .adc-single .entry-related .post .post-content {
        flex-direction: column;
        gap: 0;
        padding: 0;
        border: 1px solid #ebebeb !important;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        transition: transform 200ms ease, box-shadow 200ms ease;
    }
    .adc-single .related-posts .post .post-content:hover,
    .adc-single .related-articles .post .post-content:hover,
    .adc-single .entry-related .post .post-content:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    }
    .adc-single .related-posts .post .post-thumb img,
    .adc-single .related-articles .post .post-thumb img,
    .adc-single .entry-related .post .post-thumb img {
        width: 100%;
        aspect-ratio: 16/10;
        border-radius: 0;
    }
    .adc-single .related-posts .post .post-title,
    .adc-single .related-articles .post .post-title,
    .adc-single .entry-related .post .post-title {
        padding: 14px 14px 12px;
    }
    .adc-single .related-posts .post .post-title h3,
    .adc-single .related-articles .post .post-title h3,
    .adc-single .entry-related .post .post-title h3 {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }
}

/* ════════════════════════════════════════════════════════════════════════
   20. COMMENTS — Medium-style minimal
   ════════════════════════════════════════════════════════════════════════ */
.adc-single #comments,
.adc-single .comments-area {
    max-width: 780px;
    margin: 48px auto 0;
    padding: 0 20px 48px;
}
.adc-single .comments-title,
.adc-single #comments-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 0 24px !important;
    padding: 0 0 12px 0 !important;
    border-bottom: 3px solid #6e9f44 !important;
    background: none !important;
}

.adc-single .comment-list,
.adc-single ol.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.adc-single .comment-body,
.adc-single .comment {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.adc-single .comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.adc-single .comment-author img.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #eee;
}
.adc-single .comment-author .fn,
.adc-single .comment-author cite {
    font-weight: 600;
    color: #1a1a1a;
    font-style: normal;
}
.adc-single .comment-meta,
.adc-single .comment-metadata {
    font-size: 12px;
    color: #888;
}
.adc-single .comment-meta a,
.adc-single .comment-metadata a {
    color: #888;
    text-decoration: none;
}
.adc-single .comment-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* Comment form */
.adc-single .comment-respond,
.adc-single #respond {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
}
.adc-single .comment-reply-title,
.adc-single #reply-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
}

.adc-single .comment-form input[type="text"],
.adc-single .comment-form input[type="email"],
.adc-single .comment-form input[type="url"],
.adc-single .comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1a1a1a;
    transition: border-color 200ms ease;
    box-shadow: none !important;
}
.adc-single .comment-form input[type="text"]:focus,
.adc-single .comment-form input[type="email"]:focus,
.adc-single .comment-form input[type="url"]:focus,
.adc-single .comment-form textarea:focus {
    border-color: #6e9f44;
    outline: 0;
}
.adc-single .comment-form textarea {
    resize: vertical;
    min-height: 120px;
}
.adc-single .comment-form .form-submit input[type="submit"],
.adc-single .comment-form button[type="submit"] {
    background: #6e9f44;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 200ms ease;
    box-shadow: none;
}
.adc-single .comment-form .form-submit input[type="submit"]:hover,
.adc-single .comment-form button[type="submit"]:hover {
    background: #5d8938;
}

/* ════════════════════════════════════════════════════════════════════════
   21. BREADCRUMBS
   ════════════════════════════════════════════════════════════════════════ */
.breadcrumbs-inner {
    font-size: 13px;
    color: #888;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 12px 0;
}
.breadcrumbs-inner a {
    color: #888;
    text-decoration: none;
}
.breadcrumbs-inner a:hover {
    color: #6e9f44;
}
