/*
Theme Name: Forpips
Author: Abhishek
Author URI: https://forpips.com/author/
Description: In 2024, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Creating a magazine website with WordPress has never been easier.
Version: 1.1
Theme URI: https://forpips.com/theme/
Tags: blue, two-columns, right-sidebar, featured-images, post-formats, theme-options, accessibility-ready
*/


/* ============================================================
       Forpips Custom Styles  |  prefix: kt-
    ============================================================ */
:root {
    --kt-primary: #00ADEF;
    --kt-primary-dark: #0090C8;
    --kt-primary-light: #5CD2FF;
    --kt-surface-dark: #070b14;
    --kt-surface-mid: #252540;
    --kt-text-muted: #fff;
    --kt-border: rgba(255, 255, 255, .1);
    --kt-radius: .75rem;
    --kt-font-head: 'Inter', sans-serif;
    --kt-font-body: 'Inter', sans-serif;
    --kt-transition: .2s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--kt-font-body);
    margin: 0;
}

/* ── Topbar ─────────────────────────────────────────────── */
@media (min-width: 1340px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px;
    }
}
.kt-topbar {
    background: var(--kt-surface-dark);
    color: #fff;
    font-size: .75rem;
    padding: .4rem 1rem;
}

.kt-topbar a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--kt-transition);
}

.kt-topbar a:hover {
    color: var(--kt-primary-light);
}

.kt-topbar-sep {
    color: rgba(255, 255, 255, .25);
}

/* ── Navbar shell ───────────────────────────────────────── */
.kt-navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
    position: sticky;
    top: 0;
    z-index: 1040;
    font-family: var(--kt-font-head);
}

.kt-navbar .navbar-brand img {
    height: 52px;
    width: auto;
}

.kt-navbar .navbar-toggler {
    border: none;
    padding: .35rem .5rem;
    color: #374151;
}

.kt-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* ── Nav links ──────────────────────────────────────────── */
.kt-nav-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem .85rem !important;
    font-size: .9rem;
    color: #000 !important;
    border-radius: .5rem;
    white-space: nowrap;
    transition: color var(--kt-transition), background var(--kt-transition);
    position: relative;
}

.kt-nav-link:hover,
.kt-nav-link.show {
    color: var(--kt-primary-dark) !important;
    background: #e6f7fd;
}

.kt-nav-link .fa-chevron-down {
    font-size: .65rem;
    transition: transform var(--kt-transition);
}

.kt-nav-link.show .fa-chevron-down {
    transform: rotate(180deg);
}

/* ── CTA button ─────────────────────────────────────────── */
.kt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--kt-primary);
    color: #fff !important;
    font-size: .875rem;
    font-weight: 600;
    padding: .6rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--kt-transition), transform var(--kt-transition);
    font-family: var(--kt-font-head);
}

.kt-cta-btn:hover {
    background: var(--kt-primary-dark);
    transform: translateY(-1px);
}

/* ── Hover dropdown wrapper ─────────────────────────────── */
.kt-dropdown-wrapper {
    position: relative;
}

.kt-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--kt-radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
    min-width: 220px;
    padding: .5rem 0;
    display: none;
    z-index: 1100;
}

.kt-dropdown-panel.kt-drop-open {
    display: block;
}

.kt-dropdown-panel .kt-drop-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    font-size: .875rem;
    color: #4b5563;
    text-decoration: none;
    transition: color var(--kt-transition), background var(--kt-transition);
    white-space: nowrap;
}

.kt-dropdown-panel .kt-drop-item i {
    font-size: .7rem;
    color: #9ca3af;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.kt-dropdown-panel .kt-drop-item:hover {
    color: var(--kt-primary-dark);
    background: #e6f7fd;
}

/* ── Mega menu ──────────────────────────────────────────── */
.kt-mega-wrapper {
    position: static !important;
    /* allow mega to span full container */
}

.kt-mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 95vw);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1.1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    padding: 1.5rem;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    z-index: 1100;
}

.kt-mega-menu.kt-mega-open {
    display: grid;
}

.kt-mega-col-title {
    font-size: .875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: .65rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.kt-mega-col-title i {
    font-size: .7rem;
    color: var(--kt-primary);
}

.kt-mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.kt-mega-list a {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color var(--kt-transition);
}

.kt-mega-list a i {
    font-size: .7rem;
    color: #d1d5db;
    width: 14px;
}

.kt-mega-list a:hover {
    color: var(--kt-primary-dark);
}

/* ── Mobile accordion ───────────────────────────────────── */
.kt-mob-section {
    border-bottom: 1px solid #f3f4f6;
}

.kt-mob-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .85rem .75rem;
    background: none;
    border: none;
    font-size: .9rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    gap: .5rem;
}

.kt-mob-toggle:hover {
    background: #f9fafb;
    border-radius: .5rem;
}

