/* Hero - KTMT Engineer Image Focus
   Tập trung làm nổi bật ảnh người kỹ sư + hệ thống xử lý.
   Đã gom và thay thế các rule hero lặp: badge-new, ping-dot, hero-meta,
   btn-cta, btn-discover, hero-title, wave, illustration/chip cũ.
========================================================= */
.hero-ktmt {
    --hero-primary: #0f3d61;
    --hero-primary-dark: #0f172a;
    --hero-emerald: #10b981;
    --hero-sky: #0ea5e9;
    --hero-text: #1f2937;
    --hero-muted: #64748b;
    --hero-soft-bg: #f4f9f6;

    position: relative;
    min-height: 720px;
    color: var(--hero-text);
    isolation: isolate;
    overflow: hidden;
    background: var(--hero-bg) center right / cover no-repeat;
    font-family: 'Mulish', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--hero-bg) center right / cover no-repeat;
    transform: scale(1.01);
    pointer-events: none;
}

/* Overlay mở mạnh về bên phải để lộ người kỹ sư và hệ thống */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(244, 249, 246, .99) 0%,
            rgba(244, 249, 246, .97) 28%,
            rgba(244, 249, 246, .86) 43%,
            rgba(244, 249, 246, .48) 58%,
            rgba(244, 249, 246, .16) 74%,
            rgba(244, 249, 246, .02) 100%);
    pointer-events: none;
}

.hero-visual-glow {
    position: absolute;
    right: -120px;
    top: 8%;
    z-index: 1;
    width: 52vw;
    height: 82%;
    background:
        radial-gradient(circle at 58% 42%, rgba(14, 165, 233, .22), transparent 42%),
        radial-gradient(circle at 72% 62%, rgba(16, 185, 129, .18), transparent 38%);
    filter: blur(2px);
    opacity: .75;
    pointer-events: none;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
}

.hero-row {
    min-height: 720px;
    padding: 30px 0 120px;
}

/* Badge/Kicker: hỗ trợ cả class mới .hero-kicker và class cũ .badge-new */
.hero-kicker,
.hero-ktmt .badge-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 17px;
    border-radius: 999px;
    color: #164e63;
    font-size: .9rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(16, 185, 129, .2);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ping-dot-wrapper {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
}

.ping-dot {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hero-emerald);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .12);
    flex: 0 0 auto;
}

.ping-dot-pulse,
.ping-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--hero-emerald);
    animation: heroPulse 1.9s ease-out infinite;
    opacity: .55;
}

