.mfxblog-page,
.mfxblog-page * {
    box-sizing: border-box;
}

html.mfxblog-modal-open,
html.mfxblog-modal-open body {
    overflow: hidden;
}

.mfxblog-page {
    --mfxblog-accent: #ff7a00;
    --mfxblog-accent-dark: #ff7a00;
    --mfxblog-text: #272727;
    --mfxblog-muted: #717171;
    --mfxblog-border: #dedede;
    --mfxblog-soft-border: #ececec;
    --mfxblog-surface: #ffffff;
    --mfxblog-soft: #f7f7f7;
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 28px clamp(18px, 5vw, 70px) 64px;
    color: var(--mfxblog-text);
    font-family: inherit;
    line-height: 1.8;
}

.mfxblog-page a {
    color: inherit;
    text-decoration: none;
}

.mfxblog-page button,
.mfxblog-page input,
.mfxblog-page textarea,
.mfxblog-page select {
    font: inherit;
}

.mfxblog-page button {
    cursor: pointer;
}

.mfxblog-page svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mfxblog-container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
}

.mfxblog-page .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mfxblog-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 24px;
    margin: 0 0 34px;
    color: #8a8a8a;
    font-size: 13px;
    line-height: 1.6;
}

.mfxblog-breadcrumbs a {
    color: #5f5f5f;
    transition: color .16s ease;
}

.mfxblog-breadcrumbs a:hover {
    color: var(--mfxblog-accent);
}

.mfxblog-breadcrumbs span[aria-current="page"] {
    color: #9a9a9a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(520px, 55vw);
}

.mfxblog-archive-heading,
.mfxblog-single-header {
    margin: 0 auto 32px;
    text-align: center;
}

.mfxblog-archive-heading {
    max-width: 800px;
}

.mfxblog-archive-heading h1,
.mfxblog-single-header h1 {
    margin: 0;
    color: #202020;
    font-size: clamp(24px, 2.7vw, 32px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -.4px;
}

.mfxblog-archive-heading p,
.mfxblog-single-description {
    max-width: 760px;
    margin: 10px auto 0;
    color: var(--mfxblog-muted);
    font-size: 15px;
    line-height: 2;
}

.mfxblog-discovery {
    width: 100%;
    margin: 0 0 30px;
}

.mfxblog-search-form {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 54px;
    border: 1px solid #cfcfcf;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.mfxblog-search-form:focus-within {
    border-color: #aaa;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .08);
}

.mfxblog-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    color: #777;
}

.mfxblog-search-form input[type="search"] {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0 4px 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #252525;
    appearance: none;
}

.mfxblog-search-form input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}

.mfxblog-search-form input::placeholder {
    color: #999;
}


.mfxblog-filter-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    margin-top: 12px;
    padding: 12px 20px;
    border: 1px solid var(--mfxblog-accent);
    border-radius: 12px;
    background: var(--mfxblog-accent);
    color: #ffffff;
    font-weight: 700;
    transition: background-color .16s ease, border-color .16s ease;
}

.mfxblog-filter-trigger:hover {
    border-color: var(--mfxblog-accent-dark);
    background: var(--mfxblog-accent-dark);
}

.mfxblog-filter-modal[hidden] {
    display: none;
}

.mfxblog-filter-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .16s ease, visibility .16s ease;
}

.mfxblog-filter-modal.mfxblog-is-visible {
    opacity: 1;
    visibility: visible;
}

.mfxblog-filter-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .54);
}

.mfxblog-filter-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 44px);
    padding: 24px;
    border: 1px solid #dddddd;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
    overflow: auto;
    transform: translateY(12px);
    transition: transform .16s ease;
}

.mfxblog-filter-modal.mfxblog-is-visible .mfxblog-filter-dialog {
    transform: translateY(0);
}

.mfxblog-filter-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.mfxblog-filter-dialog-head strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.mfxblog-filter-dialog-head p {
    margin: 4px 0 0;
    color: var(--mfxblog-muted);
    font-size: 13px;
}

.mfxblog-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0 0 3px;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #ffffff;
    color: #555;
    font-size: 25px;
    line-height: 1;
}

.mfxblog-filter-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mfxblog-filter-column {
    min-width: 0;
}