.kt-mob-toggle-left {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.kt-mob-toggle .fa-chevron-down {
    font-size: .65rem;
    transition: transform var(--kt-transition);
}

.kt-mob-toggle.kt-open .fa-chevron-down {
    transform: rotate(180deg);
}

.kt-mob-content {
    display: none;
    padding: 0 .75rem .75rem;
}

.kt-mob-content.kt-open {
    display: block;
}

.kt-mob-sub-title {
    font-size: .8rem;
    font-weight: 700;
    color: #1f2937;
    margin: .75rem 0 .4rem;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.kt-mob-sub-title i {
    font-size: .65rem;
    color: var(--kt-primary);
}

.kt-mob-list {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.kt-mob-list a {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .35rem 0;
    font-size: .875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color var(--kt-transition);
}

.kt-mob-list a i {
    font-size: .65rem;
    color: #d1d5db;
}

.kt-mob-list a:hover {
    color: var(--kt-primary-dark);
}

/* ── Footer ─────────────────────────────────────────────── */
.kt-footer {
    background: var(--kt-surface-dark);
    color: #fff;
    font-family: var(--kt-font-body);
}

.kt-footer-info-strip {
    background: var(--kt-surface-mid);
    padding: 2rem 0;
}

.kt-info-card {
    background: var(--kt-surface-dark);
    border-radius: var(--kt-radius);
    padding: 1.25rem;
    height: 100%;
}

.kt-info-card-head {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .75rem;
}

.kt-info-card-icon {
    width: 34px;
    height: 34px;
    border-radius: .45rem;
    background: rgba(79, 70, 229, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kt-primary-light);
    font-size: .875rem;
    flex-shrink: 0;
}

.kt-info-card-head span {
    font-size: .875rem;
    font-weight: 600;
}

.kt-info-card p {
    font-size: .8rem;
    color: var(--kt-text-muted);
    margin-bottom: .4rem;
    display: flex;
    align-items: flex-start;
    gap: .45rem;
}

.kt-info-card p i {
    color: var(--kt-primary-light);
    margin-top: .1rem;
    flex-shrink: 0;
}

.kt-info-card a {
    color: var(--kt-text-muted);
    text-decoration: none;
    transition: color var(--kt-transition);
}

.kt-info-card a:hover {
    color: var(--kt-primary-light);
}

.kt-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
    color: #fff;
    transition: opacity var(--kt-transition);
}

.kt-footer-cta-btn:hover {
    opacity: .88;
    color: #fff;
}

.kt-footer-cta-btn.kt-wa {
    background: #16a34a;
}

.kt-footer-cta-btn.kt-em {
    background: var(--kt-primary);
}

/* ── Footer main ────────────────────────────────────────── */
.kt-footer-main {
    padding: 3rem 0;
}

.kt-footer-logo {
    width: auto;
    margin-bottom: 1rem;
}

.kt-footer-desc {
    font-size: 16px;
    color: var(--kt-text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.kt-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: .5rem;
}

.kt-social-list a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #90A1B9;
    font-size: 18px;
    text-decoration: none;
    transition: background var(--kt-transition), border-color var(--kt-transition), color var(--kt-transition);
}

.kt-social-list a:hover {
    background: var(--kt-primary);
    border-color: var(--kt-primary);
    color: #fff;
}

.kt-footer-col-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kt-footer-link-list a {
    font-size: 14px;
    color: var(--kt-text-muted);
    text-decoration: none;
    transition: color var(--kt-transition);
}
.wp-block-heading{
    font-size: 24px;

}
.wp-block-search__inside-wrapper{
    margin-bottom: 20px;
}
.wp-block-group__inner-container.is-layout-flow.wp-block-group-is-layout-flow .wp-block-latest-comments{
    padding-left: 0px;
}

.kt-footer-link-list a:hover {
    color: var(--kt-primary-light);
}

/* ── Footer bottom bar ──────────────────────────────────── */
.kt-footer-bottom {
    border-top: 1px solid var(--kt-border);
    padding: 1rem 0;
}


.kt-footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.1rem;
}

.kt-footer-legal a {
    font-size: .75rem;
    color: #6b7280;
    text-decoration: none;
    transition: color var(--kt-transition);
}

.kt-footer-legal a:hover {
    color: var(--kt-primary-light);
}

/* ── WhatsApp FAB ───────────────────────────────────────── */
.kt-whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
    transition: transform var(--kt-transition);
}

.kt-whatsapp-fab:hover {
    transform: scale(1.08);
    color: #fff;
}

.kt-whatsapp-fab .kt-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    font-size: .6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* ── Responsive tweaks ──────────────────────────────────── */
@media (max-width: 991.98px) {
    .kt-mega-menu {
        display: none !important;
    }

    /* mega only for desktop */
    .kt-navbar-collapse {
        border-top: 1px solid #f3f4f6;
        padding: .5rem 0;
    }
}

@media (max-width: 575.98px) {
    .kt-topbar .kt-topbar-sep {
        display: none;
    }
}

/* Dummy page body so design renders nicely */
.kt-demo-body {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #e0e7ff 100%);
    text-align: center;
    padding: 3rem 1rem;
}

