/* ============================================================
   SIM HOÀNG KIM — KINH DỊCH HOMEPAGE DESIGN SYSTEM
   ============================================================ */

/* Global Reset & Base Styling */
.shk-kd-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fafafa;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Custom Rules */
h1, h2, h3, .shk-hero-title, .shk-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: #1a202c;
    margin-top: 0;
}

/* Header Styling */
.shk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.shk-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shk-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.shk-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.shk-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #a67c52;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.shk-logo-text small {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #718096;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
}

/* Navigation Links */
.shk-nav {
    display: block;
}

.shk-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.shk-nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 550;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.shk-nav-link:hover {
    color: #a67c52;
}

.shk-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #a67c52;
    transition: width 0.2s ease;
}

.shk-nav-link:hover::after {
    width: 100%;
}

.shk-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4a373, #a67c52);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(166, 124, 82, 0.25);
    transition: all 0.3s ease;
}

.shk-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(166, 124, 82, 0.4);
}

/* Hero Section */
.shk-hero {
    position: relative;
    padding: 120px 20px 40px 20px; /* Clear sticky header and reduce bottom padding */
    background-color: #f7fafc;
    overflow: hidden;
}

/* Glow circles for background */
.shk-glow-orange {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.15) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    left: -100px;
    z-index: 1;
}

.shk-glow-purple {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, rgba(255,255,255,0) 70%);
    bottom: -100px;
    right: -100px;
    z-index: 1;
}

.shk-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.shk-hero-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.shk-hero-title {
    font-size: 40px;
    margin-bottom: 18px;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.shk-hero-subtitle {
    font-size: 17px;
    color: #718096;
    max-width: 650px;
    margin: 0 auto;
}

/* Premium Gradient Hero Cards */
.shk-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 25px;
    margin-top: 20px;
}

