/* ==========================================================================
   DESIGN TOKENS (Slate UI Palette)
   ========================================================================== */
:root {
    --bg-main: #0f172a;        
    --bg-panel: #1e293b;       
    --bg-card: #181d28;        
    --bg-hover-dark: #334155;  
    
    /* Vyvážená a čitateľná paleta bez ostrej bielej */
    --text-bright: #e2e8f0;    /* Jemná strieborno-biela pre hlavné nadpisy */
    --text-main: #cbd5e1;      /* Čitateľná svetlosivá pre dôležité prvky */
    --text-muted: #94a3b8;     /* Presný odtieň menu "More" pred najazdením – ideálny pre texty <p> */
    --text-dark: #64748b;      /* Tmavšia sivá pre stopku a pomocné texty */
    
    /* Utlmené akcenty, ktoré neťahajú oči */
    --accent-blue: #2ba6de;       
    --accent-blue-hover: #1e759e; 
    --accent-green: #22c55e;
    --accent-red: #e11d48;
    
    --border-color: #334155;
    --border-light: #475569;
}

/* Wymuszenie stałego suwaka zapobiega przesuwaniu layoutu na PC */
html {
    overflow-y: scroll !important; 
    overflow-x: hidden;
}

/* Wymuszenie stałego suwaka TYLKO na komputerach PC (zapobiega skakaniu layoutu) */
@media (min-width: 769px) {
    html {
        overflow-y: scroll;
        scrollbar-gutter: stable;
    }
}

body {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-areas:
        "header header header"
        "left content right"
        "footer footer footer";
    grid-template-columns: 300px 1fr 300px;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    background: var(--bg-main); 
    color: var(--text-main); 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden;
}

header { grid-area: header; }
.ad-left { grid-area: left; }
.ad-right { grid-area: right; }
footer { grid-area: footer; }

main { 
    grid-area: content; 
    padding: 32px 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
}

/* ==========================================================================
   NAGŁÓWEK I MENU (Header)
   ========================================================================== */
.main-header {
    background: var(--bg-panel); 
    border-bottom: 1px solid var(--border-color); 
    position: relative;
    z-index: 1000;
    width: 100%;
}

.header-inner {
    max-width: 1000px; 
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; 
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .header-inner { padding: 15px 20px; }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.desktop-separator {
    color: var(--border-light);
    font-size: 20px;
    line-height: 1;
}

.logo-link { text-decoration: none; display: inline-block; cursor: pointer; }
.logo { color: var(--accent-blue); font-size: 24px; font-weight: 700; letter-spacing: 1px; transition: opacity 0.2s; } 
.logo span { color: var(--text-bright); } 
.logo:hover { opacity: 0.8; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dropdown-toggle, .nav-item {
    color: var(--text-muted); 
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s;
    text-decoration: none;
}
.dropdown-toggle:hover, .nav-item:hover { color: var(--accent-blue); }

.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; 
    position: absolute; 
    background-color: var(--bg-panel); 
    width: 250px; 
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3); 
    z-index: 1000; 
    max-height: 400px; 
    overflow-y: auto; 
    left: 50%; 
    transform: translateX(-50%); 
    border: 1px solid var(--border-color);
    border-radius: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) var(--bg-panel);
}

.dropdown-content::-webkit-scrollbar { width: 6px; }
.dropdown-content::-webkit-scrollbar-track { background: var(--bg-panel); border-radius: 0 5px 5px 0; }
.dropdown-content::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 10px; }
.dropdown-content::-webkit-scrollbar-thumb:hover { background: var(--text-dark); }

.dropdown-content a { color: var(--text-main); padding: 10px 14px; text-decoration: none; display: block; text-align: left; font-size: 13px; }
.dropdown-content a:hover { background-color: var(--bg-hover-dark); color: var(--accent-blue); }
.dropdown-content.active { display: block !important; }

@media (min-width: 769px) {
    .dropdown:hover .dropdown-content { display: block; }
}

/* ==========================================================================
   PRZYCISKI GLOBALNE
   ========================================================================== */
