.mb-blog {
    padding-bottom: 100px;
    background: #fff;
}

.mb-blog-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    background:
        linear-gradient(
            90deg,
            rgba(10, 20, 40, .78) 0%,
            rgba(10, 20, 40, .58) 45%,
            rgba(10, 20, 40, .18) 100%
        ),
        url('/assets/media/images/blog.png') center center / cover no-repeat;
    background-position:
        center center,
        center calc(50% + 140px);
}
.mb-blog-hero {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.mb-blog-hero__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 28px;
    position: relative;
    z-index: 2;
}

.mb-blog-hero__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 20px;
    border-radius: 100px;
    background: rgba(49, 129, 246, .92);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.mb-blog-hero__title {
    max-width: 700px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -1.5px;
}

.mb-blog-hero__desc {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

/* Content */
.mb-blog-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 28px 0;
}

.mb-blog-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.mb-blog-section-title {
    margin: 0;
    color: #111827;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.7px;
}

.mb-blog-section-desc {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Cards */
.mb-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
}

.mb-blog-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mb-blog-card:hover {
    color: inherit;
}

.mb-blog-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f4f6;
}

.mb-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.mb-blog-card:hover .mb-blog-card__image img {
    transform: scale(1.045);
}

.mb-blog-card__body {
    padding-top: 18px;
}

.mb-blog-card__category {
    display: inline-block;
    margin-bottom: 9px;
    color: #3181F6;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.mb-blog-card__title {
    margin: 0 0 10px;
    color: #111827;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.35px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.mb-blog-card:hover .mb-blog-card__title {
    color: #3181F6;
}

.mb-blog-card__summary {
    margin: 0 0 14px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.mb-blog-card__date {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

/* Pagination */
.mb-blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 64px;
}

.mb-blog-pagination a,
.mb-blog-pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}

.mb-blog-pagination a:hover {
    background: #eff6ff;
    color: #3181F6;
}

.mb-blog-pagination .active {
    background: #3181F6;
    color: #fff;
}

/* SEO text */
.mb-blog-seo {
    margin-top: 90px;
    padding: 42px 46px;
    border-radius: 18px;
    background: #f7faff;
    border: 1px solid #e8f1ff;
}

.mb-blog-seo h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.4;
}

.mb-blog-seo p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.85;
}

/* Tablet */
@media (max-width: 991px) {
    .mb-blog-hero {
        min-height: 380px;
    }

    .mb-blog-hero__title {
        font-size: 38px;
    }

    .mb-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mb-blog {
        padding-bottom: 60px;
    }

    .mb-blog-hero {
        min-height: 350px;
        border-radius: 0 0 18px 18px;
        background-position: center;
    }

    .mb-blog-hero__inner {
        padding: 52px 20px;
    }

    .mb-blog-hero__title {
        font-size: 31px;
        line-height: 1.35;
        letter-spacing: -1px;
    }

    .mb-blog-hero__desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .mb-blog-content {
        padding: 48px 20px 0;
    }

    .mb-blog-section-title {
        font-size: 25px;
    }

    .mb-blog-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mb-blog-card__title {
        font-size: 20px;
    }

    .mb-blog-pagination {
        margin-top: 48px;
    }

    .mb-blog-pagination a,
    .mb-blog-pagination span {
        width: 38px;
        height: 38px;
    }

    .mb-blog-seo {
        margin-top: 64px;
        padding: 30px 24px;
    }

    .mb-blog-seo h2 {
        font-size: 21px;
    }

    .mb-blog-seo p {
        font-size: 15px;
    }
}

.mb-blog-seo__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.mb-blog-seo__button {
    min-width: 150px;
    height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
}

.mb-blog-seo__button span {
    font-size: 18px;
    font-weight: 400;
}

.mb-blog-seo__button--primary {
    color: #fff;
    background: #3181F6;
    border: 1px solid #3181F6;
}

.mb-blog-seo__button--primary:hover {
    color: #fff;
    background: #1f6fe5;
}

.mb-blog-seo__button--outline {
    color: #3181F6;
    background: #fff;
    border: 1px solid #3181F6;
}

.mb-blog-seo__button--outline:hover {
    color: #fff;
    background: #3181F6;
}

@media (max-width: 767px) {
    .mb-blog-seo__actions {
        flex-direction: column;
    }

    .mb-blog-seo__button {
        width: 100%;
    }
}

.mb-blog-view {
    padding: 80px 20px 100px;
    background: #fff;
}

.mb-blog-view__wrap {
    max-width: 1040px;
    margin: 0 auto;
}