.kt-demo-badge {
    display: inline-block;
    background: var(--kt-primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-family: var(--kt-font-head);
}

.kt-demo-body h1 {
    font-family: var(--kt-font-head);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: #1e1b4b;
}

.kt-demo-body p {
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    vertical-align: middle
}

/*=========basic=========================*/
.page-item.active .page-link {
    background-color: #004ac5;
    border-color: #004ac5;
    color: #fff !important;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #004ac5 !important;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #004ac5;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top-color: rgb(222, 226, 230);
    border-right-color: rgb(222, 226, 230);
    border-bottom-color: rgb(222, 226, 230);
    border-left-color: rgb(222, 226, 230);
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.widget_categories {
    padding: .8rem 1rem;
}

#widget-area ul {
    list-style: none;
    padding-left: 14px;
}

#widget-area ul li {
    position: relative;
    text-align: left;
    padding-bottom: .5rem;
}

#widget-area ul li::before {
    position: absolute;
    height: 20px;
    width: 20px;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 50 50"><path fill="rgb(20, 20, 60)" d="M18.356,7.059L32.471,20.945h0L36,24.415,18.645,42.058l-3.529-3.471L29,24.473,14.885,10.588Z"></path></svg>') no-repeat;
    background-size: auto;
    background-size: 14px 14px;
    top: 5px;
    margin-left: -20px;
}

.card-shadow {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgba(191, 191, 191, .35);
}

