.cv-blog-page {
    background: #fff;
    padding: 18px 0 90px;
}

.cv-blog-breadcrumb {
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 500;
    color: #ff4f86;
}

.cv-blog-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.cv-blog-breadcrumb a:hover {
    color: var(--cv-primary);
}

.cv-blog-breadcrumb span {
    margin-right: 5px;
}

.cv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 24px;
}

.cv-blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    min-height: 330px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: transform .22s ease, box-shadow .22s ease;
    will-change: transform;
}

.cv-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.cv-blog-thumb {
    display: block;
    padding: 16px 16px 0;
}

.cv-blog-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #f3f4f6;
}

.cv-blog-card-body {
    padding: 28px 16px 20px;
}

.cv-blog-category {
    display: block;
    margin-bottom: 7px;
    color: #ff4f86;
    font-size: 12px;
    font-weight: 500;
}

.cv-blog-title {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.22;
    font-weight: 900;
}

.cv-blog-title a {
    color: #ff4f86;
    text-decoration: none;
}

.cv-blog-title a:hover {
    color: var(--cv-primary);
}

.cv-blog-date {
    color: #172554;
    font-size: 12px;
    font-weight: 500;
}

.cv-blog-pagination {
    margin-top: 52px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cv-blog-pagination .page-numbers {
    width: 26px;
    height: 26px;
    border: 1px solid #d9dce3;
    border-radius: 2px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111827;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
}

.cv-blog-pagination .page-numbers.current,
.cv-blog-pagination .page-numbers:hover {
    background: var(--cv-primary);
    border-color: var(--cv-primary);
    color: #fff;
}

.cv-empty-box {
    margin: 40px 0;
    padding: 25px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--cv-border);
    border-radius: 12px;
}

@media (max-width: 991px) {
    .cv-blog-page {
        padding-bottom: 75px;
    }

    .cv-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .cv-blog-page {
        padding: 14px 0 60px;
    }

    .cv-blog-breadcrumb {
        margin-bottom: 18px;
    }

    .cv-blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cv-blog-card {
        min-height: 0;
    }

    .cv-blog-thumb {
        padding: 14px 14px 0;
    }

    .cv-blog-thumb img {
        height: 150px;
    }

    .cv-blog-card-body {
        padding: 22px 14px 18px;
    }

    .cv-blog-title {
        font-size: 18px;
    }

    .cv-blog-pagination {
        margin-top: 38px;
    }
}


/*single blog css */

.cv-single-blog-page {
    background: #fff;
    padding: 10px 0 55px;
}

.cv-single-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 100%) 338px;
    gap: 50px;
    align-items: start;
}

.cv-single-blog-main {
    min-width: 0;
}

.cv-single-blog-title {
    margin: 0 0 6px;
    color: #ff4f86;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 900;
}

.cv-single-blog-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: #172554;
    font-size: 12px;
    font-weight: 500;
}

.cv-single-blog-meta a {
    color: #ff4f86;
    text-decoration: none;
}

.cv-single-blog-thumb {
    margin-bottom: 18px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 13px rgba(0, 0, 0, .22);
}

.cv-single-blog-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.cv-single-blog-content {
    color: #11143d;
    font-size: 13px;
    line-height: 1.55;
}

.cv-single-blog-content p {
    margin: 0 0 12px;
}

.cv-single-blog-content h2,
.cv-single-blog-content h3,
.cv-single-blog-content h4 {
    color: #11143d;
    font-weight: 900;
    line-height: 1.28;
    margin: 22px 0 9px;
}

.cv-single-blog-content h2 {
    font-size: 17px;
    border-top: 1px solid #9ca3af;
    padding-top: 13px;
}

.cv-single-blog-content h3 {
    font-size: 15px;
}

.cv-single-blog-content h4 {
    font-size: 14px;
}

.cv-single-blog-content a {
    color: #ff4f86;
    font-weight: 700;
}