.shk-hero-card {
    border-radius: 18px;
    padding: 35px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shk-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.shk-hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Gradient Background styles */
.shk-card-main {
    background: linear-gradient(135deg, #2b1810 0%, #a67c52 100%);
    border: 1px solid rgba(212, 163, 115, 0.25);
}
.shk-card-main:hover {
    box-shadow: 0 20px 45px rgba(166, 124, 82, 0.35);
}

.shk-card-purple {
    background: linear-gradient(135deg, #170d24 0%, #683896 100%);
    border: 1px solid rgba(142, 68, 173, 0.2);
}
.shk-card-purple:hover {
    box-shadow: 0 20px 45px rgba(142, 68, 173, 0.25);
}

.shk-card-green {
    background: linear-gradient(135deg, #091c10 0%, #1e5a37 100%);
    border: 1px solid rgba(46, 204, 113, 0.2);
}
.shk-card-green:hover {
    box-shadow: 0 20px 45px rgba(30, 90, 55, 0.35);
}

.shk-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e67e22;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shk-card-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.shk-card-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.shk-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.5;
}

.shk-card-btn {
    align-self: flex-start;
    background: white;
    color: #2d3748;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shk-card-main .shk-card-btn {
    background: linear-gradient(90deg, #ffd166, #f78c1e);
    color: #fff;
    font-weight: 700;
}

.shk-hero-card:hover .shk-card-btn {
    transform: scale(1.05);
}

/* App / Tools Section */
.shk-app-section {
    padding: 70px 20px;
    background-color: #fff;
}

.shk-app-container {
    max-width: 960px;
    margin: 0 auto;
}

.shk-section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.shk-section-subtitle {
    font-size: 16px;
    color: #718096;
    text-align: center;
    margin-bottom: 45px;
}

/* Interactive Tab Controls */
.shk-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 15px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.shk-tabs-nav::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.shk-tab-btn {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.shk-tab-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

.shk-tab-btn.active {
    background: linear-gradient(135deg, #d4a373, #a67c52);
    border-color: #a67c52;
    color: white;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.25);
}

/* Tab Panes */
.shk-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
    animation-fill-mode: forwards;
}

.shk-tab-pane.active {
    display: block !important;
    opacity: 1 !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Override calculations & forms styles to fit Sim Hoàng Kim brand */
.gqkd-form-grid input, .gqkd-form-grid select, .gqkd-lh-method-area input, .gqkd-lh-method-area select {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 0 14px !important;
    box-sizing: border-box;
    transition: all 0.2s;
    background-color: #fff;
    color: #2d3748;
}

.gqkd-form-grid input:focus, .gqkd-form-grid select:focus, .gqkd-lh-method-area input:focus, .gqkd-lh-method-area select:focus {
    border-color: #d4a373 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.15) !important;
}

.gqkd-btn-gieo, .btta-btn-luan {
    background: linear-gradient(135deg, #d4a373, #a67c52) !important;
    border: none !important;
    color: white !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(166, 124, 82, 0.3) !important;
    transition: all 0.3s ease !important;
}

.gqkd-btn-gieo:hover, .btta-btn-luan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.45) !important;
}

/* Rebranding and beautifying result render blocks */
.gqkd-result-card, .gqkd-lh-result, .gqkd-sdt-result {
    background: #fffdf9 !important;
    border: 1px solid #eedcb5 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 25px rgba(166, 124, 82, 0.08) !important;
}

/* Lectures Section (Accordion) */
.shk-lectures-section {
    padding: 70px 20px;
    background-color: #f7fafc;
}

.shk-lectures-container {
    max-width: 900px;
    margin: 0 auto;
}

.gqkd-learn-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    padding: 30px;
}

.gqkd-learn-header h3 {
    color: #a67c52 !important;
    font-size: 22px;
}

.gqkd-chapter-header {
    background: #fdfdfd !important;
    color: #2d3748 !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    padding: 15px 20px !important;
    transition: all 0.2s;
}

.gqkd-chapter-header:hover {
    background: #fef8f2 !important;
    color: #a67c52 !important;
    border-color: #eedcb5 !important;
}

.gqkd-chapter-header.active {
    background: #fef6ed !important;
    color: #a67c52 !important;
    border-color: #d4a373 !important;
    border-radius: 8px 8px 0 0 !important;
    margin-bottom: 0 !important;
}

.gqkd-chapter-header .gqkd-lesson-arrow {
    color: #a67c52 !important;
}

.gqkd-chapter-body {
    border: 1px solid #d4a373 !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    background: #fff;
    padding: 15px !important;
    margin-bottom: 12px;
}

/* Blog / Articles Section */
.shk-blog-section {
    padding: 70px 20px;
    background-color: #fff;
}

.shk-blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.shk-blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.shk-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #eedcb5;
}

.shk-blog-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #edf2f7;
}

.shk-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shk-blog-card:hover .shk-blog-thumb img {
    transform: scale(1.08);
}

.shk-blog-thumb.no-thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    background: linear-gradient(135deg, #fdf8f2, #eedcb5);
    color: #a67c52;
}

.shk-blog-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shk-blog-meta {
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 10px;
    font-weight: 500;
}

.shk-blog-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.shk-blog-title a {
    text-decoration: none;
    color: #1a202c;
    transition: color 0.2s;
}

.shk-blog-title a:hover {
    color: #a67c52;
}

.shk-blog-excerpt {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    flex-grow: 1;
}

.shk-blog-link {
    text-decoration: none;
    color: #a67c52;
    font-weight: 700;
    font-size: 13px;
    align-self: flex-start;
    transition: color 0.2s;
}

.shk-blog-link:hover {
    color: #d4a373;
}

/* Footer Styling */
.shk-footer {
    background-color: #1a202c;
    color: #a0aec0;
    padding: 50px 20px;
    border-top: 3px solid #a67c52;
}

.shk-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.shk-footer-brand img {
    height: 48px;
    margin-bottom: 15px;
}

.shk-footer-brand p {
    max-width: 350px;
    font-size: 14px;
    line-height: 1.5;
}

.shk-footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
}

.shk-footer-links p {
    font-size: 13px;
    margin: 6px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .shk-hero-grid {
        grid-template-columns: 1fr;
    }
    .shk-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .shk-header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .shk-nav-list {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .shk-hero-title {
        font-size: 32px;
    }
    .shk-blog-grid {
        grid-template-columns: 1fr;
    }
    .shk-footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================================
   SHK TOOLS & PRODUCTS PAGES STYLING
   ============================================================ */
.shk-tools-section, .shk-products-section {
    padding: 20px 20px 70px 20px; /* Reduced top padding to narrow the spacing gap */
    background-color: #fafafa;
}

.shk-tools-container, .shk-products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shk-tools-grid, .shk-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.shk-tool-card, .shk-product-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
    border: 1px solid #eedcb5; /* Warmer, gold-accented borders instead of pale grey */
    border-radius: 16px;
    padding: 35px 30px 30px 30px;
    box-shadow: 0 6px 20px rgba(166, 124, 82, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.shk-tool-card::before, .shk-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4a373, #a67c52); /* Gold brand top line */
}

.shk-tool-card:hover, .shk-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(166, 124, 82, 0.15); /* Vibrant golden/bronze shadow on hover */
    border-color: #d4a373;
}

.shk-tool-icon-wrapper, .shk-product-icon-wrapper {
    font-size: 28px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eedcb5, #d4a373); /* Vibrant brand gradient */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(166, 124, 82, 0.15);
}

.shk-tool-title, .shk-product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 12px;
}

