/* ============================================
   MOTOTRENDER — Polish Automotive Intelligence
   Aesthetic: Dark dashboard / data terminal
   Typography: Space Mono (data) + Instrument Sans (body)
   ============================================ */

:root {
    /* Core palette — asphalt & signal */
    --bg-primary: #0d0f12;
    --bg-secondary: #141820;
    --bg-card: #1a1f2b;
    --bg-elevated: #222838;
    --border: #2a3040;
    --border-accent: #3a4560;

    /* Text */
    --text-primary: #e8ecf4;
    --text-secondary: #8892a4;
    --text-muted: #5a6478;
    --text-inverse: #0d0f12;

    /* Signal colors — automotive gauges */
    --accent: #f85c2f;         /* mototrender orange */
    --accent-glow: rgba(248, 92, 47, 0.15);
    --signal-green: #2dd47b;
    --signal-amber: #f5a623;
    --signal-blue: #3d8bff;
    --signal-purple: #9b6dff;
    --signal-cyan: #2dd4bf;

    /* Category colors */
    --cat-wynajem: #3d8bff;
    --cat-leasing: #9b6dff;
    --cat-ceny: #f5a623;
    --cat-floty: #2dd47b;
    --cat-elektro: #2dd4bf;
    --cat-regulacje: #f85c2f;
    --cat-modele: #ff6b9d;
    --cat-dane: #8892a4;

    /* Typography */
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Instrument Sans', sans-serif;
    --font-data: 'DM Sans', sans-serif;

    /* Spacing */
    --container: 1080px;
    --gap: 24px;
    --radius: 6px;
}

/* Light mode */
[data-theme="light"] {
    --bg-primary: #f4f5f7;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-elevated: #f0f1f4;
    --border: #dde0e6;
    --border-accent: #c0c6d0;
    --text-primary: #141820;
    --text-secondary: #5a6478;
    --text-muted: #8892a4;
    --text-inverse: #ffffff;
    --accent-glow: rgba(248, 92, 47, 0.08);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Background noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   TOP BAR
   ============================================ */

.topbar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 0;
}

.topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-separator {
    color: var(--border-accent);
}

.topbar-tagline {
    color: var(--text-secondary);
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 4px 8px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
}

.theme-toggle:hover {
    border-color: var(--text-secondary);
}

.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* ============================================
   HEADER
   ============================================ */

.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 32px;
    width: auto;
}

/* Dark/light logo switching */
.logo-light { display: none; }
.logo-dark { display: block; }
[data-theme="light"] .logo-light { display: block; }
[data-theme="light"] .logo-dark { display: none; }