.cv-single-blog-content ul,
.cv-single-blog-content ol {
    margin: 0 0 14px 18px;
    padding: 0;
}

.cv-single-blog-content li {
    margin-bottom: 6px;
}

.cv-single-blog-content img {
    max-width: 100%;
    height: auto;
}

.cv-single-blog-content .wp-block-button,
.cv-single-blog-content .wp-block-buttons {
    text-align: center;
    justify-content: center;
}

.cv-single-blog-content .wp-block-button__link {
    min-width: 120px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #ff4f86;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.cv-single-blog-sidebar {
    width: 100%;
    position: sticky;
    top: 20px;
}

.cv-blog-side-widget {
    margin-bottom: 22px;
}

.cv-blog-side-widget h3 {
    margin: 0 0 12px;
    color: #11143d;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.cv-blog-side-search form {
    height: 32px;
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 5px 15px rgba(17, 24, 39, .18);
}

.cv-blog-side-search input[type="search"] {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 8px;
    color: #11143d;
    font-size: 11px;
}

.cv-blog-side-search button {
    width: 115px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #333840;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.cv-blog-side-widget select {
    width: 100%;
    height: 28px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 0 8px;
    color: #11143d;
    font-size: 12px;
    outline: 0;
}

.cv-blog-side-post {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 11px;
    text-decoration: none;
}

.cv-blog-side-post img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    display: block;
}

.cv-blog-side-post span {
    color: #ff4f86;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
}

.cv-blog-side-post:hover span {
    color: var(--cv-primary);
}

.cv-blog-featured-stores {
    display: grid;
    grid-template-columns: repeat(2, 62px);
    gap: 12px 50px;
}

.cv-blog-featured-store {
    width: 92px;
    height: 92px;
    border: 2px solid #ff4f86;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    overflow: hidden;
}

.cv-blog-featured-store img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.cv-comments-box {
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid #d9dce3;
}

.cv-comments-box #reply-title {
    margin: 0 0 14px;
    color: #11143d;
    font-size: 17px;
    font-weight: 900;
}

.cv-comments-box .comment-notes {
    margin: 0 0 14px;
    color: #11143d;
    font-size: 12px;
}

.cv-comments-box .comment-form {
    display: grid;
    gap: 10px;
}

.cv-comments-box .comment-form p {
    margin: 0;
}

.cv-comments-box label {
    display: block;
    margin-bottom: 5px;
    color: #11143d;
    font-size: 12px;
    font-weight: 700;
}

.cv-comments-box textarea,
.cv-comments-box input[type="text"],
.cv-comments-box input[type="email"],
.cv-comments-box input[type="url"] {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    color: #11143d;
    font-size: 12px;
    outline: 0;
}

.cv-comments-box textarea {
    min-height: 115px;
    padding: 10px;
    resize: vertical;
}

.cv-comments-box input[type="text"],
.cv-comments-box input[type="email"],
.cv-comments-box input[type="url"] {
    height: 34px;
    padding: 0 10px;
}

.cv-comments-box .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 11px;
    line-height: 1.45;
}

.cv-comments-box .submit {
    height: 28px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    background: #ff4f86;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 991px) {
    .cv-single-blog-layout {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .cv-single-blog-sidebar {
        position: static;
    }

    .cv-blog-featured-stores {
        grid-template-columns: repeat(4, 62px);
    }
}

@media (max-width: 575px) {
    .cv-single-blog-page {
        padding: 12px 0 45px;
    }

    .cv-single-blog-title {
        font-size: 22px;
    }

    .cv-single-blog-content {
        font-size: 13px;
    }

    .cv-blog-side-post {
        grid-template-columns: 90px 1fr;
    }

    .cv-blog-side-post img {
        width: 90px;
        height: 64px;
    }

    .cv-blog-featured-stores {
        grid-template-columns: repeat(3, 62px);
    }
}
/*single blog css */