/* =========================================================
   Header
========================================================= */

.mb-blog-view__header {
    margin: 0 auto 48px;
    text-align: center;
}

.mb-blog-view__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    margin-bottom: 22px;

    color: #3181F6;
    background: #eff6ff;

    border-radius: 100px;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.mb-blog-view__title {
    margin: 0 0 22px;

    color: #111827;

    font-size: 44px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -1.4px;
    word-break: keep-all;
}

.mb-blog-view__summary {

    margin: 0 auto 20px;

    color: #6b7280;

    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: -0.2px;
    word-break: keep-all;
}

.mb-blog-view__date {
    display: block;

    color: #9ca3af;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}


/* =========================================================
   Main Image
========================================================= */

.mb-blog-view__thumbnail {
    width: 100%;
    margin: 0 auto 68px;
    overflow: hidden;

    border-radius: 20px;
    background: #f3f4f6;
}

.mb-blog-view__thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: cover;
}


/* =========================================================
   Article Content
========================================================= */

.mb-blog-view__content {
    max-width: 780px;
    margin: 0 auto;

    color: #374151;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: -0.15px;

    word-break: keep-all;
    overflow-wrap: break-word;
}

.mb-blog-view__content > *:first-child {
    margin-top: 0;
}

.mb-blog-view__content > *:last-child {
    margin-bottom: 0;
}


/* Paragraph */

.mb-blog-view__content p {
    margin: 0 0 26px;

    color: #374151;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
}


/* H2 */

.mb-blog-view__content h2 {
    position: relative;

    margin: 64px 0 24px;
    padding-left: 17px;

    color: #111827;

    font-size: 28px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.6px;
}

.mb-blog-view__content h2::before {
    content: "";

    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 0;

    width: 4px;

    border-radius: 10px;
    background: #3181F6;
}


/* H3 */

.mb-blog-view__content h3 {
    margin: 42px 0 18px;

    color: #111827;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.4px;
}


/* Strong */

.mb-blog-view__content strong {
    color: #111827;
    font-weight: 700;
}


/* Link */

.mb-blog-view__content a {
    color: #3181F6;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* List */

.mb-blog-view__content ul,
.mb-blog-view__content ol {
    margin: 24px 0 30px;
    padding-left: 26px;
}

.mb-blog-view__content ul {
    list-style: disc;
}

.mb-blog-view__content ol {
    list-style: decimal;
}

.mb-blog-view__content li {
    margin-bottom: 10px;

    color: #374151;

    font-size: 17px;
    line-height: 1.8;
}

.mb-blog-view__content li::marker {
    color: #3181F6;
}


/* Blockquote / Tip */

.mb-blog-view__content blockquote {
    margin: 38px 0;
    padding: 26px 30px;

    border: 0;
    border-left: 4px solid #3181F6;
    border-radius: 0 12px 12px 0;

    background: #f7faff;

    color: #374151;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.mb-blog-view__content blockquote p {
    margin: 0;

    color: inherit;

    font-size: inherit;
    line-height: inherit;
}


/* Article Images */

.mb-blog-view__content img {
    width: 100%;
    height: auto;

    margin: 38px 0;

    border-radius: 14px;
}


/* Table */

.mb-blog-view__content table {
    width: 100%;

    margin: 35px 0;

    border-collapse: collapse;

    font-size: 15px;
    line-height: 1.6;
}

.mb-blog-view__content th,
.mb-blog-view__content td {
    padding: 14px 16px;

    border: 1px solid #e5e7eb;

    text-align: left;
    vertical-align: middle;
}

.mb-blog-view__content th {
    color: #111827;
    background: #f7faff;

    font-weight: 700;
}


/* =========================================================
   Service CTA
========================================================= */

.mb-blog-view__cta {
    max-width: 780px;

    margin: 80px auto 0;
    padding: 40px 44px;

    border: 1px solid #e8f1ff;
    border-radius: 18px;

    background: #f7faff;

    text-align: center;
}

.mb-blog-view__cta-title {
    margin: 0 0 10px;

    color: #111827;

    font-size: 24px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -0.5px;
}

.mb-blog-view__cta-desc {
    margin: 0;

    color: #6b7280;

    font-size: 15px;
    line-height: 1.7;
}

.mb-blog-view__cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 26px;
}

.mb-blog-view__cta-button {
    min-width: 160px;
    height: 50px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-radius: 6px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all .2s ease;
}

.mb-blog-view__cta-button span {
    font-size: 18px;
    font-weight: 400;
}

