.cr-blog-details-paragrap .cr-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    color: #18181a;
    line-height: 1.6;
}

.cr-blog-details-paragrap p {
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #18181a;
}

.cr-blog-details-paragrap h2 {
    font-size: 20px;
    color: #18181a;
    font-weight: 700;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    text-transform: capitalize;
}

.cr-blog-details-paragrap h3 {
    font-size: 18px;
    margin: 25px 0 15px 0;
    font-weight: 600;
    color: #18181a;
}

.cr-blog-details-paragrap h4 {
    font-size: 16px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.cr-blog-details-paragrap ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

.cr-blog-details-paragrap li {
    font-size: 14px;
    margin-bottom: 10px;
}

.cr-blog-details-paragrap img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 25px auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.cr-blog-details-paragrap img:hover {
    transform: scale(1.02);
}

.cr-blog-details-paragrap a {
    color: #014f2b;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #014f2b;
}

.cr-blog-details-paragrap a:hover {
    border-bottom-style: solid;
}

.cr-table-responsive {
    width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.cr-blog-details-paragrap table {
    width: 100% !important;
    max-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    font-size: 13px;
    background: #fff;
}

@media (max-width: 768px) {
    .cr-blog-details-paragrap h2 {
        font-size: 20px !important;
    }

    .cr-blog-details-paragrap h3 {
        font-size: 17px !important;
    }

    .cr-blog-details-paragrap p {
        font-size: 14px !important;
    }

    .cr-blog-details-paragrap table {
        table-layout: fixed;
        word-wrap: break-word;
    }

    .cr-blog-details-paragrap th,
    .cr-blog-details-paragrap td {
        padding: 8px 4px !important;
        font-size: 12px !important;
        word-break: break-all;
    }
}

.cr-tab-content-from .post {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.cr-tab-content-from .post::-webkit-scrollbar {
    width: 6px;
}

.cr-tab-content-from .post::-webkit-scrollbar-thumb {
    background-color: #014f2b;
    border-radius: 10px;
}

.cr-tab-content-from .post::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Breadcrumb search layout */
.cr-breadcrumb-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cr-breadcrumb-bar .cr-breadcrumb-left {
    flex: 1 1 auto;
    min-width: 0;
}

.cr-breadcrumb-bar .cr-breadcrumb-right {
    flex: 0 0 320px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .cr-breadcrumb-bar .cr-breadcrumb-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Article title style */
.cr-article-title {
    font-size: 24px;
    font-weight: 700;
    color: #18181a;
    margin-bottom: 12px;
    margin-top: 15px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .cr-article-title {
        font-size: 20px;
    }
}

/* ── Article inline: related news card sections ── */
.art-related-news {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9e9e9;
}

.art-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.art-section-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #014f2b;
}

.art-view-all {
    font-size: 13px;
    color: #014f2b;
    text-decoration: none;
    border: none !important;
    font-weight: 400;
}

.art-view-all:hover {
    text-decoration: underline;
}

.art-news-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.art-news-card {
    cursor: pointer;
    transition: transform .25s ease;
}

.art-news-card:hover {
    transform: translateY(-4px);
}

.art-news-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.art-news-thumb img {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    transition: transform .3s ease;
    border-radius: 10px;
    margin: 0;
    box-shadow: none;
}

.art-news-card:hover .art-news-thumb img {
    transform: scale(1.06);
}

.art-news-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .65));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 18px 10px 8px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.art-news-title {
    margin-top: 9px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.art-news-card:hover .art-news-title {
    color: #014f2b;
}

.art-news-card a {
    border: none !important;
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

@media (max-width: 992px) {
    .art-news-row {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding-bottom: 6px;
        gap: 12px;
    }

    .art-news-row::-webkit-scrollbar {
        height: 5px;
    }

    .art-news-row::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .art-news-card {
        min-width: 220px;
        max-width: 220px;
        flex-shrink: 0;
    }
}

/* ── Sidebar: Category list ── */
.cr-blog-category {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    margin-bottom: 24px;
    overflow: hidden;
}

.cr-blog-category .blog-heading {
    padding: 14px 18px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.cr-blog-category .blog-heading h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #18181a;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.cr-category-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.cr-category-list li {
    border-bottom: 1px solid #f5f5f5;
    margin: 0;
}

.cr-category-list li:last-child {
    border-bottom: none;
}

.cr-category-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: #18181a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: none !important;
    transition: background .15s, color .15s;
}

.cr-cat-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf6f1;
    border-radius: 8px;
    font-size: 16px;
    color: #014f2b;
    flex-shrink: 0;
}

.cr-cat-name {
    flex: 1;
    line-height: 1.3;
}

.cr-cat-arrow {
    font-size: 18px;
    color: #bbb;
    transition: color .15s, transform .15s;
}

/* ── Sidebar: tech-news sections ── */
.sb-tech-news {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.sb-section-header {
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sb-section-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #014f2b;
    letter-spacing: .5px;
}

.sb-news-row {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.sb-news-row .cr-blog-recent-image {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.sb-news-row .cr-blog-recent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .3s ease;
    box-shadow: none;
    margin: 0;
}

.sb-news-row>div {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: background .15s;
}

.sb-news-row>div:last-child {
    border-bottom: none;
}

.sb-news-row>div:hover {
    background: #f4faf7;
}

.sb-news-row>div:hover .cr-blog-recent-image img {
    transform: scale(1.07);
}

.sb-news-row .cr-blog-recent-content {
    flex: 1;
    min-width: 0;
}

.sb-news-row .cr-blog-recent-content span {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 4px;
}

.sb-news-row .cr-blog-recent-content h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sb-news-row>div:hover .cr-blog-recent-content h4 a {
    color: #014f2b;
}

.sb-news-row .cr-blog-recent-content h4 a {
    color: inherit;
    text-decoration: none;
    border: none !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cr-breadcrumb-bar .cr-breadcrumb-right {
        display: none;
    }

    .cr-breadcrumb-bar {
        flex-wrap: nowrap;
    }

    .bc-wrap {
        font-size: 12px;
    }

    .bc-current,
    .bc-current+.bc-sep,
    .bc-sep:last-of-type {
        display: none;
    }

    .bc-sep:nth-last-of-type(1) {
        display: none;
    }
}
.cr-category-list li a:hover {
    background: #edf6f1;
    color: #014f2b;
}

.cr-category-list li a:hover .cr-cat-name {
    color: #014f2b;
}