.hero-title {
    max-width: 720px;
    color: var(--hero-primary-dark);
    font-size: clamp(2.35rem, 4.5vw, 4.25rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.045em;
    text-shadow: none;
}

.hero-title span,
.hero-title .text-accent {
    display: block;
    margin-top: 4px;
    color: transparent;
    background: linear-gradient(135deg, #0f3d61 0%, #0ea5e9 48%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.text-accent {
    color: #0094c9;
}

.hero-summary {
    max-width: 620px;
}

.hero-summary p {
    margin: 0;
    color: var(--hero-text);
    font-size: 1.125rem;
    line-height: 1.72;
    font-weight: 500;
}

.hero-actions .btn {
    min-height: 54px;
    padding: 0 30px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.hero-ktmt .btn-cta {
    color: #fff !important;
    border: none;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    box-shadow: 0 16px 34px rgba(14, 165, 233, .26);
}

.hero-ktmt .btn-cta:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(14, 165, 233, .34);
}

.hero-ktmt .btn-discover {
    color: var(--hero-primary) !important;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(15, 61, 97, .14);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-ktmt .btn-discover:hover {
    color: var(--hero-sky) !important;
    background: #fff;
    border-color: rgba(14, 165, 233, .36);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(14, 165, 233, .12);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #115e59;
    font-size: .86rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(16, 185, 129, .16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-trust i {
    color: var(--hero-emerald);
    font-size: .78rem;
}

.hero-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--hero-text);
}

.hero-meta li,
.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    padding: 12px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.hero-meta li:hover,
.meta-item:hover {
    color: var(--hero-primary);
    transform: translateY(-2px);
    background: #fff;
}

.meta-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857;
    background: rgba(16, 185, 129, .11);
    font-size: 1.05rem;
    flex: 0 0 auto;
}

.meta-text {
    display: flex;
    flex-direction: column;
}

.meta-text strong,
.hero-meta strong {
    color: var(--hero-primary);
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.05;
}

.meta-text span,
.hero-meta span {
    margin-top: 4px;
    color: var(--hero-muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.count {
    color: inherit;
    font-weight: inherit;
}

/* Vùng ảnh bên phải: không dùng card, chỉ tạo khoảng thở cho visual */
.hero-visual-space {
    position: relative;
    min-height: 520px;
    height: 100%;
}

.hero-visual-space::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 72%;
    height: 34%;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, .16), transparent 68%);
    filter: blur(16px);
    opacity: .5;
}

.visual-chip {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--hero-primary);
    font-size: .8rem;
    font-weight: 800;
    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(255, 255, 255, .78);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.visual-chip i {
    color: var(--hero-emerald);
}

.visual-chip-1 {
    right: 8%;
    top: 20%;
}

.visual-chip-2 {
    right: 28%;
    bottom: 22%;
}

/* Trường hợp HTML cũ còn right card thì ẩn card để không che ảnh */
.hero-ktmt .hero-interactive-card,
.hero-ktmt .card-glass-header,
.hero-ktmt .card-glass-body,
.hero-ktmt .search-box-hero,
.hero-ktmt .quick-tags {
    display: none !important;
}

.hero-wave-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.hero-wave {
    display: block;
    width: 100%;
    height: 66px;
    fill: #fff;
}

.hero-wave path {
    fill: #fff;
}

@keyframes heroPulse {
    0% {
        transform: scale(1);
        opacity: .75;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

@media (max-width: 1199.98px) {
    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(244, 249, 246, .99) 0%,
                rgba(244, 249, 246, .96) 34%,
                rgba(244, 249, 246, .75) 55%,
                rgba(244, 249, 246, .16) 100%);
    }

    .hero-title {
        font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    }
}

@media (max-width: 991.98px) {
    .hero-ktmt {
        min-height: auto;
        background-position: center top;
    }

    .hero-bg {
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(244, 249, 246, .97) 0%,
                rgba(244, 249, 246, .94) 52%,
                rgba(244, 249, 246, .88) 100%);
    }

    .hero-visual-glow {
        width: 100%;
        height: 45%;
        right: 0;
        top: 0;
        opacity: .42;
    }

    .hero-row {
        min-height: auto;
        padding: 30px 0 104px;
    }

    .hero-summary {
        max-width: 100%;
    }

    .visual-chip {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-row {
        padding: 20px 0 88px;
    }

    .hero-kicker,
    .hero-ktmt .badge-new {
        font-size: .82rem;
        padding: 7px 13px;
    }

    .hero-title {
        font-size: 2.12rem;
        line-height: 1.1;
        letter-spacing: -.035em;
    }

    .hero-summary p {
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 52px;
        padding: 0 20px;
    }

    .hero-trust {
        gap: 8px;
    }

    .hero-trust span {
        font-size: .8rem;
        padding: 7px 10px;
    }

    .hero-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-meta li,
    .meta-item {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-wave {
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ping-dot-pulse,
    .ping-dot::before {
        animation: none;
        opacity: .35;
    }

    .hero-actions .btn,
    .hero-meta li,
    .meta-item {
        transition: none;
    }
}
/* ============================================== */
/* About */
/* ============================================== */
.modern-checklist li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.modern-checklist li::before {
    content: "\f058";
    /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #16A34A;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

.text-gradient {
    background: linear-gradient(90deg, #0EA5E9, #22C55E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Badge */
.bg-premium {
    background-color: var(--bg-premium);
}

.bg-basic {
    background-color: var(--bg-basic);
}

/* Đảm bảo toast luôn trên cùng mọi thứ */
.toast,
.toast-container {
    z-index: 2147483647 !important;
}

/* share-box */
.share-btn {
    border-radius: 999px;
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.share-btn i {
    font-size: 0.85rem;
}

/* Hover nhẹ nhàng */
.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
/* =========================================================
   KTMT Pipe Tool - Modern UI (Bootstrap 5)
   Keep IDs untouched; style by classes only.
   ========================================================= */

:root {
    --text-color: rgb(28, 83, 121);
    --ktmt-accent: #0d6efd;
    --ktmt-ink: #0b1220;
    --ktmt-muted: rgba(11, 18, 32, .72);
    --ktmt-line: rgba(11, 18, 32, .10);
    --ktmt-card: rgba(255, 255, 255, .92);
    --ktmt-radius: 18px;
}

.ktmt-tool .ktmt-subject-header {
    padding: 18px 18px;
    background: linear-gradient(180deg, rgba(13, 110, 253, .08), rgba(13, 110, 253, 0));
    border: 1px solid var(--ktmt-line);
    border-radius: var(--ktmt-radius);
}

.ktmt-tool .ktmt-subject-title {
    font-weight: 900;
    letter-spacing: .2px;
    color: var(--ktmt-ink);
}

.ktmt-tool .ktmt-subject-desc {
    color: var(--ktmt-muted);
    line-height: 1.65;
    max-width: 85ch;
}

.ktmt-tool .ktmt-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--ktmt-line);
    background: rgba(255, 255, 255, .7);
    font-weight: 800;
    font-size: 13px;
    color: var(--ktmt-ink);
}

.ktmt-tool .ktmt-meta {
    color: var(--ktmt-muted);
    font-size: 14px;
}

/* HERO */
.ktmt-tool-hero .ktmt-tool-hero-inner {
    padding: 22px 18px;
    border-radius: var(--ktmt-radius);
    border: 1px solid var(--ktmt-line);
    background:
        radial-gradient(1000px 400px at 10% 0%, rgba(13, 110, 253, .20), transparent 55%),
        radial-gradient(900px 360px at 90% 10%, rgba(25, 135, 84, .16), transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .82));
    backdrop-filter: blur(6px);
}

.ktmt-tool-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    border: 1px solid rgba(13, 110, 253, .25);
    background: rgba(13, 110, 253, .08);
    color: rgba(13, 110, 253, 1);
    margin-bottom: 10px;
}

.ktmt-tool-title {
    font-weight: 950;
    letter-spacing: .2px;
    color: var(--ktmt-ink);
    margin: 0;
}

.ktmt-tool-sub {
    color: var(--ktmt-muted);
    line-height: 1.65;
    max-width: 92ch;
}

.ktmt-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--ktmt-line);
    background: rgba(255, 255, 255, .7);
    color: var(--ktmt-ink);
    font-weight: 800;
    font-size: 13px;
}

/* CARD */
.ktmt-card {
    border: 1px solid var(--ktmt-line);
    border-radius: var(--ktmt-radius);
    background: var(--ktmt-card);
    box-shadow: 0 10px 30px rgba(11, 18, 32, .08);
}

.ktmt-section-kicker {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(13, 110, 253, .9);
}

.ktmt-section-title {
    font-size: 18px;
    font-weight: 950;
    color: var(--text-color);
    letter-spacing: -.035em;
    line-height: 1.12;
}

.ktmt-mini-note {
    font-size: 13px;
    color: var(--ktmt-muted);
    padding: 8px 10px;
    border: 1px dashed var(--ktmt-line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .7);
}

/* FORM polish */
.ktmt-tool .input-group-text {
    background: rgba(13, 110, 253, .06);
    border-color: var(--ktmt-line);
}

.ktmt-tool .form-control,
.ktmt-tool .form-select {
    border-color: var(--ktmt-line);
}

.ktmt-tool .form-control:focus,
.ktmt-tool .form-select:focus {
    border-color: rgba(13, 110, 253, .45);
    box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .10);
}