.mb-blog-view__cta-button--primary {
    color: #fff;

    background: #3181F6;
    border: 1px solid #3181F6;
}

.mb-blog-view__cta-button--primary:hover {
    color: #fff;
    background: #1f6fe5;
}

.mb-blog-view__cta-button--outline {
    color: #3181F6;

    background: #fff;
    border: 1px solid #3181F6;
}

.mb-blog-view__cta-button--outline:hover {
    color: #fff;
    background: #3181F6;
}


/* =========================================================
   Related Posts
========================================================= */

.mb-blog-view__related {
    margin-top: 90px;
    padding-top: 64px;

    border-top: 1px solid #e5e7eb;
}

.mb-blog-view__related-head {
    margin-bottom: 28px;
}

.mb-blog-view__related-title {
    margin: 0;

    color: #111827;

    font-size: 27px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.mb-blog-view__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.mb-blog-view__related-card {
    display: block;

    color: inherit;
    text-decoration: none;
}

.mb-blog-view__related-card:hover {
    color: inherit;
}

.mb-blog-view__related-image {
    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border-radius: 12px;

    background: #f3f4f6;
}

.mb-blog-view__related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.mb-blog-view__related-card:hover
.mb-blog-view__related-image img {
    transform: scale(1.045);
}

.mb-blog-view__related-category {
    display: block;

    margin-top: 16px;
    margin-bottom: 7px;

    color: #3181F6;

    font-size: 13px;
    font-weight: 700;
}

.mb-blog-view__related-card-title {
    margin: 0 0 10px;

    color: #111827;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;

    letter-spacing: -0.3px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;

    transition: color .2s ease;
}

.mb-blog-view__related-card:hover
.mb-blog-view__related-card-title {
    color: #3181F6;
}

.mb-blog-view__related-date {
    color: #9ca3af;

    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   Back
========================================================= */

.mb-blog-view__back {
    display: flex;
    justify-content: center;

    margin-top: 64px;
}

.mb-blog-view__back-link {
    min-width: 140px;
    height: 46px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1px solid #d1d5db;
    border-radius: 6px;

    color: #374151;
    background: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: all .2s ease;
}

.mb-blog-view__back-link:hover {
    color: #3181F6;
    border-color: #3181F6;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991px) {

    .mb-blog-view {
        padding-top: 64px;
    }

    .mb-blog-view__title {
        font-size: 38px;
    }

    .mb-blog-view__thumbnail {
        margin-bottom: 58px;
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {

    .mb-blog-view {
        padding: 48px 20px 70px;
    }

    .mb-blog-view__header {
        margin-bottom: 34px;
    }

    .mb-blog-view__category {
        margin-bottom: 17px;

        font-size: 13px;
    }

    .mb-blog-view__title {
        margin-bottom: 17px;

        font-size: 29px;
        line-height: 1.4;
        letter-spacing: -0.8px;
    }

    .mb-blog-view__summary {
        font-size: 15px;
        line-height: 1.7;
    }

    .mb-blog-view__thumbnail {
        margin-bottom: 44px;

        border-radius: 12px;
    }

    .mb-blog-view__content {
        font-size: 16px;
        line-height: 1.85;

        word-break: normal;
    }

    .mb-blog-view__content p {
        margin-bottom: 22px;

        font-size: 16px;
        line-height: 1.85;
    }

    .mb-blog-view__content h2 {
        margin: 50px 0 20px;
        padding-left: 14px;

        font-size: 23px;
    }

    .mb-blog-view__content h2::before {
        width: 3px;
    }

    .mb-blog-view__content h3 {
        margin: 34px 0 16px;

        font-size: 19px;
    }

    .mb-blog-view__content li {
        font-size: 16px;
    }

    .mb-blog-view__content blockquote {
        margin: 30px 0;
        padding: 22px 20px;

        font-size: 15px;
    }

    .mb-blog-view__cta {
        margin-top: 60px;
        padding: 30px 22px;
    }

    .mb-blog-view__cta-title {
        font-size: 21px;
    }

    .mb-blog-view__cta-actions {
        flex-direction: column;
    }

    .mb-blog-view__cta-button {
        width: 100%;
    }

    .mb-blog-view__related {
        margin-top: 64px;
        padding-top: 48px;
    }

    .mb-blog-view__related-title {
        font-size: 23px;
    }

    .mb-blog-view__related-grid {
        grid-template-columns: 1fr;

        gap: 36px;
    }

    .mb-blog-view__back {
        margin-top: 48px;
    }

}
