.article-hero {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.article-hero .container {
    position: relative;
    z-index: 2;
}

.article-badge-chip {
    background: var(--gold-primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-block;
}

.article-meta-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.meta-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.meta-data {
    display: flex;
    gap: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.meta-data span i {
    color: var(--gold-primary);
    margin-left: 8px;
}

.main-layout-flex {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
    padding: 80px 0;
}

@media (max-width: 992px) {
    .main-layout-flex {
        grid-template-columns: 1fr;
    }
}

.post-article-area {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.article-featured-img {
    margin-bottom: 45px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.article-toc {
    background: var(--bg-secondary);
    padding: 35px;
    border-radius: var(--radius-md);
    margin-bottom: 50px;
    border-right: 5px solid var(--gold-primary);
}

[dir="ltr"] .article-toc {
    border-right: none;
    border-left: 5px solid var(--gold-primary);
}

.toc-title {
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-heading);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list li a {
    color: var(--text-body);
    transition: 0.3s;
    font-weight: 500;
    text-decoration: none;
}

.toc-list li a:hover {
    color: var(--gold-primary);
    padding-right: 10px;
}

[dir="ltr"] .toc-list li a:hover {
    padding-right: 0;
    padding-left: 10px;
}

.toc-list li.sub-item {
    padding-right: 25px;
    font-size: 0.95rem;
    opacity: 0.8;
}

[dir="ltr"] .toc-list li.sub-item {
    padding-right: 0;
    padding-left: 25px;
}

.article-main-text {
    font-size: 1.2rem;
    line-height: 2.1;
    color: var(--text-body);
}

.article-main-text h2 {
    font-size: 2.1rem;
    margin: 60px 0 30px;
    color: var(--text-heading);
    font-weight: 800;
    border-right: 4px solid var(--gold-primary);
    padding-right: 20px;
}

[dir="ltr"] .article-main-text h2 {
    border-right: none;
    border-left: 4px solid var(--gold-primary);
    padding-right: 0;
    padding-left: 20px;
}

.article-main-text p {
    margin-bottom: 30px;
}

.article-main-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.article-footer-box {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.box-label {
    font-weight: 800;
    margin-bottom: 15px;
    display: block;
    color: var(--text-heading);
    font-size: 0.9rem;
}

.tags-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tags-list a {
    background: var(--overlay-gold);
    color: var(--gold-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.share-icons-row {
    display: flex;
    gap: 15px;
}

.sh-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: 0.3s;
}

.sh-icon:hover {
    background: var(--gold-primary);
    color: #fff;
    transform: translateY(-5px);
}

.article-sidebar {
    position: sticky;
    top: 120px;
}

.side-widget {
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
}

.author-box h4 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.author-box p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.author-socials {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.author-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: 0.3s;
}

.author-socials a:hover {
    color: var(--gold-primary);
}

.quote-card {
    position: relative;
    padding: 40px;
    margin: 60px 0;
    background: rgba(200, 149, 46, 0.05);
    border-right: 4px solid var(--gold-primary);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--text-heading);
    line-height: 1.8;
}

[dir="ltr"] .quote-card {
    border-right: none;
    border-left: 4px solid var(--gold-primary);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.insight-item {
    background: var(--bg-secondary);
    padding: 35px;
    border-radius: var(--radius-md);
    border-top: 3px solid var(--gold-primary);
    transition: 0.3s;
}

.insight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.insight-item i {
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.blog-filters a {
    padding: 10px 25px;
    background: var(--bg-secondary);
    color: var(--text-body);
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid var(--border-color);
}

.blog-filters a.active,
.blog-filters a:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
    .post-article-area {
        padding: 30px 20px;
    }

    .article-hero h1 {
        font-size: 2.2rem;
    }
}

.reading-progress-bar {
    position: fixed;
    top: 0;
    right: 0;
    height: 4px;
    width: 0%;
    background: var(--gold-gradient, linear-gradient(90deg, #C8952E, #E8B84A));
    z-index: 100000;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

.blog-search-bar {
    margin-bottom: 40px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl, 50px);
    padding: 8px 8px 8px 20px;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input-wrap:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(200, 149, 46, 0.12);
}

.search-input-wrap>i {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-heading);
    outline: none;
    font-family: inherit;
    direction: rtl;
}

.search-input-wrap input::placeholder {
    color: var(--text-muted);
}

.search-input-wrap button {
    background: var(--gold-primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-xl, 50px);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
    flex-shrink: 0;
}

.search-input-wrap button:hover {
    background: var(--gold-dark, #a87a20);
}

.search-results-info {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.card-share-btn {
    width: 38px;
    height: 38px;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.card-share-btn:hover {
    background: #25d366;
    color: #fff;
    transform: scale(1.1);
}

.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 70px;
    flex-wrap: wrap;
}

.pag-btn {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    color: var(--text-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    padding: 0 14px;
}

.pag-btn:hover:not(.disabled):not(.pag-active) {
    background: var(--overlay-gold, rgba(200, 149, 46, 0.1));
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 149, 46, 0.2);
}

.pag-btn.pag-active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(200, 149, 46, 0.4);
    transform: translateY(-2px);
}

.pag-btn.pag-arrow {
    font-size: 0.8rem;
}

.pag-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.pag-ellipsis {
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 0 4px;
    line-height: 44px;
}

.author-logo-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    background: #fff;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 5px rgba(200, 149, 46, 0.1);
}

.author-logo-circle img {
    width: 75% !important;
    height: 75% !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

.article-cta-box {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(200, 149, 46, 0.08) 0%, rgba(200, 149, 46, 0.02) 100%);
    border: 1.5px solid rgba(200, 149, 46, 0.3);
    border-radius: var(--radius-lg, 20px);
    padding: 50px 40px;
    text-align: center;
}

.cta-box-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(200, 149, 46, 0.35);
}

.article-cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.article-cta-box p {
    color: var(--text-body);
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-box-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-articles-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.related-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-title i {
    color: var(--gold-primary);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.related-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md, 14px);
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.related-card-img {
    height: 160px;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card-img img {
    transform: scale(1.06);
}

.related-card-body {
    padding: 20px;
}

.related-cat {
    background: var(--overlay-gold, rgba(200, 149, 46, 0.1));
    color: var(--gold-primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.related-card-body h4 {
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.5;
}

.related-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.reading-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.reading-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.reading-stat i {
    width: 36px;
    height: 36px;
    background: var(--overlay-gold, rgba(200, 149, 46, 0.1));
    color: var(--gold-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .article-cta-box {
        padding: 35px 20px;
    }

    .article-cta-box h3 {
        font-size: 1.3rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .pag-btn {
        min-width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .search-input-wrap {
        padding: 6px 6px 6px 14px;
    }
}