.btn-primary {
    background: rgba(56, 189, 248, 0.03); 
    color: var(--accent-blue); 
    border: 1px solid rgba(56, 189, 248, 0.3); 
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: rgba(56, 189, 248, 0.12); 
    border-color: var(--accent-blue); 
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15); 
}

.donate-btn {
    width: 100%;
    box-sizing: border-box;
    color: var(--bg-main);
    background: var(--accent-blue);
    justify-content: center;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
}

/* ==========================================================================
   GLOBAL COMPONENTS (Karty, Buildy, Meta)
   ========================================================================== */
.card { 
    width: 100%; 
    max-width: 1000px; 
    background: var(--bg-card); /* Zmiana z niebieskawego --bg-panel */
    border: 1px solid var(--border-color); 
    border-radius: 10px; 
    padding: 24px; 
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); 
    text-align: left;
    box-sizing: border-box;
}

.card h1 { margin: 0 0 8px 0; color: var(--accent-blue); font-size: 26px; }
.card p { margin: 0; color: var(--text-muted); font-size: 14px; }

.ad-left, .ad-right {
    position: sticky;
    top: 85px; 
    height: max-content; 
    z-index: 10;
}

/* ==========================================================================
   STOPKA (Footer)
   ========================================================================== */
.main-footer {
    background: var(--bg-main);
    border-top: 1px solid rgba(56, 189, 248, 0.15); 
    padding: 40px 20px 20px 20px;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
    position: relative;
}

.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; width: 100%; box-sizing: border-box; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-brand .brand-desc { color: var(--text-dark); font-size: 13px; max-width: 250px; margin-top: 10px; line-height: 1.5; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.link-col { display: flex; flex-direction: column; gap: 8px; }
.link-col h4 { color: var(--text-bright); font-size: 13px; text-transform: uppercase; margin: 0 0 4px 0; letter-spacing: 0.5px; }
.link-col a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.link-col a:hover { color: var(--accent-blue); }

.footer-seo {
    color: var(--border-color); 
    font-size: 11px;
    line-height: 1.6;
    text-align: justify;
    border-top: 1px solid var(--bg-panel);
    border-bottom: 1px solid var(--bg-panel);
    padding: 15px 0;
    opacity: 0.7; 
    transition: opacity 0.3s;
}
.footer-seo:hover { opacity: 1; }

.footer-donate-link {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    color: var(--accent-blue) !important; 
    background: rgba(56, 189, 248, 0.05); 
    border: 1px solid rgba(56, 189, 248, 0.2); 
    padding: 6px 14px; border-radius: 20px;  font-size: 12px !important; font-weight: bold; text-decoration: none !important; transition: all 0.2s ease; width: fit-content; margin-top: 4px;
}
.footer-donate-link:hover {
    background: rgba(56, 189, 248, 0.12); 
    border-color: var(--accent-blue);
    color: var(--text-bright) !important;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15); 
    transform: translateY(-2px); 
}

.footer-bottom { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; color: var(--text-dark); font-size: 12px; }
.footer-bottom p { margin: 0; }

@media (max-width: 1600px) {
    body { grid-template-columns: 1fr; grid-template-areas: "header" "content" "footer"; }
    .ad-left, .ad-right { display: none; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .desktop-separator { display: none !important; }
    .header-left .btn-primary { display: none !important; }

    .nav-menu {
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--bg-panel); border-bottom: 1px solid var(--border-color); padding: 15px; box-sizing: border-box; gap: 5px; align-items: flex-start; max-height: calc(100vh - 70px); overflow-y: auto;
    }
    .nav-menu.open { display: flex; }
    .dropdown { width: 100%; }
    .dropdown-content { position: static; transform: none; box-shadow: none; border: none; padding-left: 15px; background: transparent; width: 100%; max-height: none; }
    .dropdown-content a { padding: 8px 10px; color: var(--text-muted); }
    .dropdown-content a:hover { color: var(--accent-blue); background: transparent; }
    .dropdown-toggle, .nav-item { width: 100%; text-align: left; padding: 10px 0; font-size: 14px; }
    .donate-btn { width: 100%; justify-content: center; margin-top: 5px; padding: 10px; font-size: 13px; }
    .footer-links { gap: 30px; }
    .footer-top { flex-direction: column; }
}

