/* =========================================================
   DKKD PHÚ QUỐC - BLOG / KNOWLEDGE
   Single post + archive layout
   ========================================================= */

:root {
    --dkk-blog-blue: #087fd1;
    --dkk-blog-blue-dark: #056db6;
    --dkk-blog-navy: #0b2945;
    --dkk-blog-text: #243b50;
    --dkk-blog-muted: #6a7f92;
    --dkk-blog-line: #dce8f2;
    --dkk-blog-soft: #f5faff;
    --dkk-blog-white: #ffffff;
    --dkk-blog-teal: #0aa6a6;
    --dkk-blog-radius: 14px;
}

.dkkdpq-blog #page,
.dkkdpq-blog #content,
.dkkdpq-blog .site-content,
.dkkdpq-blog .content-area,
.dkkdpq-blog .site-main {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dkkdpq-blog #primary { width: 100%; }
.dkk-blog-main { background: #fff; color: var(--dkk-blog-text); }
.dkk-blog-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.dkk-blog-main a { text-decoration: none; }
.dkk-blog-main img { max-width: 100%; }

.dkk-blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    padding: 17px 0 14px;
    color: #8395a6;
    font-size: 12px;
    line-height: 1.45;
}
.dkk-blog-breadcrumb a { color: #3977ab; }
.dkk-blog-breadcrumb a:hover { color: var(--dkk-blog-blue); }

.dkk-blog-kicker,
.dkk-blog-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 8px;
    border-radius: 6px;
    color: #066dc1;
    background: #eaf5ff;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .035em;
    text-transform: uppercase;
}

/* ---------------- Single ---------------- */
.dkk-blog-single-main { padding-bottom: 56px; }
.dkk-blog-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px;
    align-items: start;
}
.dkk-blog-article { min-width: 0; }
.dkk-blog-article-header { padding: 8px 0 18px; }
.dkk-blog-article-header h1 {
    max-width: 850px;
    margin: 10px 0 12px;
    color: #091f38;
    font-size: clamp(31px, 3.2vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
    font-weight: 850;
}
.dkk-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 17px;
    color: #72869a;
    font-size: 12px;
    line-height: 1.4;
}
.dkk-blog-meta > span { display: inline-flex; align-items: center; gap: 5px; }
.dkk-blog-meta__icon { color: var(--dkk-blog-blue); font-weight: 800; }
.dkk-blog-meta--compact { gap: 7px 14px; font-size: 11px; }