.ktmt-side-note {
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(25, 135, 84, .20);
    background: rgba(25, 135, 84, .06);
    color: rgba(11, 18, 32, .85);
}

/* Sticky input card */
.ktmt-sticky {
    position: sticky;
    top: 88px;
    /* chỉnh theo header của bạn */
}

/* Status pill */
.ktmt-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    border: 1px solid var(--ktmt-line);
    background: rgba(255, 255, 255, .8);
    color: var(--ktmt-muted);
}

/* KPI cards */
.ktmt-kpi-card {
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid var(--ktmt-line);
    background: rgba(13, 110, 253, .03);
}

.ktmt-kpi-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ktmt-muted);
}

.ktmt-kpi-value {
    font-size: 18px;
    font-weight: 950;
    color: var(--ktmt-ink);
    margin-top: 4px;
}

.ktmt-kpi-sub {
    font-size: 12px;
    color: var(--ktmt-muted);
    margin-top: 6px;
}

/* Mini cards */
.ktmt-mini-card {
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid var(--ktmt-line);
    background: rgba(255, 255, 255, .7);
}

.ktmt-mini-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ktmt-muted);
}

.ktmt-mini-value {
    font-size: 14px;
    font-weight: 900;
    color: var(--ktmt-ink);
    margin-top: 4px;
}