.br20 {
    border-radius: 20px
}
 /* ============================================================
       Site Custom Styles  |  prefix: kt-
    ============================================================ */
 :root {
     --kt-primary: #00ADEF;
     --kt-primary-dark: #0090C8;
     --kt-primary-light: #5CD2FF;
     --kt-surface-dark: #070b14;
     --kt-surface-mid: #252540;
     --kt-text-muted: #9ca3af;
     --kt-border: rgba(255, 255, 255, .1);
     --kt-radius: .75rem;
     --kt-font-head: 'Inter', sans-serif;
     --kt-font-body: 'Inter', sans-serif;
     --kt-transition: .2s ease;
 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
 }

 body {
     font-family: var(--kt-font-body);
     margin: 0;
 }

 /* ── Topbar ─────────────────────────────────────────────── */
 .kt-topbar {
     background: var(--kt-surface-dark);
     color: #fff;
     font-size: .75rem;
     padding: .4rem 1rem;
 }

 .kt-topbar a {
     color: rgba(255, 255, 255, .8);
     text-decoration: none;
     white-space: nowrap;
     transition: color var(--kt-transition);
 }

 .kt-topbar a:hover {
     color: var(--kt-primary-light);
 }

 .kt-topbar-sep {
     color: rgba(255, 255, 255, .25);
 }

 /* ── Navbar shell ───────────────────────────────────────── */
 .kt-navbar {
     background: #fff;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
     position: sticky;
     top: 0;
     z-index: 1040;
     font-family: var(--kt-font-head);
 }

 .kt-navbar .navbar-brand img {
     height: 52px;
     width: auto;
 }

 .kt-navbar .navbar-toggler {
     border: none;
     padding: .35rem .5rem;
     color: #374151;
 }

 .kt-navbar .navbar-toggler:focus {
     box-shadow: none;
 }

 /* ── Nav links ──────────────────────────────────────────── */

 

 /* ── CTA button ─────────────────────────────────────────── */
 .kt-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: .45rem;
     background: var(--kt-primary);
     color: #fff !important;
     font-size: .875rem;
     font-weight: 600;
     padding: .6rem 1.25rem;
     border-radius: 999px;
     text-decoration: none;
     white-space: nowrap;
     transition: background var(--kt-transition), transform var(--kt-transition);
     font-family: var(--kt-font-head);
 }

 .kt-cta-btn:hover {
     background: var(--kt-primary-dark);
     transform: translateY(-1px);
 }

 /* ── Hover dropdown wrapper ─────────────────────────────── */
 .kt-dropdown-wrapper {
     position: relative;
 }

 .kt-dropdown-panel {
     position: absolute;
     top: calc(100% + 8px);
     left: 0;
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: var(--kt-radius);
     box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
     min-width: 220px;
     padding: .5rem 0;
     display: none;
     z-index: 1100;
 }

 .kt-dropdown-panel.kt-drop-open {
     display: block;
 }

 .kt-dropdown-panel .kt-drop-item {
     display: flex;
     align-items: center;
     gap: .5rem;
     padding: .55rem 1.1rem;
     font-size: .875rem;
     color: #4b5563;
     text-decoration: none;
     transition: color var(--kt-transition), background var(--kt-transition);
     white-space: nowrap;
 }

 .kt-dropdown-panel .kt-drop-item i {
     font-size: .7rem;
     color: #9ca3af;
     width: 14px;
     text-align: center;
     flex-shrink: 0;
 }

 .kt-dropdown-panel .kt-drop-item:hover {
     color: var(--kt-primary-dark);
     background: #e6f7fd;
 }

 /* ── Mega menu ──────────────────────────────────────────── */
 .kt-mega-wrapper {
     position: static !important;
     /* allow mega to span full container */
 }

 .kt-mega-menu {
     position: absolute;
     top: calc(100% + 8px);
     left: 50%;
     transform: translateX(-50%);
     width: min(900px, 95vw);
     background: #fff;
     border: 1px solid #e5e7eb;
     border-radius: 1.1rem;
     box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
     padding: 1.5rem;
     display: none;
     grid-template-columns: repeat(4, 1fr);
     gap: 1.5rem;
     z-index: 1100;
 }

 .kt-mega-menu.kt-mega-open {
     display: grid;
 }

 .kt-mega-col-title {
     font-size: .875rem;
     font-weight: 700;
     color: #1f2937;
     margin-bottom: .65rem;
     display: flex;
     align-items: center;
     gap: .4rem;
 }

 .kt-mega-col-title i {
     font-size: .7rem;
     color: var(--kt-primary);
 }

 .kt-mega-list {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: .45rem;
 }

 .kt-mega-list a {
     display: flex;
     align-items: center;
     gap: .45rem;
     font-size: .875rem;
     color: #6b7280;
     text-decoration: none;
     transition: color var(--kt-transition);
 }

 .kt-mega-list a i {
     font-size: .7rem;
     color: #d1d5db;
     width: 14px;
 }

 .kt-mega-list a:hover {
     color: var(--kt-primary-dark);
 }

 /* ── Mobile accordion ───────────────────────────────────── */
 .kt-mob-section {
     border-bottom: 1px solid #f3f4f6;
 }

 .kt-mob-toggle {
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
     padding: .85rem .75rem;
     background: none;
     border: none;
     font-size: .9rem;
     font-weight: 600;
     color: #374151;
     cursor: pointer;
     gap: .5rem;
 }

 .kt-mob-toggle:hover {
     background: #f9fafb;
     border-radius: .5rem;
 }

 .kt-mob-toggle-left {
     display: flex;
     align-items: center;
     gap: .5rem;
 }

 .kt-mob-toggle .fa-chevron-down {
     font-size: .65rem;
     transition: transform var(--kt-transition);
 }

 .kt-mob-toggle.kt-open .fa-chevron-down {
     transform: rotate(180deg);
 }

 .kt-mob-content {
     display: none;
     padding: 0 .75rem .75rem;
 }

 .kt-mob-content.kt-open {
     display: block;
 }

 .kt-mob-sub-title {
     font-size: .8rem;
     font-weight: 700;
     color: #1f2937;
     margin: .75rem 0 .4rem;
     display: flex;
     align-items: center;
     gap: .4rem;
 }

 .kt-mob-sub-title i {
     font-size: .65rem;
     color: var(--kt-primary);
 }

 .kt-mob-list {
     list-style: none;
     padding: 0 0 0 1rem;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: .2rem;
 }

 .kt-mob-list a {
     display: flex;
     align-items: center;
     gap: .45rem;
     padding: .35rem 0;
     font-size: .875rem;
     color: #6b7280;
     text-decoration: none;
     transition: color var(--kt-transition);
 }

 .kt-mob-list a i {
     font-size: .65rem;
     color: #d1d5db;
 }

 .kt-mob-list a:hover {
     color: var(--kt-primary-dark);
 }

 /* ── Footer ─────────────────────────────────────────────── */
 .kt-footer {
     background: var(--kt-surface-dark);
     color: #fff;
     font-family: var(--kt-font-body);
 }

 .kt-footer-info-strip {
     background: var(--kt-surface-mid);
     padding: 2rem 0;
 }

 .kt-info-card {
     background: var(--kt-surface-dark);
     border-radius: var(--kt-radius);
     padding: 1.25rem;
     height: 100%;
 }

 .kt-info-card-head {
     display: flex;
     align-items: center;
     gap: .7rem;
     margin-bottom: .75rem;
 }

 .kt-info-card-icon {
     width: 34px;
     height: 34px;
     border-radius: .45rem;
     background: rgba(79, 70, 229, .15);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--kt-primary-light);
     font-size: .875rem;
     flex-shrink: 0;
 }

 .kt-info-card-head span {
     font-size: .875rem;
     font-weight: 600;
 }

 .kt-info-card p {
     font-size: .8rem;
     color: var(--kt-text-muted);
     margin-bottom: .4rem;
     display: flex;
     align-items: flex-start;
     gap: .45rem;
 }

 .kt-info-card p i {
     color: var(--kt-primary-light);
     margin-top: .1rem;
     flex-shrink: 0;
 }

 .kt-info-card a {
     color: var(--kt-text-muted);
     text-decoration: none;
     transition: color var(--kt-transition);
 }

 .kt-info-card a:hover {
     color: var(--kt-primary-light);
 }

 .kt-footer-cta-btn {
     display: inline-flex;
     align-items: center;
     gap: .4rem;
     font-size: .8rem;
     padding: .5rem 1rem;
     border-radius: .5rem;
     text-decoration: none;
     color: #fff;
     transition: opacity var(--kt-transition);
 }

 .kt-footer-cta-btn:hover {
     opacity: .88;
     color: #fff;
 }

 .kt-footer-cta-btn.kt-wa {
     background: #16a34a;
 }

 .kt-footer-cta-btn.kt-em {
     background: var(--kt-primary);
 }

 /* ── Footer main ────────────────────────────────────────── */
 .kt-footer-main {
     padding: 3rem 0;
 }

 .kt-footer-logo {
     width: auto;
     margin-bottom: 1rem;
 }

 .kt-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 17px;
 }

 .kt-footer-link-list a:hover {
     color: var(--kt-primary-light);
 }

 /* ── Footer bottom bar ──────────────────────────────────── */
 .kt-footer-bottom {
     border-top: 1px solid var(--kt-border);
     padding: 1rem 0;
 }

 .kt-footer-bottom p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
 }

 .kt-footer-legal {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     gap: 1.1rem;
 }

 .kt-footer-legal a {
     font-size: .75rem;
     color: #6b7280;
     text-decoration: none;
     transition: color var(--kt-transition);
 }

 .kt-footer-legal a:hover {
     color: var(--kt-primary-light);
 }

 /* ── WhatsApp FAB ───────────────────────────────────────── */
 .kt-whatsapp-fab {
     position: fixed;
     bottom: 1.5rem;
     right: 1.5rem;
     z-index: 9999;
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: #25D366;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.5rem;
     text-decoration: none;
     box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
     transition: transform var(--kt-transition);
 }

 .kt-whatsapp-fab:hover {
     transform: scale(1.08);
     color: #fff;
 }

 .kt-whatsapp-fab .kt-fab-badge {
     position: absolute;
     top: -4px;
     right: -4px;
     width: 20px;
     height: 20px;
     background: #ef4444;
     border-radius: 50%;
     font-size: .6rem;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
 }

 /* ── Responsive tweaks ──────────────────────────────────── */
 @media (max-width: 991.98px) {
     .kt-mega-menu {
         display: none !important;
     }

     /* mega only for desktop */
     .kt-navbar-collapse {
         border-top: 1px solid #f3f4f6;
         padding: .5rem 0;
     }
 }

 @media (max-width: 575.98px) {
     .kt-topbar .kt-topbar-sep {
         display: none;
     }
 }

 /* Dummy page body so design renders nicely */
 .kt-demo-body {
     min-height: 60vh;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #e0e7ff 100%);
     text-align: center;
     padding: 3rem 1rem;
 }

 .kt-demo-badge {
     display: inline-block;
     background: var(--kt-primary);
     color: #fff;
     font-size: .75rem;
     font-weight: 600;
     padding: .3rem .85rem;
     border-radius: 999px;
     margin-bottom: 1rem;
     font-family: var(--kt-font-head);
 }

 .kt-demo-body h1 {
     font-family: var(--kt-font-head);
     font-size: clamp(1.75rem, 5vw, 3rem);
     font-weight: 700;
     color: #1e1b4b;
 }

 .kt-demo-body p {
     color: #6b7280;
     max-width: 480px;
     margin: 0 auto;
 }