.mfxblog-filter-column label {
    display: block;
    margin: 0 0 8px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.mfxblog-filter-column select {
    width: 100%;
    height: 50px;
    padding: 0 13px;
    border: 1px solid #d2d2d2;
    border-radius: 10px;
    outline: 0;
    background: #ffffff;
    color: #2d2d2d;
}

.mfxblog-filter-column select:focus {
    border-color: var(--mfxblog-accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .08);
}

.mfxblog-filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
}

.mfxblog-filter-actions button {
    min-height: 44px;
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 700;
}

.mfxblog-filter-reset {
    border: 1px solid #d6d6d6;
    background: #ffffff;
    color: #555;
}

.mfxblog-filter-apply {
    border: 1px solid var(--mfxblog-accent);
    background: var(--mfxblog-accent);
    color: #ffffff;
}

.mfxblog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.mfxblog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--mfxblog-soft-border);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .045);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.mfxblog-card:hover {
    transform: translateY(-3px);
    border-color: #d7d7d7;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .075);
}

.mfxblog-card-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f1f1;
    overflow: hidden;
}

.mfxblog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .22s ease;
}

.mfxblog-card:hover .mfxblog-card-media img {
    transform: scale(1.025);
}

.mfxblog-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #a8a8a8;
}

.mfxblog-card-placeholder svg {
    width: 46px;
    height: 46px;
}

.mfxblog-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 16px;
}

.mfxblog-card-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    color: #888;
    font-size: 11px;
    line-height: 1.7;
}

.mfxblog-card-kicker a {
    max-width: 58%;
    color: var(--mfxblog-accent-dark);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mfxblog-card-kicker span {
    flex: 0 0 auto;
    white-space: nowrap;
}

.mfxblog-card h2 {
    margin: 10px 0 7px;
    color: #282828;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.65;
}

.mfxblog-card h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mfxblog-card > .mfxblog-card-content > p {
    display: -webkit-box;
    margin: 0;
    color: #747474;
    font-size: 12.5px;
    line-height: 1.9;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mfxblog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    color: #7b7b7b;
    font-size: 11.5px;
}

.mfxblog-card-footer > span,
.mfxblog-card-footer > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
}

.mfxblog-card-footer > span {
    white-space: nowrap;
}

.mfxblog-card-footer > a {
    color: var(--mfxblog-accent-dark);
    font-weight: 700;
}

.mfxblog-card-footer svg {
    width: 16px;
    height: 16px;
}

.mfxblog-card-footer > a svg {
    width: 15px;
    height: 15px;
}

.mfxblog-pagination,
.mfxblog-comment-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.mfxblog-pagination {
    margin: 34px 0 0;
}

.mfxblog-pagination .page-numbers,
.mfxblog-comment-pagination button,
.mfxblog-comment-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 6px 12px;
    border: 1px solid #dddddd;
    border-radius: 9px;
    background: #ffffff;
    color: #555;
    line-height: 1;
}

.mfxblog-pagination .page-numbers.current,
.mfxblog-pagination .page-numbers:hover,
.mfxblog-comment-pagination button.mfxblog-is-current,
.mfxblog-comment-pagination button:hover {
    border-color: var(--mfxblog-accent);
    background: var(--mfxblog-accent);
    color: #ffffff;
}

.mfxblog-comment-pagination span {
    border-color: transparent;
    background: transparent;
}

.mfxblog-bottom-content {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
}

.mfxblog-collapsible-content {
    position: relative;
    line-height: 2;
    overflow: hidden;
}

.mfxblog-collapsible.mfxblog-has-overflow:not(.mfxblog-is-expanded) .mfxblog-collapsible-content {
    max-height: 8em;
}

.mfxblog-more-button {
    display: none;
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    padding: 9px 16px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    color: var(--mfxblog-accent-dark);
    font-weight: 700;
}

.mfxblog-collapsible.mfxblog-has-overflow .mfxblog-more-button {
    display: block;
}

.mfxblog-prose {
    color: #4d4d4d;
    font-size: 15px;
}

.mfxblog-prose > *:first-child {
    margin-top: 0;
}

.mfxblog-prose > *:last-child {
    margin-bottom: 0;
}

.mfxblog-empty {
    width: 100%;
    padding: 34px 22px;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    background: #ffffff;
    color: #777;
    text-align: center;
}

.mfxblog-single-page .mfxblog-breadcrumbs {
    margin-bottom: 36px;
}

.mfxblog-article {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.mfxblog-single-header {
    max-width: 900px;
    margin-bottom: 34px;
}

.mfxblog-single-description {
    max-width: 780px;
}

.mfxblog-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #eeeeee;
    color: #696969;
    font-size: 13px;
}