.ktmt-mini-sub {
    font-size: 12px;
    color: var(--ktmt-muted);
    margin-top: 4px;
}

/* Table */
.ktmt-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(11, 18, 32, .75);
    border-bottom-color: rgba(11, 18, 32, .12);
}

.ktmt-table tbody td {
    border-top-color: rgba(11, 18, 32, .08);
}

/* Mobile */
@media (max-width: 575.98px) {
    .ktmt-tool-hero .ktmt-tool-hero-inner {
        padding: 18px 14px;
    }

    .ktmt-sticky {
        position: static;
        top: auto;
    }
}
/* BANNER-NEWATER */
.newater-home-strip {
    position: relative;
}

.newater-home-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    background: linear-gradient(90deg, #f6fff8 0%, #eefaf3 50%, #f8fcff 100%);
    border: 1px solid #d8eadb;
    border-left: 5px solid #1f9d45;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.newater-home-strip__left {
    flex: 1 1 auto;
}

.newater-home-strip__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #1f9d45;
    margin-bottom: 8px;
}

.newater-home-strip__title {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 800;
    color: #0f4c81;
}

.newater-home-strip__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.newater-home-strip__right {
    flex: 0 0 auto;
}

.newater-home-strip__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 22px;
    border-radius: 10px;
    background: #1f9d45;
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: .2s ease;
    box-shadow: 0 6px 16px rgba(31, 157, 69, .22);
}

.newater-home-strip__btn:hover {
    background: #17803a;
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .newater-home-strip__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .newater-home-strip__title {
        font-size: 24px;
    }

    .newater-home-strip__desc {
        font-size: 15px;
    }

    .newater-home-strip__right {
        width: 100%;
    }

    .newater-home-strip__btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .newater-home-strip__title {
        font-size: 22px;
    }

    .newater-home-strip__desc {
        font-size: 14px;
    }
}

/* =========================================================
   KTMT Home Sections - Unified Professional UI
========================================================= */

.ktmt-home-section {
    margin-bottom: 4rem;
}

/* Section header */
.ktmt-home-head {
    position: relative;
    padding: 24px 26px;
    border-radius: 24px;
    background:
        radial-gradient(800px 260px at 8% 0%, rgba(14, 165, 233, .12), transparent 58%),
        radial-gradient(700px 240px at 88% 10%, rgba(16, 185, 129, .12), transparent 56%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,250,.88));
    border: 1px solid rgba(15, 61, 97, .08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.ktmt-home-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 61, 97, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 61, 97, .035) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: .42;
    pointer-events: none;
}