.avatar {
    border-radius: 50%;
}

.size-full {
    max-width: 100%;
    height: auto;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    /*  -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);
  box-shadow:inset 0 1px 1px rgba(0,0,0,.05)*/
}

.breadcrumb-white,
.breadcrumb-white a {
    color: #222222;
    padding: 5px;
}

.breadcrumb-white a:hover {
    color: #eee;
}

.post-edit-link {
    background: linear-gradient(133deg, rgb(255, 255, 255) 8%, rgb(178, 189, 255) 28%, rgba(227, 245, 255, 0.7) 36%) !important;
    color: #000072 !important;
    padding: 3px;
    font-weight: 700;
    margin: 0px 2px;
    border-radius: 5px;
}

button.gotoTop {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 180px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #0d42ff;
    padding: 10px;
    display: none;
    margin: 20px;
    border-radius: 50%;
    transition: .6s;
    border: none;
    line-height: 0;
}

button.gotoTop:hover {
    text-decoration: none;
    -webkit-transform: translateY(-5px);
    box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.25);
}


.text-wrap {
    word-wrap: break-word;
}

.post-box {
    padding: 1rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border: none;
}

table tr td {
    border: 1px solid #000;
}

/*left sidebar*/
.left_debar {
    height: 100%;
    left: 1rem;
    top: 0;
}

.table_content {
    overflow: hidden;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgb(191 191 191 / .35);
    width: 90%;
    margin-bottom: 3rem;
    margin: auto;
}

.left_debar .table_content_list {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    padding: 0 1rem;
    max-height: 300px;
    overflow-y: scroll
}