/* ==========================================================================
   ORYGINALNY HOME SECTION (index.astro) 
   ========================================================================== */
.home-container { display: flex; flex-direction: column; gap: 24px; width: 100%; max-width: 1000px; margin: 0 auto; box-sizing: border-box; }

.home-section {
    background: var(--bg-card); /* Zmiana z wpisanego na sztywno rgba() dla 100% spójności */
    border: 1px solid var(--border-color);
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); 
    display: flex; 
    flex-direction: column; 
    box-sizing: border-box; 
    width: 100%;
}

.home-section-header {
    background: var(--bg-card);
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: bold; color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
}

.home-section-body { padding: 24px; display: flex; flex-direction: column; gap: 24px; flex: 1; box-sizing: border-box; }
@media (min-width: 768px) { .home-section-body.split { flex-direction: row; align-items: center; justify-content: space-between; } }

.home-section-content { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}
.home-section-content p { 
    color: var(--text-muted); /* To jest Twój blady, czytelny kolor */
    font-size: 15px; 
    line-height: 1.6; 
    margin: 0; 
}
.home-section-image { width: 100%; max-width: 350px; border-radius: 6px; border: 1px solid var(--border-color); object-fit: cover; transition: opacity 0.2s; }
.home-section-image:hover { opacity: 0.8; }

.grid-half { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .grid-half { grid-template-columns: 1fr; } }

.news-list { display: flex; flex-direction: column; gap: 12px; width: 100%; flex: 1; }
.news-row {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--bg-card); padding: 16px; border: 1px solid var(--border-color); border-radius: 6px; border-left: 4px solid var(--accent-blue-hover); transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.news-row:hover { background: #1c212e; border-color: var(--border-color); border-left-color: var(--accent-blue); }
.news-row-title { font-weight: bold; color: var(--text-main); font-size: 15px; margin: 0 0 4px 0; transition: color 0.2s; }
.news-row:hover .news-row-title { color: var(--accent-blue); }
.news-row-date { font-size: 12px; color: var(--text-muted); margin: 0; }

.btn-disabled {
    background: var(--border-color); color: var(--text-dark); padding: 10px 20px; border-radius: 4px; font-weight: bold; font-size: 14px; display: inline-block; text-align: center; cursor: not-allowed; border: 1px solid var(--border-color);
}

/* ==========================================================================
   DYNAMICZNE KARTY BUILDÓW (Wymagane przez app.js dla /ancient/1 itp.)
   ========================================================================== */
.build-item { 
    background: var(--bg-card); /* Zmiana z niebieskawego --bg-panel */
    border: 1px solid var(--border-color); 
    border-radius: 8px; 
    padding: 20px; 
    width: 100%; 
    max-width: 1000px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); 
    box-sizing: border-box; 
    margin-bottom: 24px;
}
.build-item-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.build-item-header h3 { margin: 0; color: var(--accent-blue); font-size: 18px; }
.build-item-meta { font-size: 13px; color: var(--text-muted); }

.build-item-cols { display: flex; gap: 12px; text-align: left; }
.build-col { 
    flex: 1; 
    min-width: 0; 
    background: var(--bg-main); 
    padding: 12px; 
    border-radius: 6px; 
    border: 1px solid var(--border-color); /* Zmiana z --bg-panel na neutralną krawędź */
}
.build-col h4 { margin: 0 0 6px 0; color: var(--accent-blue); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--bg-panel); padding-bottom: 4px; }

.col-content { display: flex; flex-direction: column; gap: 4px; }
.data-row { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 4px; padding: 4px 8px; }
.row-main { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 5px; }

.name { font-size: 13px; color: var(--text-main); flex-grow: 1; }
.freq { font-size: 11px; color: var(--accent-blue); background: rgba(56, 189, 248, 0.1); padding: 2px 5px; border-radius: 3px; font-weight: bold; }

