/* Economic Times */
.vz-news-card {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #B8B8B8;
    margin-bottom: 20px;
}

.vz-news-image {
    flex: 0 0 250px;
    overflow: hidden;
}

.vz-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vz-news-content {
    flex: 1;
    padding: 19px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vz-news-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.vz-news-source {
    color: var(--blue-light);
    font-weight: 500;
}

.vz-news-date {
    color: #747474;
}

.vz-news-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black-color);
}

.vz-news-description {
    margin-bottom: 16px;
}

.vz-news-description p {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.4px;
    color: var(--black-color);
    margin-bottom: 0;
}

.vz-news-description p+p {
    margin-top: 20px;
}

.vz-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.vz-news-read-more:hover svg {
    transform: translateX(4px);
}

.vz-news-read-more svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* CTA Banner Section */
.vz-cta-banner {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    background: var(--blue-dark);
    border-radius: 15px;
    padding: 24px;
    align-items: center;
    color: var(--white-color);
    gap: 40px;
}

.vz-cta-content {
    flex: 1;
}

.vz-cta-heading {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white-color);
}

.vz-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orabge-color);
    color: var(--white-color);
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    box-shadow: 0px 3.75px 11.24px 0px #1E40AF40;
}

.vz-cta-button:hover svg {
    transform: translateX(4px);
}

.vz-cta-button svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.vz-cta-image {
    display: none;
}

/* Blog Section */
.vz-blog-section {
    margin-bottom: 20px;
}

.vz-blog-layout,
.vz-blog-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Blog List & Cards */
.vz-blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vz-blog-card {
    flex: 0 0 100%;
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 24px 2px #00000040;
}

.vz-blog-image-wrap {
    position: relative;
}

.vz-blog-image-wrap::before {
    content: "";
    display: block;
    padding-top: 61%;
}

.vz-blog-image-wrap img {
    max-width: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vz-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: var(--blue-dark);
    padding: 0px 15px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 600;
    box-shadow: 0px 10px 24px 5px #00000040;
    z-index: 1;
}

.vz-blog-card-body {
    padding: 20px;
    flex: 1;
}

.vz-blog-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.vz-blog-title a {
    color: inherit;
    text-decoration: none;
}

.vz-blog-title a:hover {
    color: var(--blue-light);
}

.vz-blog-excerpt p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.vz-blog-card-footer {
    padding: 4px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.vz-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-light);
    color: var(--white-color);
    padding: 11px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    box-shadow: 0 4px 10px rgba(0, 115, 242, 0.2);
}

.vz-blog-btn:hover svg {
    transform: translateX(4px);
}

.vz-blog-btn svg {
    transition: all 0.3s ease;
}

.vz-blog-date {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    color: var(--primary-color);
}

/* Sidebar */
.vz-blog-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vz-trending-posts-section,
.vz-blog-categories-section {
    margin-bottom: 60px;
}

.vz-sidebar-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    border-bottom: 1px solid #949494;
    padding-bottom: 8px;
    color: var(--black-color);
}

/* Trending Posts */
.vz-trending-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vz-trending-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.vz-trending-thumb {
    position: relative;
    flex: 0 0 100px;
    height: auto;
    overflow: hidden;
}