.left_debar .table_content_list {
    scrollbar-width: thin;
    scrollbar-color: #555 #DFE9EB
}

.left_debar .table_content_list::-webkit-scrollbar {
    width: 5px
}

.left_debar .table_content_list::-webkit-scrollbar-track:hover {
    background-color: #B8C0C2
}

.left_debar .table_content_list::-webkit-scrollbar-track:active {
    background-color: #B8C0C2
}

.left_debar .table_content_list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #555
}

.left_debar .table_content_list::-webkit-scrollbar-thumb:hover {
    background-color: #2A2323
}

.left_debar .table_content_list::-webkit-scrollbar-thumb:active {
    background-color: #62A34B
}

.left_debar .table_content_list li {
    border-bottom: solid 1px #d1d1d1
}

.left_debar .table_content_list li ul li:first-child,
.left_debar .table_content_list li ol li:first-child {
    border-top: solid 1px #d1d1d1;
}

.left_debar .table_content_list li:last-child {
    border-bottom: none
}

.left_debar .table_content_list li a {
    display: block;
    margin: .7rem 0;
    font-size: .875rem;
    font-weight: 600;
    color: #000;
}

.left_debar .table_content_list li a:hover {
    color: #000;
    display: block;
    margin: .7rem 0;
    font-size: .875rem;
    /* font-weight:600*/
}

.teable_title {
    padding: .8rem 1rem;
}

.left_debar .banner_image {
    overflow: hidden;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 1px 10px 0 rgb(191 191 191 / .35);
    width: 276px;
    position: sticky;
    top: 5rem;
    margin-bottom: 4rem;
}