.ktmt-home-head > * {
    position: relative;
    z-index: 1;
}

.ktmt-home-title {
    position: relative;
    display: inline-block;
    margin: 0 0 12px;
    color: #0f172a;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.12;
    text-transform: uppercase;
}

.ktmt-home-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0ea5e9, #10b981);
}

.ktmt-home-desc {
    margin-top: 18px;
    max-width: 1080px;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.72;
    text-align: justify;
}

.ktmt-home-desc p {
    margin-bottom: 0;
}

.ktmt-home-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0f3d61;
    font-weight: 850;
    text-decoration: none;
    transition: color .22s ease, transform .22s ease;
}

.ktmt-home-link i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0ea5e9;
    background: rgba(14, 165, 233, .1);
    transition: transform .22s ease, color .22s ease, background .22s ease;
}

.ktmt-home-link:hover {
    color: #0ea5e9;
    transform: translateY(-1px);
}

.ktmt-home-link:hover i {
    color: #fff;
    background: linear-gradient(135deg, #059669, #0ea5e9);
    transform: translateX(3px);
}

/* About */
.ktmt-about-panel {
    position: relative;
    padding: 26px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(500px 240px at 12% 10%, rgba(255,255,255,.16), transparent 62%),
        linear-gradient(135deg, #0f3d61 0%, #0f766e 54%, #059669 100%);
    box-shadow: 0 24px 55px rgba(15, 61, 97, .18);
    overflow: hidden;
}

.ktmt-about-panel::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
}

.ktmt-about-panel-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 1.35rem;
}

.ktmt-about-panel h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.3;
}

.ktmt-about-panel ul {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ktmt-about-panel li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: rgba(255,255,255,.88);
    font-weight: 650;
}

.ktmt-about-panel li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #a7f3d0;
}

/* Shared image cards */
.ktmt-feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 97, .09);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.ktmt-feature-card:hover {
    color: inherit;
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, .26);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.ktmt-feature-media {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #e2e8f0;
}

.ktmt-feature-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease;
}

.ktmt-feature-card:hover .ktmt-feature-media img {
    transform: scale(1.075);
}

.ktmt-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,0) 34%, rgba(15,23,42,.44) 100%),
        radial-gradient(circle at 82% 12%, rgba(16,185,129,.26), transparent 36%);
    pointer-events: none;
}

.ktmt-feature-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    box-shadow: 0 16px 34px rgba(14, 165, 233, .28);
    font-size: 1.2rem;
}

.ktmt-feature-body {
    position: relative;
    flex: 1;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
}

.ktmt-card-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .16);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ktmt-feature-body h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.16rem;
    font-weight: 900;
    line-height: 1.28;
    letter-spacing: -.018em;
    text-transform: uppercase;
}

.ktmt-feature-body p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: .94rem;
    line-height: 1.62;
}

/* Document cards */
.ktmt-doc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 22px;
    color: inherit;
    text-decoration: none;
    border-radius: 24px;
    background:
        radial-gradient(420px 180px at 100% 0%, rgba(14, 165, 233, .11), transparent 62%),
        linear-gradient(180deg, #ffffff, #fbfefd);
    border: 1px solid rgba(15, 61, 97, .09);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .055);
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.ktmt-doc-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #10b981);
    opacity: .85;
}

.ktmt-doc-card:hover {
    color: inherit;
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, .26);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.ktmt-doc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.ktmt-doc-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #047857;
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .16);
    font-size: 1.35rem;
    flex: 0 0 auto;
}

.ktmt-doc-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.ktmt-doc-type {
    padding: 6px 10px;
    border-radius: 999px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, .09);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ktmt-doc-card-body {
    flex: 1;
}

.ktmt-doc-card-body h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.32;
    text-transform: uppercase;
}

.ktmt-doc-card-body p {
    margin: 0 0 18px;
    color: #64748b;
    font-size: .94rem;
    line-height: 1.65;
    text-align: justify;
}