.mfxblog-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.mfxblog-meta-row b {
    color: #333;
    font-weight: 700;
}

.mfxblog-meta-row svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: var(--mfxblog-accent);
}

.mfxblog-article-body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 2;
}

.mfxblog-article-body img,
.mfxblog-article-body video,
.mfxblog-article-body iframe {
    max-width: 100%;
}

.mfxblog-article-body img {
    height: auto;
}

.mfxblog-faq {
    width: 100%;
    margin-top: 52px;
    padding-top: 34px;
    border-top: 1px solid #ededed;
}

.mfxblog-faq-title,
.mfxblog-comments-title {
    color: #252525;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.5;
}

.mfxblog-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.mfxblog-faq-item {
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.mfxblog-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 12px 14px 12px 12px;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    cursor: pointer;
    list-style: none;
}

.mfxblog-faq-item summary::-webkit-details-marker {
    display: none;
}

.mfxblog-faq-question {
    min-width: 0;
}

.mfxblog-faq-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid #d7d7d7;
    border-radius: 9px;
    background: #fafafa;
    color: var(--mfxblog-accent-dark);
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.mfxblog-faq-toggle::before {
    content: none;
}

.mfxblog-faq-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .18s ease;
}

.mfxblog-faq-item[open] .mfxblog-faq-toggle svg {
    transform: rotate(180deg);
}

.mfxblog-faq-answer {
    padding: 0 14px 16px 60px;
    color: #686868;
    font-size: 14px;
    line-height: 2;
}

.mfxblog-faq-answer p {
    margin: 0;
}

.mfxblog-comments {
    width: 100%;
    margin-top: 52px;
    padding-top: 34px;
    border-top: 1px solid #ededed;
}

.mfxblog-comments-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.mfxblog-comments-head p {
    margin: 4px 0 0;
    color: #808080;
    font-size: 13px;
}

.mfxblog-comments-head > span {
    flex: 0 0 auto;
    padding: 6px 11px;
    border: 1px solid #e0e0e0;
    border-radius: 9px;
    background: #fafafa;
    color: #666;
    font-size: 12px;
}

.mfxblog-comment-notice,
.mfxblog-login-required,
.mfxblog-no-comments {
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    background: #ffffff;
    color: #626262;
    font-size: 13px;
}

.mfxblog-comment-notice.mfxblog-is-success {
    border-color: #bcdcc7;
    background: #f5fbf7;
    color: #286b40;
}

.mfxblog-comment-notice.mfxblog-is-error {
    border-color: #e7c2c2;
    background: #fff7f7;
    color: #9c3737;
}

.mfxblog-login-required {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mfxblog-login-required a {
    color: var(--mfxblog-accent-dark);
    font-weight: 700;
}

.mfxblog-comment-form {
    margin-bottom: 22px;
    padding: 18px;
    border: 1px solid #dfdfdf;
    border-radius: 12px;
    background: #ffffff;
}

.mfxblog-comment-form > label {
    display: block;
    margin: 0 0 7px;
    color: #3f3f3f;
    font-size: 13px;
    font-weight: 700;
}

.mfxblog-comment-form input[type="text"],
.mfxblog-comment-form textarea {
    display: block;
    width: 100%;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
    outline: 0;
    background: #ffffff;
    color: #333;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.mfxblog-comment-form input[type="text"] {
    height: 48px;
    margin-bottom: 6px;
    padding: 0 13px;
}

.mfxblog-comment-form textarea {
    height: 74px;
    min-height: 74px;
    max-height: 74px;
    margin-top: 0;
    padding: 10px 13px;
    line-height: 25px;
    resize: none;
    overflow: hidden;
}

.mfxblog-comment-form input:focus,
.mfxblog-comment-form textarea:focus {
    border-color: var(--mfxblog-accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .08);
}

.mfxblog-comment-privacy {
    display: block;
    margin: 0 0 14px;
    color: #8a8a8a;
    font-size: 11.5px;
}

.mfxblog-comment-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.mfxblog-comment-form-footer small {
    color: #888;
}

.mfxblog-comment-form-footer button {
    min-height: 42px;
    padding: 8px 20px;
    border: 1px solid var(--mfxblog-accent);
    border-radius: 9px;
    background: var(--mfxblog-accent);
    color: #ffffff;
    font-weight: 700;
}

.mfxblog-comment-results {
    position: relative;
    scroll-margin-top: 20px;
    transition: opacity .16s ease;
}

.mfxblog-comment-results.mfxblog-is-loading {
    opacity: .48;
    pointer-events: none;
}

.mfxblog-comment-list {
    display: grid;
    gap: 10px;
}

.mfxblog-comment {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border: 1px solid #e4e4e4;
    border-radius: 11px;
    background: #ffffff;
}

.mfxblog-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #f6f6f6;
    color: var(--mfxblog-accent-dark);
    font-weight: 700;
}