.btn-expand { background: transparent; color: var(--text-muted); border: 1px solid var(--border-light); border-radius: 3px; cursor: pointer; font-size: 10px; padding: 2px 6px; transition: all 0.2s; }
.btn-expand:hover { background: var(--accent-blue); color: var(--bg-main); border-color: var(--accent-blue); }
.desc-box { display: none; width: 100%; font-size: 11px; color: var(--text-dark); padding: 6px 0 2px 0; margin-top: 4px; border-top: 1px dashed var(--border-color); }
.unique-link { color: #f59e0b; text-decoration: none; font-weight: bold; font-size: 13px; flex-grow: 1; } 
.unique-link:hover { text-decoration: underline; color: #d97706; }

@media (max-width: 768px) { .build-item-cols { flex-direction: column; gap: 10px; } }

/* ==========================================================================
   APP.JS DYNAMIC COMPONENTS
   ========================================================================== */
body.app-mode { background: #0d0f12 !important; }
body.app-mode main { background: transparent !important; padding-top: 80px; }
body.app-mode .card, body.app-mode .build-item { background: rgba(20, 24, 34, 0.7) !important; border: 1px solid #30363d !important; backdrop-filter: blur(8px); }

.tooltip-title { font-size: 15px; font-weight: bold; color: var(--text-bright); margin-bottom: 2px; }
.tooltip-tags { color: var(--text-muted); font-size: 11px; margin-bottom: 8px; border-bottom: 1px solid var(--border-color); padding-bottom: 4px; }
.tooltip-desc { color: var(--text-main); margin-bottom: 8px; }
.tooltip-stats { color: var(--text-bright); margin-bottom: 8px; }
.tooltip-quality { color: var(--accent-green); margin-bottom: 12px; font-style: italic; }
.tooltip-footer { border-top: 1px solid var(--border-color); padding-top: 6px; margin-top: auto; text-align: right; }

.poe2db-footer-link, .ninja-footer-link { color: var(--text-dark); text-decoration: none; font-size: 10px; font-style: italic; transition: color 0.2s; }
.poe2db-footer-link:hover, .ninja-footer-link:hover { color: var(--accent-blue); }
.player-link { color: var(--text-muted); text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; transition: color 0.2s; display: block; }
.player-link:hover { color: var(--accent-blue); }
.fab-toggle { position: fixed; bottom: 25px; right: 25px; background: rgba(15, 23, 42, 0.95); border: 1px solid var(--border-color); color: var(--text-main); font-size: 11px; padding: 10px 18px; border-radius: 20px; cursor: pointer; z-index: 1000; box-shadow: 0 8px 24px rgba(0,0,0,0.8); transition: all 0.2s; backdrop-filter: blur(4px); }
.fab-toggle:hover { color: var(--text-bright); border-color: var(--accent-blue); }
.fab-icon { color: var(--accent-blue); font-weight: bold; margin-right: 6px; }

.planner-wrapper { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 24px; 
    width: 100%; 
    margin-top: 0; /* <--- To usuwa podwójny margines wypychający kontener */
}
.planner-col { flex: 1 1 400px; min-width: 0; }
.planner-col .home-section { margin: 0; height: 100%; }

.shift-card { border-radius: 4px; padding: 10px; margin-bottom: 8px; }
.shift-card.buff { background: rgba(74, 222, 128, 0.05); border: 1px solid rgba(74, 222, 128, 0.2); }
.shift-card.nerf { background: rgba(244, 63, 94, 0.05); border: 1px solid rgba(244, 63, 94, 0.2); }
.shift-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.shift-name { font-weight: bold; color: var(--text-main); font-size: 14px; }
.shift-badge { font-weight: bold; padding: 3px 6px; border-radius: 3px; font-size: 12px; }
.shift-badge.buff { color: var(--accent-green); background: rgba(74, 222, 128, 0.1); }
.shift-badge.nerf { color: var(--accent-red); background: rgba(244, 63, 94, 0.1); }
.shift-badge.neutral { color: var(--text-muted); background: rgba(148, 163, 184, 0.1); }
.shift-stats { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); }
.shift-stats strong { color: var(--text-main); }
.shift-stats strong.warning { color: #fbbf24; }
.shift-icon.buff { color: var(--accent-green); margin-right: 6px; font-size: 15px; }
.shift-icon.nerf { color: var(--accent-red); margin-right: 6px; font-size: 15px; }

.gen-league-title { color: var(--accent-blue); font-size: 11px; font-weight: bold; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.gen-forum-notice { margin-top: 5px; font-size: 12px; color: var(--text-muted); }
.gen-forum-notice a { color: var(--accent-blue); text-decoration: underline; font-weight: bold; }
.gen-main-title { margin: 10px 0 6px 0; font-size: 24px; color: var(--text-bright); }
.gen-sub-title { margin: 0 0 15px 0; font-size: 13px; color: var(--text-muted); }
.gen-sub-title strong { color: var(--text-bright); }
.gen-desc-text { font-size: 13px; color: var(--text-main); line-height: 1.5; margin: 0; }

.players-container { margin-top: 10px; padding: 10px; background: rgba(15, 23, 42, 0.5); border-radius: 4px; border: 1px solid var(--border-color); }
.players-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.players-note { font-size: 10px; color: var(--text-muted); text-transform: uppercase; }
.players-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.post-date, .article-date, .publish-date, time { color: var(--text-muted) !important; font-size: 13px; font-weight: normal; }

/* Ukrycie dubla plannera na komputerach */
.mobile-planner-link {
    display: none !important;
}

/* Aktywacja i ostylowanie w widoku mobilnym */
@media (max-width: 768px) {
    .mobile-planner-link {
        display: block !important;
        color: var(--accent-blue) !important;
        font-weight: bold !important;
        border-bottom: 1px solid var(--border-color) !important;
        padding-bottom: 14px !important;
        margin-bottom: 10px !important;
    }
}

/* Przycisk Powrotu na górę */
.fab-return {
    position: fixed;
    bottom: 75px; /* Pozycjonowanie tuż nad fab-toggle */
    right: 25px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 16px;
    font-weight: bold;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.fab-return.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-return:hover {
    color: var(--text-bright);
    border-color: var(--accent-blue);
    background: var(--bg-hover-dark);
}

/* ==========================================================================
   DYNAMICZNY NAGŁÓWEK BUILDÓW (Abyssal Lich, Buff/Nerf)
   ========================================================================== */
.dynamic-header-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    align-items: flex-start;
    box-sizing: border-box;
}

.dynamic-header-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.dynamic-header-right {
    flex: 2 1 450px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.nav-group-col {
    flex: 1 1 140px;
}

/* Aktywacja i ostylowanie w widoku mobilnym */
@media (max-width: 768px) {
    .mobile-planner-link {
        display: block !important;
        color: var(--accent-blue) !important;
        font-weight: bold !important;
        border-bottom: 1px solid var(--border-color) !important;
        padding-bottom: 14px !important;
        margin-bottom: 10px !important;
    }

    /* Pancerne uszczelnienie layoutu mobilnego dla nagłówka */
    .dynamic-header-split {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 16px !important; /* Nieco mniejszy margines na telefonach */
    }

    .dynamic-header-left,
    .dynamic-header-right {
        flex: 0 0 auto !important; /* Zmiana: resetujemy flex, żeby nie wymuszał 100% wysokości */
        width: 100% !important;
        min-width: 0 !important;
        flex-direction: column !important;
    }

    .nav-group-col {
        flex: 0 0 auto !important; /* Zmiana: naturalna wysokość dla sekcji Buff/Nerf/Stable */
        width: 100% !important;
    }
}

/* ==========================================================================
   GLOBALNA TYPOGRAFIA (Dla podstron tekstowych)
   ========================================================================== */
.home-section-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 16px;
}

.home-section-content h2 {
    color: var(--text-main);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.home-section-content h3 {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 8px 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.home-section-content strong, 
.home-section-content b {
    color: var(--text-main);
    font-weight: 600;
}

/* Klasy pomocnicze dla specyficznych elementów */
.home-section-content .doc-meta {
    font-size: 12px; 
    color: var(--text-dark); 
    font-style: italic; 
    margin-top: -8px;
    margin-bottom: 20px;
}

.home-section-content .doc-divider {
    border: 0; 
    border-top: 1px solid var(--border-color); 
    margin: 20px 0; 
    width: 100%;
}

.home-section-content .doc-note {
    font-style: italic; 
    color: var(--text-dark); 
    font-size: 13px;
}