.blog-list-pro {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-list-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
}

.blog-list-thumb {
    flex: 0 0 180px;
}

.blog-list-thumb img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.blog-list-content {
    flex: 1;
    min-width: 0;
}

.blog-list-title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.blog-list-title a {
    color: #1d1d1d;
    text-decoration: none;
}

.blog-list-title a:hover {
    color: #007bff;
}

.blog-list-desc {
    margin: 0 0 14px;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.blog-read-btn {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 30px;
    background: #007bff;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.blog-read-btn:hover {
    background: #0056d2;
    color: #fff !important;
}

.no-blog-found {
    margin: 0;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    color: #666;
}

@media (max-width: 767px) {
    .blog-list-card {
        flex-direction: column;
        padding: 12px;
    }

    .blog-list-thumb {
        flex: 0 0 auto;
        width: 100%;
    }

    .blog-list-thumb img {
        width: 100%;
        height: 200px;
    }

    .blog-list-title {
        font-size: 18px;
    }

    .blog-list-desc {
        font-size: 13px;
    }
}

.related-blog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

.related-blog-head .title {
    margin: 0;
}

.view-all-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #007bff;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.3s ease;
    white-space: nowrap;
	float:right;
}

.view-all-btn:hover {
    background: #0056d2;
    color: #fff !important;
}

@media (max-width: 575px) {
    .related-blog-head {
        flex-wrap: wrap;
        align-items: flex-start;
    }
}

.blog-listing-wrap {
    margin-top: 10px;
	padding:25px;
}

.blog-pro-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-pro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.blog-details-page {
    background: #f8f9fc;
}

.blog-breadcrumb {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.blog-breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb .active {
    color: #495057;
    font-weight: 600;
}

.blog-details-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #ececec;
}

.blog-details-header {
    padding: 35px 35px 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.blog-date i {
    color: #007bff;
}

.blog-main-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 800;
    color: #1d1d1d;
    margin: 0 0 12px;
}

.blog-sub-title {
    font-size: 18px;
    line-height: 1.7;
    color: #5f6368;
    margin: 0;
    max-width: 900px;
}

.blog-featured-image-wrap {
    padding: 0 35px;
}

.blog-featured-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.blog-details-body {
    padding: 35px;
}

.blog-content {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: #1d1d1d;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 14px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 20px 0;
}

.blog-content ul,
.blog-content ol {
    padding-left: 20px;
    margin-bottom: 18px;
}

.blog-content blockquote {
    border-left: 4px solid #007bff;
    background: #f8fbff;
    padding: 16px 20px;
    margin: 22px 0;
    border-radius: 10px;
    color: #444;
}

.blog-details-footer {
    padding: 0 35px 35px;
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #007bff, #0056d2);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-back-btn:hover {
    background: linear-gradient(135deg, #0056d2, #003f9e);
    color: #fff !important;
}

@media (max-width: 991px) {
    .blog-main-title {
        font-size: 30px;
    }

    .blog-featured-image {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .blog-details-header,
    .blog-details-body,
    .blog-details-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .blog-featured-image-wrap {
        padding: 0 18px;
    }

    .blog-main-title {
        font-size: 24px;
    }

    .blog-sub-title {
        font-size: 16px;
    }

    .blog-featured-image {
        height: 220px;
        border-radius: 14px;
    }

    .blog-content {
        font-size: 15px;
        line-height: 1.8;
    }
}

.blog-pro-image-wrap {
    position: relative;
    overflow: hidden;
}

.blog-pro-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-pro-card:hover .blog-pro-image {
    transform: scale(1.05);
}

.blog-pro-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-pro-date {
    font-size: 13px;
    color: #7a7a7a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.blog-pro-date i {
    color: #007bff;
}

.blog-pro-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 12px;
}

.blog-pro-title a {
    color: #1d1d1d;
    text-decoration: none;
}

.blog-pro-title a:hover {
    color: #007bff;
}

.blog-pro-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 18px;
    flex-grow: 1;
}