.vz-trending-thumb::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.vz-trending-thumb img {
    max-width: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vz-trending-content {
    flex: 1;
}

.vz-trending-date {
    font-size: 12px;
    line-height: 14px;
    color: var(--black-color);
    margin-bottom: 10px;
    display: block;
}

.vz-trending-title {
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 10px;
}

.vz-trending-title a {
    color: var(--black-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.vz-trending-title a:hover {
    color: var(--blue-light);
}

.vz-trending-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.vz-author-avatar {
    width: 100%;
    max-width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
}

.vz-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vz-author-name {
    font-size: 12px;
    line-height: 18px;
    color: var(--black-color);
    font-weight: 400;
}

/* sidebar  Categories */
.vz-category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.vz-category-list li a {
    display: block;
    color: var(--blue-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.vz-category-list li a:hover {
    color: var(--blue-dark);
}

/* Datasets Section */
.vz-section-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black-color);
}

.vz-dataset-browser {
    border: 1px solid #D1D5DC;
    border-radius: 10px;
    overflow: hidden;
    max-height: 351px;
    overflow-y: auto;
    background: var(--white-color);
}

.vz-continent-header {
    background: #F5F5F5;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    border-bottom: 1px solid #E5E7EB;
    margin: 0;
}

.vz-dataset-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.vz-dataset-table tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.vz-dataset-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #E5E7EB;
    width: 100%;
}

.vz-dataset-row:last-child {
    border-bottom: none;
}

.vz-dataset-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.vz-dataset-item:last-child {
    border-bottom: none;
}

.vz-dataset-title {
    color: var(--blue-light);
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    margin: 0;
}

.vz-dataset-meta {
    color: #666666;
    font-size: 12px;
    line-height: 15px;
    margin: 0;
}

.vz-dataset-browser::-webkit-scrollbar {
    width: 8px;
}

.vz-dataset-browser::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.vz-dataset-browser::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

.vz-dataset-browser::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Grow Section */
.vz-grow-banner {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: var(--blue-dark);
    border-radius: 15px;
    overflow: hidden;
    color: var(--white-color);
    align-items: center;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.vz-grow-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.vz-grow-heading {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: -0.5px;
}

.vz-grow-description {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 540px;
    font-weight: 400;
}

.vz-grow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 131%;
    width: fit-content;
}

.vz-grow-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.vz-grow-image {
    position: relative;
    min-height: 250px;
    background-color: #f0f0f0;
    width: 100%;
}

.vz-grow-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Blog Deatil Breadcrumbs */
.vz-breadcrumbs {
    margin-bottom: 20px;
}

.vz-breadcrumbs-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
}

.vz-breadcrumbs-list li {
    display: inline-flex;
    align-items: center;
}

.vz-breadcrumbs-list li+li::before {
    color: var(--blue-light);
    padding: 0 5px;
    content: ">";
}

.vz-breadcrumbs-list a {
    text-decoration: none;
    color: var(--blue-light);
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
}

.vz-breadcrumbs-list a:hover {
    text-decoration: underline;
}

.vz-breadcrumbs-list .vz-separator {
    color: var(--blue-light);
    display: flex;
    align-items: center;
}

.vz-breadcrumbs-list .vz-current {
    color: var(--black-color);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

/* Blog Detail Contenrt CSS */
.vz-article-content {
    margin-bottom: 20px;
}

.vz-article-content p,
.vz-article-content h5,
.vz-article-content h6,
.vz-article-content li {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--black-color);
}

.vz-article-content li {
    margin-bottom: 0px !important;
}

.vz-article-content ul,
.vz-article-content ol {
    margin-bottom: 16px;
    padding-left: 30px;
}

.vz-article-content h5,
.vz-article-content h6 {
    font-weight: 600;
}

.vz-article-content p:last-child {
    margin-bottom: 0;
}

.vz-article-content a {
    color: var(--blue-light);
    text-decoration: none;
}

.vz-article-content a:hover {
    text-decoration: underline;
    color: var(--blue-dark);
}

.vz-article-content h1,
.vz-article-content h2,
.vz-article-content h3,
.vz-article-content h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 5px;
}

/* Blog detail title - image */
.vz-article-category {
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 800;
    line-height: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.vz-article-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
    color: var(--black-color);
}

.vz-article-banner {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #686868;
    box-shadow: 0px 4px 4px 0px #00000040;
    margin-bottom: 28px;
}