.left_debar .hide {
    float: right;
    background: rgb(39, 104, 205);
    background: linear-gradient(147deg, #ffd7d9 9%, #7cacf8 78%);
    color: #0042b0;
    border-radius: 11px;
    border: 1px solid #004ac5;
    font-size: 14px;
    padding: 6px 15px;
    font-weight: bold;
    margin-top: -3px;
}

/*end sidebar*/

.card-author {
    background: #fff;
    /*  margin: 15px auto;*/
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: 0 1px 10px 0 rgb(191 191 191 / .35);
    border: none;
    background: #fff;
    width: 90%;
    overflow: hidden;
}

.cat .cat_link {
    color: #000072 !important;
    text-align: center;
    padding: 5px 15px;
    background: linear-gradient(133deg, rgb(255, 255, 255) 8%, rgb(178, 189, 255) 28%, rgba(227, 245, 255, 0.7) 36%) !important;
    border-radius: 5px;
    margin-right: 8px;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
}


.live {
    background: #004ac5;
    color: #fff !important;
    border-radius: 10px;
    border: 2px solid #004ac5;
}

.live:hover {
    background: #003da2;
    color: #fff !important;
    border-radius: 10px;
    border: 2px solid #003da2;
}

.btn-main {
    background: #7236BF;
    color: #fff !important;
    border-radius: 10px;
    border: 2px solid #7236BF;
}

.btn-main:hover {
    background: #5a269e;
    color: #fff !important;
    border: 2px solid #5a269e;
}

.btn-danger {
    color: #fff !important;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-success {
    color: #fff !important;
    background-color: #198754;
    border-color: #198754;
}

.btn-orange {
    background-color: #004ac5;
    color: #fff;
    border-color: #004ac5;
}

.btn-orange:hover {
    background-color: #d93902;
    color: #fff;
    border-color: #d93902;
}

.btn-download {
    background: linear-gradient(45deg, #004ac5, #cd00eb);
    color: #fff;
    padding: 0.4em 1.3rem;
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    margin-right: 10px;
}

.btn-download:hover {
    background: linear-gradient(45deg, #cd00eb, #004ac5);
    color: #fff;
    text-decoration: none;
}

.btn-buy {
    background: linear-gradient(45deg, transparent, transparent);
    color: #004ac5;
    border: 1px solid #004ac5;
    padding: 0.4em 1.3rem;
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    margin-right: 10px;
}

.btn-buy:hover {
    background: linear-gradient(45deg, #cd00eb, #004ac5);
    color: #fff;
    text-decoration: none;
}




/*Extra CSS*/
blockquote {
    position: relative;
    padding: 20px 20px;
    margin: 20px 0;
    background-color: #004ac514;
    color: #000;
    font-size: 16px;
}

blockquote:after {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(147deg, #f53843 9%, #2f5795 78%);
    content: "";
    left: 0;
    top: 0;
    border-radius: 20px;
}

blockquote.quote:before {
    font-size: 50px;
    line-height: 1;
    top: 30px;
    left: 25px;
    content: '\275D';
    color: #2f5795;
}

.table-plans {
    box-shadow: 0px 0px 20px 0px rgba(66, 86, 250, 0.24);
    border: 1px solid #c0daff;
    border-radius: 10px;
}

.table-plans .table {
    /* border-color: #c0daff;*/
    border: 1px solid #c0daff;
}

.table-plans .table> :not(caption)>*>* {
    padding: 1.3rem 0.5rem;
}

.list-arrow,
.list-note,
.list-bookmark {
    list-style: none;
    padding-left: 20px;
}

.list-arrow li,
.list-note li,
.list-bookmark li {
    margin-top: 15px;
    margin-left: 10px;
}

.list-arrow li:before {
    position: absolute;
    height: 20px;
    width: 20px;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 16 16"><path fill="rgba(225, 31, 38)" d="M9.707 13.707l5-5c0.391-0.39 0.391-1.024 0-1.414l-5-5c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414l3.293 3.293h-9.586c-0.552 0-1 0.448-1 1s0.448 1 1 1h9.586l-3.293 3.293c-0.195 0.195-0.293 0.451-0.293 0.707s0.098 0.512 0.293 0.707c0.391 0.391 1.024 0.391 1.414 0z"></path></svg>') no-repeat;
    background-size: 18px 18px;
    margin-left: -30px;
    margin-top: 2px;
}

.list-note li:before {
    position: absolute;
    height: 20px;
    width: 20px;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 16 16"><path fill="rgba(236, 111, 37,.9)" d="M14.5 2h-4.5c0-1.105-0.895-2-2-2s-2 0.895-2 2h-4.5c-0.276 0-0.5 0.224-0.5 0.5v13c0 0.276 0.224 0.5 0.5 0.5h13c0.276 0 0.5-0.224 0.5-0.5v-13c0-0.276-0.224-0.5-0.5-0.5zM8 1c0.552 0 1 0.448 1 1s-0.448 1-1 1c-0.552 0-1-0.448-1-1s0.448-1 1-1zM14 15h-12v-12h2v1.5c0 0.276 0.224 0.5 0.5 0.5h7c0.276 0 0.5-0.224 0.5-0.5v-1.5h2v12z"></path><path fill="rgba(236, 111, 37,.9)" d="M7 13.414l-3.207-3.707 0.914-0.914 2.293 1.793 4.293-3.793 0.914 0.914z"></path></svg>') no-repeat;
    background-size: 18px 18px;
    margin-left: -30px;
    margin-top: 2px;
}

.list-bookmark li:before {
    position: absolute;
    height: 20px;
    width: 20px;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 16 16"><path fill="rgba(47, 87, 149)" d="M3 0v16l5-5 5 5v-16z"></path></svg>') no-repeat;
    background-size: 18px 18px;
    margin-left: -30px;
    margin-top: 5px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #fff;
    padding-right: 15px;
}

.meta-item .icon {
    font-size: 29px;
}

.meta-white small {
    color: #fff;
    font-size: 18px;
}

.meta-white strong {
    color: #fff;
    font-size: 22px;
}

.listing-footer_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-footer_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer li a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.footer-icon-call {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-icon-call i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background: #fff;
    color: #000 !important;
    border-radius: 5px;
}

.footer-call-cont {
    font-weight: 300;
    font-size: 11px;
}

.secont_bussiness ul.same_ul {
    padding-left: 20px;
}

ul.same_ul li {
    margin-right: 25px;
}

.same_ul li {
    list-style: circle;
    color: #fff;
}

.same_ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
}

footer li a {
    font-size: 13px;
}

.copyright_style {
    padding: 10px 0px 0px 0px;
    font-size: 16px;
    color: #fff;
}

.copyright_style a {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
}

@media(max-width:991px) {
    .blog-meta {
        flex-direction: column;
    }

    .meta-item {
        border-right: none;
        border-top: 1px solid #fff;
        padding-top: 10px;
    }
}


.hero-banner.with-bg {
    background: #f1f3f4 url("https://thetechdigital.com/resources/img/hero-01-desktop-1.webp");
    position: relative;
    z-index: 3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.new-control {
    padding: 8px 20px;
    border-radius: 0px;
}



.recent-author-posts {
    margin-top: 50px;
    padding: 20px;
    background: #f5f5f5;
    border-top: 2px solid #ddd;
}

.recent-author-posts h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

.author-post-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.author-post-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    width: 32.8%;
}

.author-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-post-thumb {
    width: 100%;
    height: auto;
    display: block;
}

.author-post-title {
    padding: 15px;
    font-size: 18px;
    color: #333;
    margin: 0;
}

.author-post-content {
    padding: 10px 15px 15px;
}

.author-post-date {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.related-posts {
    margin-top: 50px;
    padding: 20px;
    background-color: #f5f5f5;
    border-top: 2px solid #ddd;
}

.related-posts h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}
#block-3 {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    margin: 0px auto;
    max-width: 90%;
}
.wp-block-latest-posts__list{
    margin-bottom: 0;
    padding-left: 20px;
}
.wp-block-latest-posts__list li{
    position: relative;
    margin-bottom: 10px;
}
.wp-block-latest-posts__list li a{
    color: #d93902 !important;
    text-decoration: none;
    font-weight: 600;
}
.wp-block-latest-posts__list li::before {
    position: absolute;
    height: 20px;
    width: 20px;
    content: "";
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 50 50"><path fill="rgb(20, 20, 60)" d=" M18.356, 7.059L32.471, 20.945h0L36, 24.415, 18.645, 42.058l-3.529-3.471L29, 24.473, 14.885, 10.588Z"></path></svg>') no-repeat;
    background-size: auto;
    background-size: 14px 14px;
    top: 5px;
    margin-left: -20px;}
.related-posts-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    gap: 20px;
    flex-wrap: wrap;
}

.related-post-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
    width: 31.8%;
}

.related-post-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-post-thumb {
    width: 100%;
    height: auto;
    display: block;
}

.related-post-title {
    padding: 15px;
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* ── Flat nav (Forpips header) ──────────────────────────── */
.kt-nav-link {
    text-decoration: none;
}

.kt-nav-active {
    color: var(--kt-primary) !important;
}

.kt-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: transparent;
    border: 1.5px solid #111827;
    color: #111827 !important;
    font-size: .875rem;
    font-weight: 600;
    padding: .55rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--kt-transition), color var(--kt-transition);
    font-family: var(--kt-font-head);
}