.blog-pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, #007bff, #0056d2);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.blog-pro-btn:hover {
    background: linear-gradient(135deg, #0056d2, #003f9e);
    color: #fff !important;
}

.blog-empty-state {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    color: #666;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .blog-pro-image {
        height: 210px;
    }

    .blog-pro-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .blog-pro-content {
        padding: 16px;
    }

    .blog-pro-image {
        height: 200px;
    }

    .blog-pro-title {
        font-size: 17px;
    }

    .blog-pro-desc {
        font-size: 13px;
    }
}




.blog-layout-page {
    background: #f7f8fb;
    padding: 45px 0 70px;
}

.blog-article-shell {
    max-width: 1320px;
    margin: 0 auto;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #7a7a7a;
}

.blog-breadcrumb a {
    color: #4a4a4a;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    color: #111;
}

.blog-article-main {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 18px;
    overflow: hidden;
    padding: 34px;
}

.blog-article-header {
    margin-bottom: 24px;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #6b7280;
}

.blog-article-meta i {
    margin-right: 6px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #3346cc;
    font-weight: 600;
    font-size: 13px;
}

.blog-article-title {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.blog-article-subtitle {
    margin: 0;
    font-size: 19px;
    line-height: 1.75;
    color: #4b5563;
    max-width: 900px;
}

.blog-hero {
    margin: 0 0 30px;
}

.blog-hero-media {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.blog-article-body {
    font-size: 17px;
    line-height: 1.95;
    color: #2f3542;
}

.blog-article-body p {
    margin-bottom: 1.35em;
}

.blog-article-body h1,
.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4,
.blog-article-body h5,
.blog-article-body h6 {
    margin-top: 1.7em;
    margin-bottom: 0.75em;
    color: #111827;
    line-height: 1.35;
    font-weight: 700;
}

.blog-article-body h2 {
    font-size: 30px;
}

.blog-article-body h3 {
    font-size: 24px;
}

.blog-article-body ul,
.blog-article-body ol {
    padding-left: 22px;
    margin-bottom: 1.3em;
}

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

.blog-article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 24px auto;
    border-radius: 12px;
}

.blog-article-body blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid #111827;
    background: #f9fafb;
    color: #374151;
}

.blog-article-footer {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid #eceff3;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.blog-back-link:hover {
    color: #2563eb;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: #fff;
    border: 1px solid #eceff3;
    border-radius: 18px;
    padding: 20px;
}

.sidebar-title-wrap {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eceff3;
}

.sidebar-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.latest-blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.latest-blog-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    border-bottom: 1px solid #f1f3f6;
    padding-bottom: 16px;
}

.latest-blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-blog-thumb {
    flex: 0 0 85px;
}

.latest-blog-thumb img {
    width: 85px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.latest-blog-content {
    flex: 1;
    min-width: 0;
}

.latest-blog-content h4 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: #111827;
    transition: color 0.2s ease;
}

.latest-blog-item:hover .latest-blog-content h4 {
    color: #2563eb;
}

.latest-blog-content span {
    display: inline-block;
    font-size: 12px;
    color: #6b7280;
}

.sidebar-empty {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 991px) {
    .blog-article-main {
        padding: 24px;
    }

    .blog-article-title {
        font-size: 34px;
    }

    .blog-article-subtitle {
        font-size: 17px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .blog-layout-page {
        padding: 25px 0 40px;
    }

    .blog-article-main {
        padding: 18px;
        border-radius: 14px;
    }

    .sidebar-card {
        border-radius: 14px;
    }

    .blog-article-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .blog-article-subtitle {
        font-size: 16px;
        line-height: 1.65;
    }

    .blog-article-body {
        font-size: 16px;
        line-height: 1.85;
    }

    .blog-hero-media {
        max-height: 260px;
        border-radius: 12px;
    }
}