/* 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: flex-start;
}

.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: #084C94;
    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;
}

.vz-blog-detail-ctnwrap .vz-article-category a{
	color: var(--blue-dark);
	text-decoration: none;
}
.vz-blog-detail-ctnwrap .vz-cta-banner .vz-cta-heading{
	color: var(--white-color);
	margin-bottom: 24px;
}
.vz-blog-detail-ctnwrap .vz-cta-banner .vz-cta-button{
	color:var(--white-color);
}
.vz-blog-detail-ctnwrap .vz-cta-banner .vz-cta-button:hover{
	text-decoration: 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;
	text-decoration:none;
}

.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: #155DFC;
    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);
}

.vz-blog-sidebar .widget{    
	width: 100%;
}
.vz-post-navigation .vz-nav-label{
	font-size: 14px;
	color:#6A7282;
}
.vz-post-navigation .vz-nav-title{
	font-size: 14px;
    font-weight: 500;
	color:#101828;
}
.vz-post-navigation .vz-nav-prev,.vz-post-navigation .vz-nav-next{
	border: 1px solid #C8C8C8;
	box-shadow: 0px 2px 2px 0px #00000040;
	padding: 10px 20px;
}

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

.vz-trending-posts-section,
.vz-blog-categories-section,.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 {
    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: #212121;
}

/* 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%;
	border-radius:10px;
}

.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;
	overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; 
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}

.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: 600;
    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: 500;
    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: 400;
    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;
}
.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories .widget-title{
	font-size: 20px;
	padding-bottom: 10px;
	margin-bottom: 12px;
}
.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories ul{
	padding-left: 0;
}
.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories ul li{
	line-height: 24px;
	font-size: 16px;
	font-weight: 500;
	border-bottom: none;
	padding: 0;
	margin-bottom: 8px;
}
.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories ul li a{
	color: var(--blue-light);
	font-size: 16px;
}

/* 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: 600;
    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 {
    will-change: transform;
}

.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;
    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: 500;
    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;
}
.vz-pagination{
	gap: 8px;
	margin: 40px 0 30px;
}
.vz-pagination .page-numbers{
	 width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #B5B5B5;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
	box-shadow: 0px 4px 4px 0px #00000040;
	color:#898989;
}
.vz-pagination .prev.page-numbers{
	background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjI0MzQgMTMuNDkyTDYuNzQ2MDkgOC45OTQ2NkwxMS4yNDM0IDQuNDk3MzEiIHN0cm9rZT0iIzRBNTU2NSIgc3Ryb2tlLXdpZHRoPSIxLjQ5OTEyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
	background-repeat:no-repeat;
	background-position:center;
	font-size: 0;
}
.vz-pagination .prev.page-numbers:hover{
	background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyLjUgMTVMNy41IDEwTDEyLjUgNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjY2NjY3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
}
.vz-pagination .next.page-numbers{
	background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuNzQ2MDkgMTMuNDkyTDExLjI0MzQgOC45OTQ2Nkw2Ljc0NjA5IDQuNDk3MzEiIHN0cm9rZT0iIzRBNTU2NSIgc3Ryb2tlLXdpZHRoPSIxLjQ5OTEyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
	background-repeat:no-repeat;
	background-position:center;
	font-size: 0;
}
.vz-pagination .next.page-numbers:hover{
	background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNSAxNUwxMi41IDEwTDcuNSA1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuNjY2NjciIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
}



.vz-blog-detail-ctnwrap .vz-share-section{
	margin-bottom: 25px;
}
.vz-share-section .vz-share-label{
	display: block;
	width: 100%;
	font-size: 16px;
  line-height: 20px;
}
.vz-share-section .vz-share-links .vz-share-link{
	width: 36px;
  height: 36px;
  background-color: #F4F4F4;
  box-shadow: 0px 4px 4px 0px #00000040;
  border: none;
  color: #757575;
}
.vz-share-section .vz-share-links .vz-share-link svg{
	width: 16px;
	height: 16px;
}

.vz-post-tags .vz-tags-label{
	padding: 3px 9px;
	background-color: #757575;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--white-color);
}
.vz-blog-detail-ctnwrap .vz-post-tags{
	gap: 8px;
	margin-bottom: 0;
}
.vz-post-tags .vz-tag-link{
	padding: 3px 9px;
	border: 0.7px solid #C0C0C0;
	background-color: var(--white-color);
	color: #757575;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	border-radius: 0;
}

.vz-post-navigation .vz-nav-prev{
	padding-left: 60px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDI0TDEyIDE2TDIwIDgiIHN0cm9rZT0iIzk5QTFBRiIgc3Ryb2tlLXdpZHRoPSIyLjY2NjY3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
	background-position: left 14px top 16px;
	background-repeat: no-repeat;
}
.vz-post-navigation .vz-nav-next{
		padding-right: 60px;
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDI0TDIwIDE2TDEyIDgiIHN0cm9rZT0iIzk5QTFBRiIgc3Ryb2tlLXdpZHRoPSIyLjY2NjY3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
		background-position: right 14px top 16px;
		background-repeat: no-repeat;
}
.vz-blog-sidebar .widget{
	margin-bottom:0;
}
.vz-breadcrumbs-list li{
	font-size:12px;
}

.vz-article-content a span.td_btn{
      background: var(--blue-light);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    transition: filter 0.3s ease;
    white-space: nowrap;
    box-shadow: 0px 4px 24px 0px #00000040;
}

.vz-article-content .wp-block-table{overflow-x: auto;-webkit-overflow-scrolling: touch;}
.vz-search-input-group .vz-search-icon{display: flex;align-items: center;justify-content: center;}
.vz-search-input-group .vz-search-cancel{font-size: 0;line-height: 0;width: 24px;height: 24px;background-position: center center;background-repeat: no-repeat;background-size: cover;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgMzIgMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGQ9Ik0yNS45IDYuMWExNCAxNCAwIDEgMCAwIDE5LjggMTQgMTQgMCAwIDAgMC0xOS44ek0yMSAxOS41NEExIDEgMCAwIDEgMjEgMjFhMSAxIDAgMCAxLS43MS4yOSAxIDEgMCAwIDEtLjctLjI5TDE2IDE3LjQxIDEyLjQ2IDIxYTEgMSAwIDAgMS0uNy4yOSAxIDEgMCAwIDEtLjcxLS4yOSAxIDEgMCAwIDEgMC0xLjQxTDE0LjU5IDE2bC0zLjU0LTMuNTRhMSAxIDAgMCAxIDEuNDEtMS40MUwxNiAxNC41OWwzLjU0LTMuNTRBMSAxIDAgMCAxIDIxIDEyLjQ2TDE3LjQxIDE2eiIgZGF0YS1uYW1lPSJMYXllciAyMiIgZmlsbD0iIzlDQTNBRiIgb3BhY2l0eT0iMSIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgY2xhc3M9IiI+PC9wYXRoPjwvZz48L3N2Zz4=");
}
.vz-dropdown-menu li a{transition: all 0.4s linear;border-radius: 6px;}
#menu-main-menu .menu-item.vz-view-all a{background: #155DFC;color: var(--white-color) !important;font-weight: 500;box-shadow: 0 4px 10px rgba(0, 115, 242, 0.2);}
/* ============== 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;
    }
	.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories ul li{
		line-height: 29px;font-size: 18px;
	}
	.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories ul li a{
		font-size: 18px;
	}
	.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 .categories .widget-title{
		font-size: 22px;
	}
	.vz-trending-thumb img{
		border-radius:0;
	}

    /* 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;
		border: 1px solid #707070;
    }

    .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;
    }
	.vz-pagination .page-numbers{
	 	width: 48px;
		height: 48px;
		font-size: 16px;
		line-height: 24px;
	}
	.vz-blog-sidebar .widget{    
		width: calc(50% - 10px);
	}

	.vz-post-navigation .vz-nav-prev, .vz-post-navigation .vz-nav-next{
		padding: 15px 20px;
		padding-left:60px;
	}
	.vz-post-navigation .vz-nav-next{
		padding-right:60px;
		padding-left:0px;
	}
	.vz-post-tags .vz-tags-label,.vz-post-tags .vz-tag-link{
		 font-size: 16px;
		padding: 3px 9px;
	}
	.vz-post-navigation .vz-nav-title{
		font-size: 16px;
	}
	.vz-breadcrumbs-list li{
		font-size:14px;
	}
}

@media (min-width: 992px) {

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

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

    /* 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-blog-detail-ctnwrap .vz-cta-image::before {
        content: "";
        display: block;
        padding-top: 44%;
    }

    .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;
		padding-top:22px;
    }

    .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;
    }
	.vz-blog-sidebar .widget{    
		width: auto;
	}
	
	.vz-dropdown-menu li a{padding: 8px 16px !important;}
	#menu-main-menu .menu-item .vz-dropdown-menu{padding: 16px 8px !important;}
	#menu-main-menu .menu-item:nth-child(2) .vz-dropdown-menu{min-width: 540px;top: calc(100% + 20px);left: 50%;transform: translate(-50%);display: grid !important;grid-template-columns: repeat(2, 1fr);}
	#menu-main-menu .menu-item:nth-child(2):hover .vz-dropdown-menu{transform: translate(-50%);}
	
}

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

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

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

@media (max-width: 1199px) {

    /* Sidebar */
    .vz-trending-posts-section,
    .vz-blog-categories-section,.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 {
        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,.vz-blog-sidebar .widget_wpcategorieswidget #wpcategorieswidget-2 {
        width: 100%;
        flex: inherit;
    }

    /* Datasets Section Responsive */
    .vz-dataset-row .vz-dataset-item:nth-child(odd) {
        background: #E8F1FF;
    }
	
	.vz-search-header{padding: 20px 0;}
	.vz-search-header .vz-search-form-wrap{width: 100%;padding: 0;}
	.vz-search-header .vz-search-form{display: block;width: 100%;}
	.vz-search-header .vz-search-input-group{gap: 0;}
	.vz-search-header .vz-search-input{padding: 0 12px;width: 50%;flex: initial;flex-grow: 1;}
	.vz-article-content .wp-block-table .has-fixed-layout{table-layout: initial;}
	.vz-article-content .wp-block-table .has-fixed-layout tbody tr:first-child td {white-space: nowrap;}
}