.footer-logo-img {
    height: 24px;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.btn-subscribe {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.btn-subscribe:hover {
    background: #ff7044;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================
   CATEGORY BAR
   ============================================ */

.category-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-bar::-webkit-scrollbar {
    display: none;
}

.category-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    display: flex;
    gap: 8px;
}

.cat-pill {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.2s;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    background: transparent;
}

.cat-pill:hover,
.cat-pill.active {
    border-color: transparent;
    color: var(--text-inverse);
}

.cat-wynajem:hover, .cat-wynajem.active { background: var(--cat-wynajem); }
.cat-leasing:hover, .cat-leasing.active { background: var(--cat-leasing); }
.cat-ceny:hover, .cat-ceny.active { background: var(--cat-ceny); }
.cat-floty:hover, .cat-floty.active { background: var(--cat-floty); }
.cat-elektro:hover, .cat-elektro.active { background: var(--cat-elektro); }
.cat-regulacje:hover, .cat-regulacje.active { background: var(--cat-regulacje); }
.cat-modele:hover, .cat-modele.active { background: var(--cat-modele); }
.cat-dane:hover, .cat-dane.active { background: var(--cat-dane); }

/* ============================================
   HERO — TODAY'S REPORT
   ============================================ */

.hero-report {
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--gap) 40px;
}

.hero-inner {
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-badge {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.hero-title {
    font-family: var(--font-mono);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-title a {
    transition: color 0.2s;
}

.hero-title a:hover {
    color: var(--accent);
}

.hero-excerpt {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
    margin-bottom: 20px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}

.hero-tag {
    font-size: 10px;
    padding: 4px 10px;
}

.hero-cta {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.hero-cta:hover {
    gap: 14px;
}

.hero-cta .arrow {
    transition: transform 0.2s;
}

.hero-cta:hover .arrow {
    transform: translateX(4px);
}

/* Data strip — dashboard gauges */
.hero-data-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.data-item {
    background: var(--bg-card);
    padding: 20px 24px;
    text-align: center;
}

.data-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.data-value {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ============================================
   SECTIONS GRID
   ============================================ */

.sections-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 40px var(--gap);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.section-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.3s;
}

.section-block:hover {
    border-color: var(--border-accent);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-icon {
    font-size: 8px;
}

.section-wynajem .section-icon { color: var(--cat-wynajem); }
.section-leasing .section-icon { color: var(--cat-leasing); }
.section-ceny .section-icon { color: var(--cat-ceny); }
.section-floty .section-icon { color: var(--cat-floty); }
.section-elektro .section-icon { color: var(--cat-elektro); }
.section-regulacje .section-icon { color: var(--cat-regulacje); }

.section-more {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.section-more:hover {
    color: var(--accent);
}

/* Cards */
.card {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.card:first-child {
    padding-top: 0;
}

.card-link {
    display: block;
}

.card-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.card-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 4px;
    transition: color 0.2s;
}

.card-link:hover .card-title {
    color: var(--accent);
}

.card-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 6px;
}

/* ============================================
   NEWSLETTER CTA
   ============================================ */

.newsletter-cta {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap) 60px;
}

.newsletter-inner {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--signal-amber), var(--signal-blue));
}

.newsletter-inner h2 {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-inner p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.btn-subscribe-large {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius);
    display: inline-block;
    transition: all 0.2s;
}

.btn-subscribe-large:hover {
    background: #ff7044;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}

/* ============================================
   POST (SINGLE)
   ============================================ */

.post-full {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px var(--gap) 60px;
}

.post-header {
    margin-bottom: 40px;
}

.post-meta-top {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.post-tag {
    font-size: 10px;
    padding: 4px 10px;
}

.post-title {
    font-family: var(--font-mono);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.post-excerpt-full {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-meta-bar {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 20px;
    letter-spacing: 0.04em;
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
}

/* Post content styling */
.post-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
}

.post-content h2 {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 16px;
    letter-spacing: -0.01em;
}

.post-content h3 {
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 700;
    margin: 32px 0 12px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 61, 61, 0.3);
    transition: text-decoration-color 0.2s;
}

.post-content a:hover {
    text-decoration-color: var(--accent);
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    margin: 24px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-secondary);
    font-style: italic;
}

.post-content ul, .post-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content li::marker {
    color: var(--accent);
}

.post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

.post-content hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 40px 0;
}

.post-content code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: var(--bg-elevated);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Share */
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}

.share-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.share-btn {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Post nav */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    padding: 32px 0;
    border-top: 1px solid var(--border);
}

.post-nav-link {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.post-nav-link:hover {
    border-color: var(--border-accent);
}

.post-nav-dir {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 6px;
}

.post-nav-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.post-nav-next {
    text-align: right;
}

/* ============================================
   ARCHIVE / INDEX
   ============================================ */

.archive-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 48px var(--gap) 60px;
}

.archive-header {
    margin-bottom: 40px;
}

.archive-title {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.archive-desc {
    color: var(--text-secondary);
    font-size: 15px;
}

.post-row {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.post-row:hover {
    background: var(--bg-card);
    margin: 0 -12px;
    padding: 20px 12px;
    border-radius: var(--radius);
}

.post-row-date {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    min-width: 100px;
    padding-top: 2px;
}

.post-row-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.post-row-title a:hover {
    color: var(--accent);
}

.post-row-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.post-row-tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.mini-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
}

.pagination-link {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.pagination-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   PAGE
   ============================================ */

.page-full {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px var(--gap) 60px;
}

.page-title {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.page-content {
    font-size: 16px;
    line-height: 1.75;
}

.page-content h2 {
    font-family: var(--font-mono);
    font-size: 22px;
    margin: 32px 0 16px;
}

.page-content p {
    margin-bottom: 20px;
}

/* ============================================
   ERROR
   ============================================ */

.error-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 120px var(--gap);
    text-align: center;
}

.error-code {
    font-family: var(--font-mono);
    font-size: 96px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.error-message {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 16px 0 32px;
}

.error-link {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.footer-brand {
    margin-bottom: 32px;
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 64px;
    margin-bottom: 32px;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .header-inner {
        justify-content: space-between;
    }

    .hero-data-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .sections-grid {
        grid-template-columns: 1fr;
    }

    .post-row {
        flex-direction: column;
        gap: 4px;
    }

    .post-row-date {
        min-width: auto;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .newsletter-inner {
        padding: 32px 20px;
    }

    .category-bar-inner {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .logo-text {
        font-size: 16px;
    }

    .btn-subscribe {
        padding: 8px 14px;
        font-size: 11px;
    }
}

/* ============================================
   GHOST-SPECIFIC
   ============================================ */

.gh-portal-triggerbtn-iframe {
    display: none !important;
}

/* Kg cards */
.kg-bookmark-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.kg-bookmark-container {
    display: flex;
    text-decoration: none;
}

.kg-bookmark-content {
    padding: 16px;
    flex: 1;
}

.kg-bookmark-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
}

.kg-bookmark-description {
    font-size: 13px;
    color: var(--text-secondary);
}

.kg-bookmark-thumbnail {
    width: 160px;
    flex-shrink: 0;
}

.kg-bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