.vz-article-banner::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.vz-article-banner img {
    max-width: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Author card CSS */
.vz-author-card {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    background: #F5F5F5;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #707070;
    box-shadow: 0px 4px 4px 0px #00000040;
    gap: 24px;
    margin-bottom: 30px;
}

.vz-author-info {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 10px;
}

.vz-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.vz-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vz-author-role {
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
}

.vz-author-sep {
    width: 100%;
    height: 1px;
    background: #BEBEBE;
}

.vz-author-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    text-align: inherit;
}

.vz-authorabout-heading {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.vz-blogauthor-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.vz-author-role {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.vz-authorabout-text {
    width: 100%;
    max-width: 655px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

/* ============== Media Query ============== */

@media (min-width: 768px) {
    
    /* Economic Times */
    .vz-news-image {
        flex: 0 0 300px;
    }

    .vz-news-content {
        padding: 30px;
    }

    .vz-news-card {
        border-radius: 25px;
        margin-bottom: 28px;
    }

    .vz-news-content {
        padding: 25px;
    }

    .vz-news-title {
        font-size: 24px;
        line-height: 34px;
    }

    .vz-news-meta {
        margin-bottom: 18px;
        font-size: 20px;
        line-height: 30px;
    }

    .vz-news-description p {
        font-size: 16px;
        line-height: 26px;
        letter-spacing: 0.8px;
    }

    .vz-news-read-more {
        font-size: 20px;
        line-height: 30px;
    }

    .vz-cta-content {
        padding-left: 5px;
    }

    /* Blog List & Cards */
    .vz-blog-card {
        flex: 0 0 calc(50% - 12px);
    }

    .vz-blog-title {
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 15px;
    }

    .vz-blog-excerpt p {
        font-size: 16px;
        line-height: 24px;
    }

    .vz-blog-btn {
        font-size: 16px;
        line-height: 24px;
    }

    .vz-blog-date {
        font-size: 16px;
        line-height: 24px;
    }

    .vz-badge {
        font-size: 16px;
        line-height: 30px;
    }

    .vz-blog-image-wrap::before {
        padding-top: 49.615%;
    }

    /* sidebar  Categories */
    .vz-sidebar-title {
        font-size: 22px;
        line-height: 28px;
    }

    .vz-category-list li a {
        font-size: 18px;
        line-height: 28px;
    }

    .vz-trending-list {
        gap: 28px;
    }

    .vz-trending-thumb {
        flex: 0 0 134px;
    }

    .vz-trending-title {
        font-size: 14px;
        line-height: 28px;
    }

    /* Datasets Section Responsive */
    .vz-dataset-item {
        flex: 0 0 50%;
        max-width: 50%;
        border-right: 1px solid #E5E7EB;
    }

    .vz-dataset-item:nth-child(2n) {
        border-right: none;
    }

    .vz-dataset-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .vz-dataset-row:nth-child(even) {
        background: #E8F1FF;
    }

    .vz-section-title {
        font-size: 22px;
        line-height: 34px;
    }

    /* Grow Section */
    .vz-grow-banner {
        border-radius: 50px;
    }

    .vz-grow-content {
        padding: 40px 30px;
    }

    .vz-grow-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .vz-grow-description {
        font-size: 17px;
        line-height: 27px;
    }

    .vz-grow-content {
        gap: 28px;
    }

    .vz-grow-button {
        font-size: 20px;
    }

    .vz-grow-image {
        min-height: 350px;
    }

    /* Blog Detail Contenrt CSS */
    .vz-article-content p,
    .vz-article-content h5,
    .vz-article-content h6,
    .vz-article-content li {
        font-size: 16px;
        line-height: 30px;
        font-weight: 400;
        margin-bottom: 24px;
    }

    .vz-article-content ul,
    .vz-article-content ol {
        margin-bottom: 24px;
    }

    .vz-article-content h1,
    .vz-article-content h2,
    .vz-article-content h3,
    .vz-article-content h4 {
        font-size: 22px;
        line-height: 30px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    /* Blog detail title - image */
    .vz-article-title {
        font-size: 34px;
        line-height: 40px;
    }

    .vz-article-banner::before {
        padding-top: 37%;
    }

    /* Authar card css */
    .vz-author-card {
        flex-direction: row;
        text-align: left;
        align-items: stretch;
        padding: 25px;
        gap: 40px;
    }

    .vz-author-info {
        display: flex;
        flex-direction: column;
    }

    .vz-author-img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .vz-author-sep {
        width: 1px;
        height: auto;
    }
}

@media (min-width: 992px) {

    /* Economic Times */
    .vz-news-card {
        flex-direction: row;
    }

    .vz-news-image {
        flex: 0 0 380px;
    }

    /* CTA Banner Section */
    .vz-cta-banner {
        padding: 15px;
        flex-direction: row;
        align-items: center;
        margin-bottom: 28px;
    }

    .vz-cta-heading {
        max-width: 618px;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 25px;
    }

    .vz-cta-image {
        display: block;
        position: relative;
        flex: 0 0 400px;
        border-radius: 15px;
        overflow: hidden;
    }

    .vz-cta-image::before {
        content: "";
        display: block;
        padding-top: 36%;
    }

    .vz-cta-image img {
        max-width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Datasets Section Responsive */
    .vz-dataset-item {
        flex: 0 0 25%;
        max-width: 25%;
        border-bottom: none;
        border-right: 1px solid #E5E7EB;
    }

    .vz-dataset-item:nth-child(2n) {
        border-right: 1px solid #E5E7EB;
    }

    .vz-dataset-item:last-child {
        border-right: none;
    }

    /* Breadcrums CSS */
    .vz-breadcrumbs-list .vz-current,
    .vz-breadcrumbs-list a {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (min-width: 1200px) {

    /* Economic Times */
    .vz-news-image {
        flex: 0 0 440px;
    }

    /* CTA Banner Section */
    .vz-cta-image {
        flex: 0 0 500px;
    }

    /* Blog Section */
    .vz-blog-layout,
    .vz-blog-detail-layout {
        gap: 40px;
        flex-direction: row;
    }

    .vz-blog-sidebar {
        flex: 0 0 344px;
        display: block;
    }

    .vz-blog-main,
    .vz-blog-detail-ctnwrap {
        flex: 1;
    }

    /* Blog List & Cards */
    .vz-blog-list {
        gap: 24px;
    }

    /* Grow Section */
    .vz-grow-banner {
        flex-direction: row;
    }

    .vz-grow-content {
        padding: 40px 60px;
        order: 1;
        width: 50%;
    }

    .vz-grow-image {
        order: 2;
        min-height: 400px;
        width: 50%;
    }

    .vz-grow-heading {
        font-size: 36px;
        line-height: 131%;
        max-width: 419px;
    }

    .vz-grow-description {
        font-size: 20px;
        line-height: 131%;
        max-width: 493px;
    }
}

@media (min-width: 1441px) {
    /* Economic Times */
    .vz-news-image {
        flex: 0 0 509px;
    }

    /* CTA Banner Section */
    .vz-cta-image {
        flex: 0 0 587px;
    }

    /* Blog Section */
    .vz-blog-layout,
    .vz-blog-detail-layout {
        gap: 58px;
    }
}

@media (max-width: 1199px) {

    /* Sidebar */
    .vz-trending-posts-section,
    .vz-blog-categories-section {
        margin-bottom: 0px;
        border: 1px solid #CACACA;
        box-shadow: 0px 2px 16px 0px #00000014;
        border-radius: 20px;
        padding: 20px;
        flex: 1;
    }
}

@media (max-width: 767px) {
    /* Sidebar */
    .vz-trending-posts-section,
    .vz-blog-categories-section {
        width: 100%;
        flex: inherit;
    }

    /* Datasets Section Responsive */
    .vz-dataset-row .vz-dataset-item:nth-child(odd) {
        background: #E8F1FF;
    }
}