/* @import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

.vlab-product-post-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.vlab-product-post-container__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
    padding-bottom: 1rem;
    font-family: "Exo", sans-serif;
    margin: 0;
}

.vlab-product-post-container__content-item {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.vlab-product-post-container__content-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

.vlab-product-post-container__content-item_image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.vlab-product-post-container__content-item_image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.3s ease;
}

.vlab-product-post-container__content-item:hover .vlab-product-post-container__content-item_image img {
    transform: scale(1.03);
}

.vlab-product-post-container__content-item__content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vlab-product-post-container__content-item__content-title {
    line-height: 1;
    margin-bottom: 0px;
}

.vlab-product-post-container__content-item__content-category {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vlab-product-post-container__content-item__content-time {
    font-weight: 400;
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
}

.vlab-product-post-container__content-item__content-time::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm.5-13H11v6l5.2 3.2.8-1.3-4.5-2.7V7z'/%3E%3C/svg%3E");
    background-size: contain;
    margin-right: 6px;
}

.vlab-product-post-container__content-item__content-title a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #0f172a;
    transition: color 0.2s ease;
    font-family: "Exo", sans-serif;
}

.vlab-product-post-container__content-item__content-title a:hover {
    color: #3b82f6;
}

.vlab-product-post-container__content-item__content-summary {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
}

.vlab-product-post-container__content-item__content-link {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.vlab-product-post-container__content-item__content-link::after {
    content: "→";
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.vlab-product-post-container__content-item__content-link:hover {
    color: #2563eb;
}

.vlab-product-post-container__content-item__content-link:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .vlab-product-post-container__content-item {
        flex-direction: column;
        gap: 1rem;
    }

    .vlab-product-post-container__content-item_image,
    .vlab-product-post-container__content-item__content {
        width: 100%;
    }

    .vlab-product-post-container__content-item_image {
        overflow: hidden;
        height: 100%;
    }

    .vlab-product-post-container__content-item__content-title a {
        font-size: 1.25rem;
    }

    .vlab-product-post-container__title {
        font-size: 1.5rem;
    }
} */

.vlab-blog {
    margin-top: 60px;
    margin-bottom: 120px;
}

@media screen and (max-width: 991px) {
    .vlab-blog {
        margin-top: 30px;
        margin-bottom: 60px;
    }
}

.vlab-blog-details .vlab-blog {
    margin-top: 32px;
    margin-bottom: 0px;
}

@media screen and (max-width: 991px) {
    .vlab-blog-details .vlab-blog {
        margin-top: 24px;
    }
}

.vlab-blog-top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vlab-blog-top:not(:last-child) {
    margin-bottom: 1rem;
}

.vlab-blog-top form:has(.vlab-search-form) {
    flex-grow: 1;
    max-width: 300px;
}

@media screen and (max-width: 991px) {
    .vlab-blog-top form:has(.vlab-search-form) {
        max-width: 100%;
    }
}

.vlab-blog-title {
    margin-bottom: 0px;
}

.vlab-pagination {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.vlab-pagination .page-numbers {
    color: hsl(var(--black));
    border-radius: 5px;
    border: 1px solid hsl(var(--base-two)/0.2);
    color: hsl(var(--black) / 0.6);
    padding: 6px 12px;
    cursor: pointer;
}

.vlab-pagination .page-numbers:has(i) {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vlab-pagination .page-numbers:hover,
.vlab-pagination .page-numbers:focus {
    color: hsl(var(--black) / 0.7);
    border-color: hsl(var(--base-two)/0.3);
}

.vlab-pagination .page-numbers.current {
    color: hsl(var(--white));
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
}

.vlab-search-form {
    border-radius: 4px;
    position: relative;
}

.vlab-search-form .form--control {
    border-color: hsl(var(--base-two)/0.2);
    padding: 13px 20px;
    padding-left: 56px;
    background-color: hsl(var(--white));
    transition: 0.2s;
}

.vlab-search-form .form--control:focus {
    border-color: hsl(var(--base-two)/0.2);
}

.vlab-search-form .form--control::placeholder {
    font-weight: 700;
    font-size: 0.9375rem;
}

.vlab-search-form .vlab-search-form__icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    color: hsl(var(--black)/0.7);
    transition: 0.2s;
    padding-right: 8px;
    border-right: 1px solid hsl(var(--base-two) / 0.2);
}

.vlab-search-form .form--control:focus+.vlab-search-form__icon {
    visibility: hidden;
    opacity: 0;
}

.vlab-search-form .form--control:focus {
    padding-left: 20px;
}

.vlab-search-form .search-btn {
    border-radius: 0 5px 5px 0 !important;
    transition: 0.2s;
    padding: 16px 24px;
}

.vlab-search-form .search-btn:hover {
    background-color: hsl(var(--base-d-100)) !important;
    border-color: hsl(var(--base-d-100)) !important;
    color: hsl(var(--white)) !important;
}

.vlab-search-form .search-btn:active {
    top: 0;
}

.vlab-card-x {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid hsl(var(--base-two)/0.1);
    border-radius: 5px;
    overflow: hidden;
    transition: .3s ease;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 575px) {
    .vlab-card-x {
        flex-direction: column;
    }
}

.vlab-card-x:hover,
.vlab-card-x:focus {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.vlab-card-x:not(:last-child) {
    margin-bottom: 24px;
}

.vlab-card-x__thumb {
    width: 100%;
    max-width: 400px;
    max-height: 200px;
    display: block;
    overflow: hidden;
    border-radius: inherit;
    flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
    .vlab-card-x__thumb {
        max-width: 350px;
        max-height: 175px;
    }
}

@media screen and (max-width: 1199px) {
    .vlab-card-x__thumb {
        max-width: 300px;
        max-height: 150px;
    }
}

@media screen and (max-width: 991px) {
    .vlab-card-x__thumb {
        max-width: 250px;
        max-height: 125px;
    }
}

@media screen and (max-width: 767px) {
    .vlab-card-x__thumb {
        max-width: 200px;
        max-height: 100px;
    }
}

@media screen and (max-width: 575px) {
    .vlab-card-x__thumb {
        max-width: 100%;
        max-height: unset;
    }
}


.vlab-card-x__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vlab-blog-details .vlab-card-x__thumb {
    max-width: 300px !important;
}

.vlab-card-x__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vlab-card-x__content-body {
    flex-grow: 1;
}

.vlab-card-x__content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.vlab-card-x__title {
    line-height: 120%;
    margin-bottom: 8px;
}

.vlab-card-x__title a {
    font-family: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vlab-card-x__desc {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black)/0.6);
}

.vlab-card-x__tag,
.vlab-card-x__date {
    font-size: 0.875rem;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 143%;
    color: hsl(var(--black)/0.6);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vlab-card-x__tag:has(i),
.vlab-card-x__date:has(i) {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vlab-card-x-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px 16px;
}

@media screen and (max-width: 767px) {
    .vlab-card-x-meta {
        gap: 6px;
    }
}

@media screen and (max-width: 575px) {
    .vlab-card-x-meta {
        gap: 8px 16px;
    }
}

.vlab-card-x__readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--base));
}