/* Shared footer CTA */
.ktmt-card-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, .07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #0f3d61;
    font-weight: 850;
}

.ktmt-card-footer i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #0ea5e9;
    background: rgba(14, 165, 233, .09);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.ktmt-feature-card:hover .ktmt-card-footer i,
.ktmt-doc-card:hover .ktmt-card-footer i {
    color: #fff;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%);
    transform: translateX(4px);
}

/* Share section */
.ktmt-share-pro {
    position: relative;
    padding: 32px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(800px 320px at 12% 5%, rgba(14, 165, 233, .34), transparent 58%),
        radial-gradient(760px 300px at 88% 18%, rgba(16, 185, 129, .28), transparent 56%),
        linear-gradient(135deg, #0f172a 0%, #0f3d61 48%, #0f766e 100%);
    box-shadow: 0 26px 70px rgba(15, 23, 42, .18);
    overflow: hidden;
}

.ktmt-share-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .6;
    pointer-events: none;
}

.ktmt-share-pro > .row {
    position: relative;
    z-index: 1;
}

.ktmt-share-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-size: .82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ktmt-share-pro h2 {
    margin: 0 0 14px;
    max-width: 760px;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    font-weight: 950;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.ktmt-share-desc {
    max-width: 850px;
    color: rgba(255,255,255,.84);
    font-size: 1.02rem;
    line-height: 1.72;
}

.ktmt-share-desc p {
    margin-bottom: 0;
}

.ktmt-share-btn {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #0f172a !important;
    background: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0,0,0,.14);
    transition: transform .22s ease, box-shadow .22s ease;
}

.ktmt-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(0,0,0,.2);
}

.ktmt-share-panel {
    display: grid;
    gap: 12px;
}

.ktmt-share-panel-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ktmt-share-panel-item span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    background: #a7f3d0;
    font-weight: 950;
    flex: 0 0 auto;
}

.ktmt-share-panel-item strong {
    color: #fff;
    font-weight: 850;
}

/* Responsive */
@media (max-width: 991.98px) {
    .ktmt-home-head {
        padding: 22px 20px;
    }

    .ktmt-feature-media {
        height: 220px;
    }

    .ktmt-share-pro {
        padding: 26px 22px;
    }
}

@media (max-width: 575.98px) {
    .ktmt-home-section {
        margin-bottom: 3rem;
    }

    .ktmt-home-head {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .ktmt-home-title {
        font-size: 1.45rem;
    }

    .ktmt-home-desc {
        font-size: .96rem;
        line-height: 1.62;
    }

    .ktmt-about-panel,
    .ktmt-feature-card,
    .ktmt-doc-card,
    .ktmt-share-pro {
        border-radius: 20px;
    }

    .ktmt-feature-media {
        height: 205px;
    }

    .ktmt-feature-body {
        padding: 18px 18px 16px;
    }

    .ktmt-feature-body h3,
    .ktmt-doc-card-body h3 {
        font-size: 1.05rem;
    }

    .ktmt-share-btn {
        width: 100%;
    }
}
/* =========================================================
   FIX HOME CARD IMAGE OVERFLOW
   Knowledge + Tool Category Cards
   Place this block at the END of CSS file
========================================================= */

/* Reset layout card */
.ktmt-home-section .ktmt-feature-card,
.ktmt-home-section .ktmt-tool-cat-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100% !important;
    color: inherit !important;
    text-decoration: none !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 61, 97, .09) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06) !important;
}

/* QUAN TRỌNG: khóa chiều cao vùng ảnh */
.ktmt-home-section .ktmt-feature-media,
.ktmt-home-section .ktmt-tool-cat-media {
    position: relative !important;
    width: 100% !important;
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    background: #e2e8f0 !important;
    flex: 0 0 auto !important;
}

/* QUAN TRỌNG: ép ảnh nằm trong khung */
.ktmt-home-section .ktmt-feature-media img,
.ktmt-home-section .ktmt-tool-cat-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.01) !important;
    transition: transform .45s ease !important;
}