.mfxblog-comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mfxblog-comment-meta strong {
    color: #333;
    font-size: 13px;
}

.mfxblog-comment-meta time {
    color: #999;
    font-size: 11px;
}

.mfxblog-comment p {
    margin: 5px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.mfxblog-comment-pagination {
    margin-top: 18px;
}

@media (max-width: 1100px) {
    .mfxblog-page {
        padding-inline: 30px;
    }

    .mfxblog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .mfxblog-page {
        padding: 20px 16px 48px;
    }

    .mfxblog-breadcrumbs {
        margin-bottom: 26px;
        font-size: 12px;
    }

    .mfxblog-archive-heading,
    .mfxblog-single-header {
        margin-bottom: 24px;
    }

    .mfxblog-archive-heading h1,
    .mfxblog-single-header h1 {
        font-size: 23px;
        line-height: 1.55;
    }

    .mfxblog-archive-heading p,
    .mfxblog-single-description {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.9;
    }

    .mfxblog-search-form {
        min-height: 50px;
        border-radius: 10px;
    }

    .mfxblog-search-form input[type="search"] {
        height: 48px;
        font-size: 13px;
    }

    .mfxblog-search-icon {
        flex-basis: 42px;
    }

    .mfxblog-filter-trigger {
        min-height: 48px;
        border-radius: 10px;
        font-size: 13px;
    }

    .mfxblog-filter-modal {
        align-items: end;
        padding: 10px;
    }

    .mfxblog-filter-dialog {
        width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
        border-radius: 15px;
    }

    .mfxblog-filter-columns {
        grid-template-columns: 1fr;
    }

    .mfxblog-filter-actions {
        flex-direction: column-reverse;
    }

    .mfxblog-filter-actions button {
        width: 100%;
    }

    .mfxblog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .mfxblog-card {
        border-radius: 11px;
    }

    .mfxblog-card-content {
        padding: 11px;
    }

    .mfxblog-card-kicker {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
        font-size: 10px;
    }

    .mfxblog-card-kicker a {
        max-width: 100%;
    }

    .mfxblog-card h2 {
        margin: 7px 0 5px;
        font-size: 13.5px;
        line-height: 1.65;
    }

    .mfxblog-card > .mfxblog-card-content > p {
        font-size: 10.5px;
        line-height: 1.8;
        -webkit-line-clamp: 2;
    }

    .mfxblog-card-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-top: 9px;
        font-size: 10px;
    }

    .mfxblog-card-footer > a {
        width: 100%;
        justify-content: space-between;
    }

    .mfxblog-meta-row {
        gap: 10px;
        margin-top: 20px;
        padding-top: 14px;
        font-size: 11.5px;
    }

    .mfxblog-meta-row span {
        gap: 5px;
    }

    .mfxblog-modified-date {
        justify-content: flex-end;
        text-align: left;
    }

    .mfxblog-faq,
    .mfxblog-comments {
        margin-top: 40px;
        padding-top: 26px;
    }

    .mfxblog-faq-title,
    .mfxblog-comments-title {
        font-size: 20px;
    }

    .mfxblog-faq-item summary {
        min-height: 54px;
        padding: 10px 11px;
        font-size: 12.5px;
    }

    .mfxblog-faq-toggle {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .mfxblog-faq-answer {
        padding: 0 11px 14px 48px;
        font-size: 12.5px;
    }

    .mfxblog-comments-head {
        align-items: center;
    }

    .mfxblog-comment-form {
        padding: 14px;
    }

    .mfxblog-comment {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
        padding: 11px;
    }

    .mfxblog-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .mfxblog-comment-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .mfxblog-comment-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .mfxblog-comment-form-footer button {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .mfxblog-page {
        padding-inline: 13px;
    }

    .mfxblog-grid {
        gap: 9px;
    }

    .mfxblog-card-content {
        padding: 9px;
    }

    .mfxblog-card h2 {
        font-size: 12.5px;
    }

    .mfxblog-card > .mfxblog-card-content > p {
        display: none;
    }

    .mfxblog-meta-row {
        align-items: stretch;
        flex-direction: column;
    }

    .mfxblog-modified-date {
        justify-content: flex-start;
        text-align: right;
    }

    .mfxblog-login-required {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Archive AJAX search and skin-style filter panel. */
.mfxblog-archive-browser {
    width: 100%;
    min-width: 0;
}

.mfxblog-search-form {
    min-height: 48px;
    border-color: #e2e2e2;
    border-radius: 16px;
    overflow: visible;
}

.mfxblog-search-form:focus-within {
    border-color: #ff7a00;
    box-shadow: none;
}

.mfxblog-search-icon,
.mfxblog-search-loader {
    position: absolute;
    top: 50%;
    left: 16px;
    z-index: 2;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    color: #8f8f8f;
    transform: translateY(-50%);
    pointer-events: none;
}

.mfxblog-search-form input[type="search"] {
    height: 48px;
    padding: 0 46px;
    font-size: 14px;
    font-weight: 800;
    line-height: 48px;
    text-align: center;
    direction: rtl;
}

.mfxblog-search-form input[type="search"]::placeholder {
    text-align: center;
}

.mfxblog-search-loader {
    display: none;
}

.mfxblog-spinner,
.mfxblog-filter-loader {
    width: 16px;
    height: 16px;
    display: inline-block;
    border: 2px solid rgba(255, 122, 0, .25);
    border-top-color: #ff7a00;
    border-radius: 50%;
    animation: mfxblog-spin .7s linear infinite;
}

.mfxblog-is-loading .mfxblog-search-icon {
    display: none;
}

.mfxblog-is-loading .mfxblog-search-loader {
    display: inline-flex;
}

@keyframes mfxblog-spin {
    to { transform: rotate(360deg); }
}

.mfxblog-filter-trigger {
    min-height: 50px;
    border-radius: 16px;
    background: #ff7a00;
    border-color: #ff7a00;
    font-size: 15px;
    font-weight: 900;
    transition: transform .16s ease, opacity .16s ease;
}

.mfxblog-filter-trigger:hover,
.mfxblog-filter-trigger:focus-visible {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
    opacity: .94;
    transform: translateY(-1px);
    outline: none;
}

.mfxblog-filter-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.mfxblog-filter-backdrop {
    background: rgba(0, 0, 0, .48);
}

.mfxblog-filter-dialog {
    width: min(920px, 100%);
    max-height: min(720px, 92vh);
    padding: 18px;
    border: 1px solid #e9e9e9;
    border-radius: 24px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .26);
}

.mfxblog-filter-dialog-head {
    align-items: center;
    margin-bottom: 14px;
}

.mfxblog-filter-dialog-head strong {
    color: #222222;
    font-size: 17px;
    font-weight: 900;
}

.mfxblog-filter-close {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #f6f6f6;
    color: #222222;
}

.mfxblog-filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.mfxblog-filter-tab {
    min-width: 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    background: #f7f7f7;
    color: #333333;
    font-size: 13px;
    font-weight: 900;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.mfxblog-filter-tab:hover,
.mfxblog-filter-tab:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.mfxblog-filter-tab.mfxblog-is-active {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
}

.mfxblog-filter-panel {
    width: 100%;
    padding: 12px;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    background: #fafafa;
}

.mfxblog-filter-panel[hidden] {
    display: none !important;
}

.mfxblog-filter-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.mfxblog-filter-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 8px 10px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #ffffff;
    color: #777777;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.mfxblog-filter-option:hover,
.mfxblog-filter-option:focus-within {
    border-color: #cfcfcf;
    transform: translateY(-1px);
}

.mfxblog-filter-option.mfxblog-is-selected {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
}

.mfxblog-filter-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mfxblog-filter-empty-option {
    grid-column: 1 / -1;
    margin: 0;
    color: #777777;
    text-align: center;
}

.mfxblog-filter-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    margin-top: 14px;
    padding-top: 0;
    border-top: 0;
}

.mfxblog-filter-actions button {
    flex: 1 1 50%;
    width: 50%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 900;
    transition: transform .16s ease, opacity .16s ease;
}

.mfxblog-filter-actions button:hover,
.mfxblog-filter-actions button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.mfxblog-filter-reset {
    order: 1;
    border-color: #d9d9d9;
    background: #f4f4f4;
    color: #222222;
}

.mfxblog-filter-apply {
    order: 2;
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
}

.mfxblog-filter-apply.mfxblog-is-loading {
    opacity: .88;
    cursor: wait;
    pointer-events: none;
}

.mfxblog-filter-loader {
    display: none;
    border-color: rgba(255, 255, 255, .55);
    border-top-color: #ffffff;
}

.mfxblog-filter-apply.mfxblog-is-loading .mfxblog-filter-loader {
    display: inline-block;
}

.mfxblog-archive-results {
    position: relative;
    min-height: 90px;
}

.mfxblog-archive-loader[hidden] {
    display: none;
}

.mfxblog-is-loading .mfxblog-archive-loader[hidden] {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    color: #555555;
    font-size: 13px;
    font-weight: 800;
}

.mfxblog-is-loading [data-mfxblog-archive-content] {
    opacity: .42;
    pointer-events: none;
}

.mfxblog-archive-error {
    margin-bottom: 14px;
    padding: 11px 13px;
    border: 1px solid #efcaca;
    border-radius: 10px;
    background: #fff7f7;
    color: #9b3434;
    text-align: center;
}

/* Keep archive bottom content and all nested cards inside the 1260px content area. */
.mfxblog-bottom-content {
    width: 100%;
    max-width: 1260px;
    min-width: 0;
    margin: 42px auto 0;
    padding: 24px;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.mfxblog-bottom-content *,
.mfxblog-bottom-content *::before,
.mfxblog-bottom-content *::after {
    max-width: 100%;
    box-sizing: border-box;
}

.mfxblog-bottom-content img,
.mfxblog-bottom-content video,
.mfxblog-bottom-content iframe {
    height: auto;
}

.mfxblog-bottom-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
}

.mfxblog-bottom-content pre,
.mfxblog-bottom-content code {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.mfxblog-bottom-content .mfxblog-collapsible-content {
    overflow-wrap: anywhere;
}

/* FAQ chevron. */
.mfxblog-faq-toggle::before {
    content: none !important;
}

.mfxblog-faq-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform .18s ease;
}

.mfxblog-faq-item[open] .mfxblog-faq-toggle svg {
    transform: rotate(180deg);
}

/* Public admin replies. */
.mfxblog-comment-replies {
    display: grid;
    gap: 8px;
    margin: 8px 0 0 22px;
    padding-right: 18px;
    border-right: 2px solid #ff7a00;
}

.mfxblog-comment-reply {
    background: #fffaf5;
}

.mfxblog-admin-reply .mfxblog-avatar {
    border-color: #ff7a00;
    background: #ff7a00;
    color: #ffffff;
}

.mfxblog-admin-badge {
    display: inline-flex;
    margin-right: 5px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #ff7a00;
    color: #ffffff;
    font-size: 10px;
    line-height: 1.5;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .mfxblog-filter-modal {
        align-items: flex-end;
        padding: 10px;
    }

    .mfxblog-filter-dialog {
        max-height: calc(100vh - 20px);
        padding: 14px;
        border-radius: 20px;
    }

    .mfxblog-filter-options {
        grid-template-columns: 1fr;
    }

    .mfxblog-filter-actions {
        flex-direction: row;
    }

    .mfxblog-filter-actions button {
        width: 50%;
        font-size: 12px;
        padding-inline: 8px;
    }

    .mfxblog-bottom-content {
        margin-top: 34px;
        padding: 16px;
        border-radius: 14px;
    }

    .mfxblog-comment-replies {
        margin-left: 0;
        padding-right: 10px;
    }
}

.mfxblog-search-clear {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 3;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #f1f1f1;
    color: #6f6f6f;
    transform: translateY(-50%);
    transition: background-color .16s ease, color .16s ease;
}

.mfxblog-search-clear[hidden] {
    display: none !important;
}

.mfxblog-search-clear:hover,
.mfxblog-search-clear:focus-visible {
    background: #e7e7e7;
    color: #222222;
    outline: none;
}

.mfxblog-search-clear svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
}

.mfxblog-search-form input[type="search"]::-webkit-search-cancel-button {
    display: none;
    -webkit-appearance: none;
}

.mfxblog-search-form input[type="search"]::-ms-clear {
    display: none;
}