.kt-btn-outline:hover {
    background: #111827;
    color: #fff !important;
}

@media (min-width: 992px) {
    .kt-navbar .kt-btn-outline {
        margin-left: .75rem;
    }
}

@media (max-width: 991.98px) {
    .kt-navbar-collapse .kt-btn-outline,
    .kt-navbar-collapse .kt-cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: .5rem;
    }
}

/* ── Footer disclaimer strip ────────────────────────────── */
.kt-footer-disclaimer {
    border-top: 1px solid var(--kt-border);
    padding: 1.5rem 0;
}

.kt-footer-disclaimer p {
    font-size: 14px;
    line-height: 1.75;
    color: #8a93a6;
    margin: 0;
}

.kt-footer-disclaimer strong {
    color: #cbd5e1;
}

/* ── Single post hero ───────────────────────────────────── */
.kt-post-hero {
    background: #eef1f5;
    padding: 2.5rem 0 3rem;
}

.kt-post-breadcrumb {
    font-size: .85rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
}

.kt-post-breadcrumb a {
    color: var(--kt-primary-dark);
    text-decoration: none;
}

.kt-post-breadcrumb a:hover {
    color: var(--kt-primary);
    text-decoration: underline;
}

.kt-post-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    padding: 2rem 2.25rem 1.75rem;
}

.kt-post-cat-badge {
    display: inline-block;
    background: #e6f7fd;
    color: var(--kt-primary-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: .4rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.kt-post-title {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
}

.kt-post-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--kt-primary);
    border-radius: 2px;
}

.kt-post-meta {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid #eef0f2;
}

.kt-post-meta-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    border-right: 1px solid #e5e7eb;
}

.kt-post-meta-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.kt-post-meta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.kt-post-meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e6f7fd;
    color: var(--kt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.kt-post-meta-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #9ca3af;
}

.kt-post-meta-value {
    font-size: .9rem;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
}

.kt-post-meta-social {
    width: 20px;
    height: 20px;
    border-radius: .25rem;
    background: #0a66c2;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.kt-post-notice {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #e9f6fd;
    color: #374151;
    font-size: .85rem;
    padding: .85rem 1.1rem;
    border-radius: .6rem;
    margin-top: 1.5rem;
}

.kt-post-notice i {
    color: var(--kt-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.kt-post-notice a {
    color: var(--kt-primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.kt-post-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .kt-post-meta-item {
        width: 100%;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

.kt-post-body {
    padding-top: 1.75rem;
}

/* ── Author bio card ────────────────────────────────────── */
.kt-author-card {
    background: #fff;
    border: 1.5px solid var(--kt-primary);
    border-radius: 1rem;
    padding: 1.75rem 2rem;
    margin-top: 1.5rem;
}

.kt-author-badge {
    display: inline-block;
    background: #e6f7fd;
    color: var(--kt-primary-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: .4rem;
    margin-bottom: 1.1rem;
}

.kt-author-body {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.kt-author-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #cdeefb;
    flex-shrink: 0;
}

.kt-author-info {
    flex: 1;
    min-width: 0;
}

.kt-author-name {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.kt-author-role {
    font-size: .85rem;
    font-weight: 600;
    color: var(--kt-primary-dark);
    margin-top: .3rem;
}

.kt-author-desc {
    font-size: .9rem;
    line-height: 1.65;
    color: #4b5563;
    margin: .75rem 0 1.1rem;
}

.kt-author-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #111827;
    color: #fff !important;
    font-size: .85rem;
    font-weight: 600;
    padding: .65rem 1.25rem;
    border-radius: .6rem;
    text-decoration: none;
    transition: background var(--kt-transition);
}

.kt-author-btn:hover {
    background: #000;
}

@media (max-width: 575.98px) {
    .kt-author-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kt-author-name,
    .kt-author-role {
        justify-content: center;
    }
}