.shk-tool-desc, .shk-product-desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

.shk-tool-footer, .shk-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 15px;
    margin-top: auto;
}

.shk-tool-source, .shk-product-source {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 500;
}

.shk-tool-action-btn, .shk-product-action-btn {
    font-size: 13px;
    font-weight: 700;
    color: #a67c52;
    transition: color 0.2s;
}

.shk-tool-card:hover .shk-tool-action-btn,
.shk-product-card:hover .shk-product-action-btn {
    color: #d4a373;
}

.shk-tool-footer, .shk-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fdf8f2;
    padding-top: 15px;
    margin-top: auto;
}

.shk-tool-source, .shk-product-source {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 500;
}

.shk-tool-action-btn, .shk-product-action-btn {
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, #d4a373, #a67c52);
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 3px 8px rgba(166, 124, 82, 0.12);
    transition: all 0.25s ease;
    display: inline-block;
    text-decoration: none;
}

.shk-tool-card:hover .shk-tool-action-btn,
.shk-product-card:hover .shk-product-action-btn {
    background: linear-gradient(135deg, #e67e22, #d4a373);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.22);
    transform: translateY(-1px);
}

/* Highlighted card variant */
.shk-tool-card-highlight, .shk-product-card-highlight {
    background: linear-gradient(180deg, #fffaf3 0%, #fff4e6 100%);
    border-color: #eedcb5;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.06);
}

.shk-tool-card-highlight::before, .shk-product-card-highlight::before {
    background: linear-gradient(90deg, #e67e22, #d4a373); /* Highlight top line */
}

.shk-tool-card-highlight:hover, .shk-product-card-highlight:hover {
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.18);
}

.shk-tool-card-highlight .shk-tool-icon-wrapper,
.shk-product-card-highlight .shk-product-icon-wrapper {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.shk-tool-card-highlight .shk-tool-action-btn,
.shk-product-card-highlight .shk-product-action-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 3px 8px rgba(230, 126, 34, 0.15);
}

/* Badges */
.shk-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e67e22;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(230, 126, 34, 0.3);
}

/* Responsive grid adjustments */
@media (max-width: 1024px) {
    .shk-tools-grid, .shk-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .shk-tools-grid, .shk-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .shk-tools-section, .shk-products-section {
        padding: 40px 15px;
    }
}

/* ============================================================
   3-COLUMN VERTICAL POST LISTS (KNOWLEDGE SECTION)
   ============================================================ */
.shk-knowledge-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.shk-knowledge-col {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shk-knowledge-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(166, 124, 82, 0.08);
    border-color: #d4a373;
}

.shk-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f7fafc;
    padding-bottom: 15px;
}

.shk-col-icon {
    font-size: 20px;
    background: #fdf8f2;
    color: #a67c52;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shk-col-header h3 {
    font-size: 20px;
    margin: 0;
    color: #1a202c;
    font-family: 'Playfair Display', serif;
}

.shk-post-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.shk-post-list li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #edf2f7;
}

.shk-post-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.shk-post-list a {
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a5568;
    transition: all 0.25s ease;
}

.shk-caret {
    font-size: 16px;
    color: #a67c52;
    font-weight: 700;
    line-height: 1;
    margin-top: 3px;
    transition: transform 0.25s ease;
}

.shk-post-title {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.4;
}

.shk-post-list a:hover {
    color: #a67c52;
}

.shk-post-list a:hover .shk-caret {
    transform: translateX(4px);
}

.shk-col-footer {
    margin-top: auto;
}

.shk-more-link {
    display: inline-block;
    text-decoration: none;
    color: #a67c52;
    font-weight: 600;
    font-size: 13.5px;
    transition: color 0.2s;
}

.shk-more-link:hover {
    color: #d4a373;
}

@media (max-width: 991px) {
    .shk-knowledge-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