.dkk-blog-featured {
    position: relative;
    margin: 0 0 22px;
    border-radius: 13px;
    overflow: hidden;
    background: #e7f2fa;
    box-shadow: 0 10px 30px rgba(11, 41, 69, .08);
}
.dkk-blog-featured > img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.dkk-blog-featured__article-meta {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 10px 8px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 11px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow: 0 8px 24px rgba(11,41,69,.13);
}
.dkk-blog-featured__article-meta-item {
    min-width: 0;
    display: grid;
    gap: 3px;
    padding: 2px 12px;
    border-right: 1px solid #dbe8f2;
}
.dkk-blog-featured__article-meta-item:last-child {
    border-right: 0;
}
.dkk-blog-featured__article-meta strong {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #0d65ad;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}
.dkk-blog-featured__article-meta small {
    display: block;
    color: #566f85;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dkk-blog-featured__article-meta time {
    color: inherit;
}

.dkk-blog-toc {
    margin: 22px 0 26px;
    padding: 16px 18px;
    border: 1px solid #cfe4f5;
    border-radius: 11px;
    background: #f7fbff;
}
.dkk-blog-toc__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.dkk-blog-toc__head strong { color: #173b59; font-size: 14px; }
.dkk-blog-toc__toggle {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--dkk-blog-blue);
    padding: 3px 0;
    font-size: 11px;
    font-weight: 750;
    cursor: pointer;
}
.dkk-blog-toc ol { margin: 11px 0 0; padding: 0; list-style: none; counter-reset: dkk-toc; }
.dkk-blog-toc li { counter-increment: dkk-toc; margin: 0; }
.dkk-blog-toc li a {
    display: block;
    padding: 4px 0;
    color: #0d6bbb;
    font-size: 12px;
    line-height: 1.45;
}
.dkk-blog-toc li.is-h2 a::before { content: counter(dkk-toc) ". "; color: #7395af; }
.dkk-blog-toc li.is-h3 a { padding-left: 18px; color: #4d789c; }
.dkk-blog-toc.is-collapsed ol { display: none; }

.dkk-blog-prose {
    color: #243b50;
    font-size: 16px;
    line-height: 1.82;
}
.dkk-blog-prose > :first-child { margin-top: 0; }
.dkk-blog-prose p { margin: 0 0 18px; }
.dkk-blog-prose h2,
.dkk-blog-prose h3,
.dkk-blog-prose h4 { color: #0b2945; font-weight: 820; letter-spacing: -.02em; scroll-margin-top: 95px; }
.dkk-blog-prose h2 { margin: 36px 0 13px; font-size: clamp(23px, 2vw, 30px); line-height: 1.28; }
.dkk-blog-prose h3 { margin: 26px 0 10px; font-size: 20px; line-height: 1.35; }
.dkk-blog-prose h4 { margin: 22px 0 8px; font-size: 17px; }
.dkk-blog-prose a { color: #0876c9; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.dkk-blog-prose ul,
.dkk-blog-prose ol { margin: 0 0 20px; padding-left: 22px; }
.dkk-blog-prose li { margin: 7px 0; }
.dkk-blog-prose blockquote {
    margin: 24px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--dkk-blog-blue);
    border-radius: 0 10px 10px 0;
    background: #f3f9ff;
    color: #2b4b66;
}
.dkk-blog-prose table {
    width: 100%;
    margin: 22px 0;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--dkk-blog-line);
    border-radius: 10px;
    overflow: hidden;
    font-size: 14px;
}
.dkk-blog-prose th,
.dkk-blog-prose td { padding: 11px 12px; border-bottom: 1px solid var(--dkk-blog-line); text-align: left; vertical-align: top; }
.dkk-blog-prose th { background: #eef7ff; color: #123b5e; }
.dkk-blog-prose tr:last-child td { border-bottom: 0; }
.dkk-blog-prose img { border-radius: 11px; }

.dkk-blog-article-note {
    display: grid;
    gap: 4px;
    margin: 30px 0;
    padding: 15px 17px;
    border: 1px solid #d5e8f7;
    border-radius: 10px;
    background: #f8fcff;
    color: #567087;
    font-size: 12px;
    line-height: 1.6;
}
.dkk-blog-article-note strong { color: #17486f; }

/* Sidebar */
.dkk-blog-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
}
.dkk-blog-consult {
    position: relative;
    min-height: 180px;
    padding: 20px 116px 18px 18px;
    overflow: hidden;
    border: 1px solid #cfe6f8;
    border-radius: 13px;
    background: linear-gradient(145deg, #f8fcff 0%, #e9f5ff 100%);
}
.dkk-blog-consult__copy { position: relative; z-index: 2; }
.dkk-blog-consult h2 { margin: 5px 0 5px; color: #0b2945; font-size: 19px; line-height: 1.2; }
.dkk-blog-consult p { margin: 0 0 9px; color: #62798c; font-size: 11px; line-height: 1.5; }
.dkk-blog-consult strong { display: block; margin-bottom: 9px; color: #086fca; font-size: 19px; line-height: 1; }
.dkk-blog-consult a {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 7px;
    color: #fff;
    background: var(--dkk-blog-blue);
    font-size: 10px;
    font-weight: 800;
}
.dkk-blog-consult__avatar { position: absolute; right: 4px; bottom: 0; width: 118px; height: 150px; }
.dkk-blog-consult__avatar svg { display: block; width: 100%; height: 100%; }

.dkk-blog-sidebox {
    padding: 16px;
    border: 1px solid var(--dkk-blog-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 22px rgba(11,41,69,.045);
}
.dkk-blog-sidebox > h2 { margin: 0 0 12px; color: #102d47; font-size: 16px; line-height: 1.3; }
.dkk-blog-sideposts { display: grid; gap: 10px; }
.dkk-blog-sidepost { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 10px; align-items: center; }
.dkk-blog-sidepost img { display: block; width: 74px; height: 54px; object-fit: cover; border-radius: 7px; }
.dkk-blog-sidepost span { min-width: 0; display: grid; gap: 4px; }
.dkk-blog-sidepost strong { color: #1e3a52; font-size: 11px; line-height: 1.35; font-weight: 750; }
.dkk-blog-sidepost small { color: #8899a7; font-size: 9px; }
.dkk-blog-sidepost:hover strong { color: var(--dkk-blog-blue); }
.dkk-blog-category-list { list-style: none; margin: 0; padding: 0; }
.dkk-blog-category-list li + li { border-top: 1px solid #eef3f7; }
.dkk-blog-category-list a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 2px; color: #1b6fb0; font-size: 11px; font-weight: 650; }
.dkk-blog-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dkk-blog-tags a { padding: 6px 8px; border-radius: 6px; color: #0870c5; background: #eef7ff; font-size: 9.5px; font-weight: 700; }

/* Author */
.dkk-blog-author {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin: 34px 0 0;
    padding: 19px;
    border: 1px solid var(--dkk-blog-line);
    border-radius: 12px;
    background: #fbfdff;
}
.dkk-blog-author__avatar img { display: block; width: 76px; height: 76px; border-radius: 50%; }
.dkk-blog-author h2 { margin: 4px 0 5px; color: #102d47; font-size: 18px; }
.dkk-blog-author p { margin: 0 0 6px; color: #60778a; font-size: 12px; line-height: 1.55; }
.dkk-blog-author > div > a { color: #0876c9; font-size: 11px; font-weight: 750; }

/* Related */
.dkk-blog-related { margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--dkk-blog-line); }
.dkk-blog-section-title { margin-bottom: 15px; }
.dkk-blog-section-title h2 { margin: 5px 0 0; color: #0b2945; font-size: 22px; }
.dkk-blog-related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.dkk-blog-related-card { overflow: hidden; border: 1px solid var(--dkk-blog-line); border-radius: 10px; background: #fff; }
.dkk-blog-related-card__image { display: block; overflow: hidden; }
.dkk-blog-related-card__image img { display: block; width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; transition: transform .25s ease; }
.dkk-blog-related-card:hover img { transform: scale(1.025); }
.dkk-blog-related-card__body { padding: 10px; }
.dkk-blog-related-card h3 { margin: 7px 0 9px; font-size: 12px; line-height: 1.4; }
.dkk-blog-related-card h3 a { color: #17384f; }
.dkk-blog-related-card h3 a:hover { color: var(--dkk-blog-blue); }
.dkk-blog-related-card .dkk-blog-chip { font-size: 8px; padding: 4px 6px; }

/* ---------------- Archive ---------------- */
.dkk-blog-archive-hero {
    border-bottom: 1px solid #dbe9f3;
    background: linear-gradient(115deg, #f8fcff 0%, #fff 53%, #eef8ff 100%);
}
.dkk-blog-archive-hero__grid {
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: center;
}
.dkk-blog-archive-hero .dkk-blog-breadcrumb { padding-top: 5px; }
.dkk-blog-archive-hero h1 { margin: 8px 0 9px; color: #0b2945; font-size: clamp(32px, 3.6vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
.dkk-blog-archive-hero p { max-width: 720px; margin: 0; color: #60778a; font-size: 14px; line-height: 1.65; }
.dkk-blog-archive-hero__art { display: flex; align-items: center; justify-content: center; }
.dkk-blog-archive-hero__art svg { width: 100%; max-width: 340px; height: auto; }
.dkk-blog-archive-content { padding: 24px 0 58px; }

.dkk-blog-filterbar { margin-bottom: 24px; }
.dkk-blog-filterchips { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 13px; border-bottom: 1px solid #e5edf4; }
.dkk-blog-filterchips a { padding: 8px 13px; border: 1px solid #dce7ef; border-radius: 7px; color: #435f75; background: #fff; font-size: 11px; font-weight: 700; }
.dkk-blog-filterchips a:hover,
.dkk-blog-filterchips a.is-active { color: #fff; background: var(--dkk-blog-blue); border-color: var(--dkk-blog-blue); }
.dkk-blog-tools { display: flex; align-items: center; gap: 10px; margin-top: 13px; }
.dkk-blog-search { position: relative; flex: 1 1 auto; max-width: 390px; }
.dkk-blog-search input {
    width: 100%;
    height: 40px;
    padding: 0 42px 0 12px;
    border: 1px solid #dbe6ef;
    border-radius: 7px;
    background: #fff;
    color: #29465d;
    font-size: 12px;
}
.dkk-blog-search button { position: absolute; right: 3px; top: 3px; width: 34px; height: 34px; padding: 0; border: 0; background: transparent; color: #63829b; cursor: pointer; }
.dkk-blog-sort select { height: 40px; min-width: 130px; padding: 0 30px 0 10px; border: 1px solid #dbe6ef; border-radius: 7px; background: #fff; color: #435f75; font-size: 11px; }

.dkk-blog-archive-grid { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 38px; align-items: start; }
.dkk-blog-archive-list { display: grid; gap: 0; }
.dkk-blog-list-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e6edf3;
}
.dkk-blog-list-card:first-child { padding-top: 0; }
.dkk-blog-list-card__image { display: block; overflow: hidden; border-radius: 9px; background: #e9f3fa; }
.dkk-blog-list-card__image img { display: block; width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; transition: transform .25s ease; }
.dkk-blog-list-card:hover img { transform: scale(1.018); }
.dkk-blog-list-card__body { min-width: 0; }
.dkk-blog-list-card h2 { margin: 6px 0 7px; font-size: 18px; line-height: 1.32; letter-spacing: -.015em; }
.dkk-blog-list-card h2 a { color: #112d45; }
.dkk-blog-list-card h2 a:hover { color: var(--dkk-blog-blue); }
.dkk-blog-list-card p { margin: 0 0 10px; color: #6a7e90; font-size: 12px; line-height: 1.55; }

.dkk-blog-pagination { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.dkk-blog-pagination .page-numbers { min-width: 36px; height: 36px; padding: 0 10px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #dce7ef; border-radius: 7px; color: #3f5e77; background: #fff; font-size: 11px; font-weight: 700; }
.dkk-blog-pagination .page-numbers.current,
.dkk-blog-pagination .page-numbers:hover { color: #fff; background: var(--dkk-blog-blue); border-color: var(--dkk-blog-blue); }
.dkk-blog-empty { padding: 40px 24px; border: 1px dashed #cbdde9; border-radius: 12px; background: #f8fcff; text-align: center; }
.dkk-blog-empty h2 { margin: 0 0 6px; color: #173b59; font-size: 20px; }
.dkk-blog-empty p { margin: 0; color: #6e8293; font-size: 13px; }


/* ---------------- Trust strip before footer ---------------- */
.dkk-blog-trust-strip {
    margin-top: 48px;
    background: linear-gradient(100deg, #075fae 0%, #087fd1 55%, #075fae 100%);
    color: #fff;
}
.dkk-blog-trust-strip__grid {
    min-height: 82px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}
.dkk-blog-trust-strip__grid > div {
    min-width: 0;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-areas: "icon title" "icon text";
    column-gap: 9px;
    align-items: center;
    padding: 12px 20px;
    border-right: 1px solid rgba(255,255,255,.16);
}
.dkk-blog-trust-strip__grid > div:last-child { border-right: 0; }
.dkk-blog-trust-strip__grid span { grid-area: icon; font-size: 24px; opacity: .92; }
.dkk-blog-trust-strip__grid strong { grid-area: title; font-size: 12px; line-height: 1.3; }
.dkk-blog-trust-strip__grid small { grid-area: text; margin-top: 2px; color: #d7edff; font-size: 9.5px; line-height: 1.3; }

@media (max-width: 1024px) {
    .dkk-blog-single-grid,
    .dkk-blog-archive-grid { grid-template-columns: minmax(0, 1fr) 260px; gap: 26px; }
    .dkk-blog-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dkk-blog-archive-hero__grid { grid-template-columns: minmax(0, 1fr) 280px; }
    .dkk-blog-list-card { grid-template-columns: 200px minmax(0, 1fr); }
}

@media (max-width: 820px) {
    .dkk-blog-shell { width: min(100% - 28px, 760px); }
    .dkk-blog-single-grid,
    .dkk-blog-archive-grid { grid-template-columns: 1fr; }
    .dkk-blog-sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dkk-blog-consult { min-height: 175px; }
    .dkk-blog-archive-hero__grid { grid-template-columns: minmax(0, 1fr) 220px; min-height: 190px; }
}

@media (max-width: 640px) {
    .dkk-blog-trust-strip__grid { grid-template-columns: 1fr 1fr; padding: 7px 0; }
    .dkk-blog-trust-strip__grid > div { border-right: 0; padding: 10px 8px; }
    .dkk-blog-shell { width: calc(100% - 24px); }
    .dkk-blog-breadcrumb { font-size: 10px; padding-top: 12px; }
    .dkk-blog-article-header h1 { font-size: 30px; }
    .dkk-blog-featured__article-meta { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 8px; border: 0; border-radius: 0; box-shadow: none; background: #f5faff; }
    .dkk-blog-featured__article-meta-item { padding: 8px; border-right: 0; border-bottom: 1px solid #dfeaf3; }
    .dkk-blog-featured__article-meta-item:nth-last-child(-n+2) { border-bottom: 0; }
    .dkk-blog-featured__article-meta small { white-space: normal; overflow: visible; text-overflow: clip; }
    .dkk-blog-prose { font-size: 15px; line-height: 1.75; }
    .dkk-blog-prose table { display: block; overflow-x: auto; white-space: nowrap; }
    .dkk-blog-sidebar { grid-template-columns: 1fr; }
    .dkk-blog-related-grid { grid-template-columns: 1fr 1fr; }
    .dkk-blog-archive-hero__grid { grid-template-columns: 1fr; padding: 22px 0; }
    .dkk-blog-archive-hero__art { display: none; }
    .dkk-blog-archive-hero h1 { font-size: 34px; }
    .dkk-blog-tools { align-items: stretch; flex-direction: column; }
    .dkk-blog-search { max-width: none; }
    .dkk-blog-sort select { width: 100%; }
    .dkk-blog-list-card { grid-template-columns: 130px minmax(0, 1fr); gap: 12px; }
    .dkk-blog-list-card h2 { font-size: 15px; }
    .dkk-blog-list-card p { display: none; }
    .dkk-blog-author { grid-template-columns: 60px minmax(0, 1fr); }
    .dkk-blog-author__avatar img { width: 60px; height: 60px; }
}

@media (max-width: 430px) {
    .dkk-blog-article-header h1 { font-size: 27px; }
    .dkk-blog-related-grid { grid-template-columns: 1fr; }
    .dkk-blog-list-card { grid-template-columns: 112px minmax(0, 1fr); }
    .dkk-blog-list-card__body .dkk-blog-chip { font-size: 7px; }
    .dkk-blog-list-card h2 { margin-top: 4px; font-size: 14px; line-height: 1.32; }
    .dkk-blog-meta--compact { font-size: 9.5px; gap: 5px 8px; }
    .dkk-blog-consult { padding-right: 105px; }
    .dkk-blog-consult__avatar { width: 102px; }
}


/* =========================================================
   v1.5.2 - GeneratePress container breakout fix
   Blog templates live inside GeneratePress #page/#content wrappers.
   Force only blog/search/archive screens to use the viewport width.
   ========================================================= */
body.blog #page,
body.archive #page,
body.search #page,
body.single-post #page,
body.dkkdpq-blog #page {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.blog #content,
body.archive #content,
body.search #content,
body.single-post #content,
body.dkkdpq-blog #content {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.blog #primary,
body.archive #primary,
body.search #primary,
body.single-post #primary,
body.dkkdpq-blog #primary,
body.blog #main,
body.archive #main,
body.search #main,
body.single-post #main,
body.dkkdpq-blog #main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

body.blog .dkk-blog-main,
body.archive .dkk-blog-main,
body.search .dkk-blog-main,
body.single-post .dkk-blog-main,
body.dkkdpq-blog .dkk-blog-main {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Empty archive should still be useful before the content cluster launches. */
.dkk-blog-empty-start {
    padding: 4px 0 8px;
}
.dkk-blog-empty-start__head {
    margin-bottom: 16px;
}
.dkk-blog-empty-start__head h2 {
    margin: 5px 0 6px;
    color: #102d47;
    font-size: 24px;
    line-height: 1.25;
}
.dkk-blog-empty-start__head p {
    max-width: 680px;
    margin: 0;
    color: #6a7e90;
    font-size: 13px;
    line-height: 1.6;
}
.dkk-blog-empty-start__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.dkk-blog-empty-topic {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    min-height: 94px;
    padding: 16px;
    border: 1px solid #dce8f2;
    border-radius: 12px;
    background: #fff;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.dkk-blog-empty-topic:hover {
    border-color: #bcdcf3;
    background: #f8fcff;
    transform: translateY(-1px);
}
.dkk-blog-empty-topic__icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    color: #0876c9;
    background: #eaf5ff;
    font-size: 20px;
    font-weight: 800;
}
.dkk-blog-empty-topic__copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}
.dkk-blog-empty-topic__copy strong {
    color: #173b59;
    font-size: 14px;
    line-height: 1.35;
}
.dkk-blog-empty-topic__copy small {
    color: #718698;
    font-size: 11px;
    line-height: 1.45;
}
.dkk-blog-empty-topic__arrow {
    color: #0876c9;
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 640px) {
    .dkk-blog-empty-start__grid { grid-template-columns: 1fr; }
    .dkk-blog-empty-topic { min-height: 84px; padding: 13px; }
}