/* Hover ảnh */
.ktmt-home-section .ktmt-feature-card:hover .ktmt-feature-media img,
.ktmt-home-section .ktmt-tool-cat-card:hover .ktmt-tool-cat-media img {
    transform: scale(1.06) !important;
}

/* Overlay nằm trong khung ảnh, không tràn */
.ktmt-home-section .ktmt-feature-overlay,
.ktmt-home-section .ktmt-tool-cat-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0) 34%, rgba(15, 23, 42, .46) 100%),
        radial-gradient(circle at 82% 12%, rgba(16, 185, 129, .26), transparent 36%) !important;
    pointer-events: none !important;
}

/* Icon trong ảnh */
.ktmt-home-section .ktmt-feature-icon,
.ktmt-home-section .ktmt-tool-cat-icon {
    position: absolute !important;
    left: 18px !important;
    bottom: 18px !important;
    z-index: 2 !important;
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 17px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%) !important;
    box-shadow: 0 16px 34px rgba(14, 165, 233, .28) !important;
    font-size: 1.2rem !important;
}

/* Số thứ tự module */
.ktmt-home-section .ktmt-tool-cat-no {
    position: absolute !important;
    right: 18px !important;
    top: 18px !important;
    z-index: 2 !important;
    min-width: 44px !important;
    height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #0f3d61 !important;
    background: rgba(255,255,255,.82) !important;
    border: 1px solid rgba(255,255,255,.86) !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .08) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    font-size: .8rem !important;
    font-weight: 950 !important;
}

/* Body card */
.ktmt-home-section .ktmt-feature-body,
.ktmt-home-section .ktmt-tool-cat-body {
    position: relative !important;
    z-index: 1 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 22px 20px !important;
    background: #fff !important;
}

/* Label */
.ktmt-home-section .ktmt-card-label {
    display: inline-flex !important;
    width: fit-content !important;
    margin-bottom: 10px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    color: #047857 !important;
    background: rgba(16, 185, 129, .1) !important;
    border: 1px solid rgba(16, 185, 129, .16) !important;
    font-size: .72rem !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

/* Title */
.ktmt-home-section .ktmt-feature-body h3,
.ktmt-home-section .ktmt-tool-cat-body h3 {
    margin: 0 0 10px !important;
    color: #0f172a !important;
    font-size: 1.16rem !important;
    font-weight: 900 !important;
    line-height: 1.28 !important;
    letter-spacing: -.018em !important;
    text-transform: uppercase !important;
}

/* Description */
.ktmt-home-section .ktmt-feature-body p,
.ktmt-home-section .ktmt-tool-cat-body p {
    margin: 0 0 18px !important;
    color: #64748b !important;
    font-size: .94rem !important;
    line-height: 1.62 !important;
}

/* Footer CTA */
.ktmt-home-section .ktmt-card-footer {
    margin-top: auto !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(15, 23, 42, .07) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    color: #0f3d61 !important;
    font-weight: 850 !important;
}

.ktmt-home-section .ktmt-card-footer i {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    color: #0ea5e9 !important;
    background: rgba(14, 165, 233, .09) !important;
    transition: transform .25s ease, background .25s ease, color .25s ease !important;
}

.ktmt-home-section .ktmt-feature-card:hover .ktmt-card-footer i,
.ktmt-home-section .ktmt-tool-cat-card:hover .ktmt-card-footer i {
    color: #fff !important;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%) !important;
    transform: translateX(4px) !important;
}

/* Mobile */
@media (max-width: 991.98px) {
    .ktmt-home-section .ktmt-feature-media,
    .ktmt-home-section .ktmt-tool-cat-media {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
}

@media (max-width: 575.98px) {
    .ktmt-home-section .ktmt-feature-card,
    .ktmt-home-section .ktmt-tool-cat-card {
        border-radius: 20px !important;
    }

    .ktmt-home-section .ktmt-feature-media,
    .ktmt-home-section .ktmt-tool-cat-media {
        height: 205px !important;
        min-height: 205px !important;
        max-height: 205px !important;
    }

    .ktmt-home-section .ktmt-feature-body,
    .ktmt-home-section .ktmt-tool-cat-body {
        padding: 18px 18px 16px !important;
    }

    .ktmt-home-section .ktmt-feature-body h3,
    .ktmt-home-section .ktmt-tool-cat-body h3 {
        font-size: 1.05rem !important;
    }
}
/* =========================================================
   FIX KNOWLEDGE SECTION - GIF / BANNER IMAGE SAFE
   Place at END of CSS file
========================================================= */

.ktmt-knowledge-section {
    position: relative;
}

.ktmt-knowledge-section .ktmt-knowledge-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    color: inherit !important;
    text-decoration: none !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid rgba(15, 61, 97, .09) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06) !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.ktmt-knowledge-section .ktmt-knowledge-card:hover {
    color: inherit !important;
    transform: translateY(-6px) !important;
    border-color: rgba(14, 165, 233, .26) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12) !important;
}

/* Khóa vùng ảnh, tránh GIF bung toàn màn hình */
.ktmt-knowledge-section .ktmt-knowledge-media {
    position: relative !important;
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    overflow: hidden !important;
    background:
        radial-gradient(500px 180px at 20% 0%, rgba(14, 165, 233, .13), transparent 60%),
        linear-gradient(135deg, #ecfeff 0%, #f0fdf4 100%) !important;
    flex: 0 0 auto !important;
}

/* Riêng ảnh GIF/banner: dùng contain để không bị cắt chữ */
.ktmt-knowledge-section .ktmt-knowledge-media-contain img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: transparent !important;
    transform: none !important;
}

/* Không zoom GIF vì dễ gây vỡ/cắt chữ */
.ktmt-knowledge-section .ktmt-knowledge-card:hover .ktmt-knowledge-media-contain img {
    transform: none !important;
}

/* Gradient nhẹ ở đáy để icon nổi, không che ảnh GIF */
.ktmt-knowledge-section .ktmt-knowledge-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    height: 45%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, .20));
    pointer-events: none;
}

/* Icon */
.ktmt-knowledge-section .ktmt-knowledge-icon {
    position: absolute !important;
    left: 18px !important;
    bottom: 18px !important;
    z-index: 2 !important;
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 17px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%) !important;
    box-shadow: 0 16px 34px rgba(14, 165, 233, .28) !important;
    font-size: 1.2rem !important;
}

/* Body */
.ktmt-knowledge-section .ktmt-knowledge-body {
    position: relative !important;
    z-index: 1 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 22px 20px !important;
    background: #fff !important;
}

.ktmt-knowledge-section .ktmt-knowledge-body h3 {
    margin: 0 0 10px !important;
    color: #0f172a !important;
    font-size: 1.16rem !important;
    font-weight: 900 !important;
    line-height: 1.28 !important;
    letter-spacing: -.018em !important;
    text-transform: uppercase !important;
}

.ktmt-knowledge-section .ktmt-knowledge-body p {
    margin: 0 0 18px !important;
    color: #64748b !important;
    font-size: .94rem !important;
    line-height: 1.62 !important;
}

/* Mobile */
@media (max-width: 991.98px) {
    .ktmt-knowledge-section .ktmt-knowledge-media {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }
}

@media (max-width: 575.98px) {
    .ktmt-knowledge-section .ktmt-knowledge-card {
        border-radius: 20px !important;
    }

    .ktmt-knowledge-section .ktmt-knowledge-media {
        height: 195px !important;
        min-height: 195px !important;
        max-height: 195px !important;
    }

    .ktmt-knowledge-section .ktmt-knowledge-body {
        padding: 18px 18px 16px !important;
    }

    .ktmt-knowledge-section .ktmt-knowledge-body h3 {
        font-size: 1.05rem !important;
    }
}
