/*
Theme Name: Centrum Dowodzenia
Theme URI: https://narzedziownik.portal-nieruchomosci.com.pl
Author: Ewelina Zajączkowska-Klec
Description: Motyw centrum dowodzenia dla Narzędziownika Kupującego - strona główna z panelem produktów, blogiem i sekcją O mnie.
Version: 1.0
Requires at least: 5.9
Requires PHP: 7.4
Text Domain: centrum-dowodzenia
*/

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

:root{
    --orange-primary:#f49d19;
    --orange-secondary:#feb707;
    --yellow:#ffde59;
    --white:#ffffff;
    --dark:#1a1a1a;
    --gray:#555555;
    --light-bg:#fff9f0;
}

body{
    font-family:'Poppins', sans-serif;
    background:var(--white);
    color:var(--dark);
    line-height:1.7;
}

.container{ max-width:900px; margin:0 auto; padding:0 20px; }
.wide-container{ max-width:1200px; margin:0 auto; padding:0 20px; }

a{ color:inherit; }

/* ============ INLINE SVG ICONS ============ */
.icon{
    width:1em;
    height:1em;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    vertical-align:-0.15em;
    flex-shrink:0;
}

/* ============ NAV ============ */
nav{
    background:var(--white);
    padding:16px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
}
.nav-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.logo{
    font-size:24px;
    font-weight:900;
    color:var(--orange-primary);
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}
.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}
.nav-links a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    font-size:15px;
    transition:color .3s;
}
.nav-links a:hover{ color:var(--orange-primary); }

.nav-right{ display:flex; align-items:center; gap:14px; }

.login-btn{
    display:flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color:var(--white);
    padding:11px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    box-shadow:0 6px 18px rgba(244,157,25,0.3);
    transition:all .3s;
    white-space:nowrap;
}
.login-btn:hover{ transform:translateY(-2px); box-shadow:0 10px 25px rgba(244,157,25,0.4); }

.burger{ display:none; font-size:22px; color:var(--dark); cursor:pointer; }

/* ============ HERO / GREETING ============ */
.hero{
    background:linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    padding:130px 20px 70px;
    text-align:center;
    color:var(--white);
    margin-top:0;
    position:relative;
    overflow:hidden;
}
.hero .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.18);
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
.hero h1{
    font-size:46px;
    font-weight:900;
    margin-bottom:16px;
    line-height:1.2;
}
.hero p{
    font-size:19px;
    opacity:.95;
    max-width:640px;
    margin:0 auto 35px;
}
.hero-actions{
    display:flex;
    gap:16px;
    justify-content:center;
    flex-wrap:wrap;
}
.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    text-decoration:none;
    transition:all .3s;
}
.btn-white{
    background:var(--white);
    color:var(--orange-primary);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.btn-white:hover{ transform:translateY(-3px); box-shadow:0 15px 35px rgba(0,0,0,0.2); }
.btn-outline{
    border:2px solid rgba(255,255,255,0.7);
    color:var(--white);
}
.btn-outline:hover{ background:rgba(255,255,255,0.15); }

/* ============ SECTION SHARED ============ */
section{ padding:80px 20px; }
.section-head{ text-align:center; margin-bottom:50px; }
.section-head .tag{
    color:var(--orange-primary);
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
    display:block;
}
.section-head h2{
    font-size:36px;
    font-weight:800;
    color:var(--dark);
    margin-bottom:12px;
}
.section-head p{
    color:var(--gray);
    font-size:17px;
    max-width:600px;
    margin:0 auto;
}

/* ============ QUICK START / GUIDE ============ */
.guide{ background:var(--light-bg); position:relative; }
.guide:before{
    content:"";
    position:absolute; inset:0;
    background-image:radial-gradient(rgba(244,157,25,0.15) 1.5px, transparent 1.5px);
    background-size:22px 22px;
    opacity:.6;
    pointer-events:none;
}
.guide .wide-container{ position:relative; z-index:1; }
.guide-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}
.guide-card{
    background:var(--white);
    border:2px solid var(--yellow);
    border-radius:16px;
    padding:34px 28px;
    text-decoration:none;
    transition:all .3s;
    display:block;
}
.guide-card:hover{
    transform:translateY(-6px);
    border-color:var(--orange-primary);
    box-shadow:0 15px 35px rgba(244,157,25,0.15);
}
.guide-step{
    width:38px;height:38px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color:var(--white);
    display:flex;align-items:center;justify-content:center;
    font-weight:800;
    margin-bottom:18px;
    font-size:16px;
}
.guide-card h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:var(--dark);
}
.guide-card p{
    font-size:15px;
    color:var(--gray);
}
.guide-card .go{
    margin-top:16px;
    font-size:14px;
    font-weight:700;
    color:var(--orange-primary);
    display:flex;
    align-items:center;
    gap:6px;
}

/* ============ PRODUCTS ============ */
.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.product-card{
    background:var(--white);
    border:3px solid var(--yellow);
    border-radius:18px;
    overflow:hidden;
    transition:all .3s;
    display:flex;
    flex-direction:column;
}
.product-card:hover{
    transform:translateY(-6px);
    border-color:var(--orange-primary);
    box-shadow:0 18px 40px rgba(244,157,25,0.15);
}
.product-thumb{
    background:linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color:var(--white);
    font-size:46px;
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.product-body{ padding:28px; flex:1; display:flex; flex-direction:column; }
.badge-row{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.product-badge{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    padding:4px 12px;
    border-radius:50px;
    width:fit-content;
}
.badge-live{ background:#e8f5e9; color:#2e7d32; }
.badge-soon{ background:#eee; color:var(--gray); }
.badge-tool{ background:#fff3e0; color:#e65100; }
.badge-service{ background:#e3f2fd; color:#1565c0; }
.product-card h3{ font-size:21px; font-weight:700; margin-bottom:10px; color:var(--dark); }
.product-card p{ font-size:15px; color:var(--gray); margin-bottom:20px; flex:1; }
.product-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    font-size:15px;
    color:var(--orange-primary);
    text-decoration:none;
}
.product-card.disabled{ opacity:.65; }
.product-card.disabled .product-link{ color:var(--gray); cursor:default; }

/* ============ BLOG ============ */
.blog{ background:var(--light-bg); }
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.blog-card{
    background:var(--white);
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    transition:all .3s;
    box-shadow:0 4px 16px rgba(0,0,0,0.05);
    display:flex;
    flex-direction:column;
}
.blog-card:hover{ transform:translateY(-6px); box-shadow:0 15px 35px rgba(0,0,0,0.1); }
.blog-thumb{
    height:150px;
    background:linear-gradient(135deg, rgba(244,157,25,0.85), rgba(254,183,7,0.85));
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    font-size:34px;
}
.blog-body{ padding:24px; }
.blog-date{ font-size:13px; color:var(--orange-primary); font-weight:700; margin-bottom:8px; }
.blog-card h3{ font-size:18px; font-weight:700; color:var(--dark); margin-bottom:10px; line-height:1.4; }
.blog-card p{ font-size:14px; color:var(--gray); }
.blog-more{ text-align:center; margin-top:40px; }

/* ============ ABOUT ME ============ */
.about{ background:var(--white); }
.about-box{
    background:var(--white);
    border:3px solid var(--orange-primary);
    border-radius:20px;
    padding:50px;
    display:grid;
    grid-template-columns:160px 1fr;
    gap:40px;
    align-items:center;
}
.about-avatar{
    width:160px;
    height:160px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
    font-size:60px;
    font-weight:800;
}
.about-avatar--photo{
    object-fit:cover;
    border:4px solid var(--yellow);
}
.about-name{ font-size:28px; font-weight:800; color:var(--orange-primary); margin-bottom:6px; }
.about-title{ font-size:16px; color:var(--gray); margin-bottom:18px; font-weight:500; }
.about-box p{ font-size:16px; color:var(--dark); margin-bottom:14px; }
.about-links{ display:flex; gap:16px; flex-wrap:wrap; margin-top:16px; }
.about-links a{
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    color:var(--orange-primary);
    display:flex;
    align-items:center;
    gap:6px;
}

/* ============ FOOTER ============ */
footer{
    background:var(--dark);
    color:var(--white);
    padding:40px 20px;
    text-align:center;
}
footer p{ opacity:.7; font-size:14px; }
footer .logo{ justify-content:center; margin-bottom:20px; color:var(--white); }
footer .logo i{ color:var(--orange-primary); }
.footer-social{ display:flex; justify-content:center; gap:14px; margin:22px 0; }
.footer-social a{
    width:38px;height:38px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex;align-items:center;justify-content:center;
    color:var(--white);
    text-decoration:none;
    transition:all .3s;
    font-size:15px;
}
.footer-social a:hover{ background:var(--orange-primary); transform:translateY(-3px); }

/* ============ DECORATIVE / HERO EXTRAS ============ */
@keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-14px); }
}
.hero-decor{
    position:absolute;
    width:66px;height:66px;
    border-radius:50%;
    background:rgba(255,255,255,0.16);
    display:flex;align-items:center;justify-content:center;
    font-size:24px;
    color:var(--white);
    animation:float 5s ease-in-out infinite;
}
.hero-decor.d1{ top:20%; left:8%; }
.hero-decor.d2{ top:66%; left:15%; animation-delay:1.2s; width:48px; height:48px; font-size:18px; }
.hero-decor.d3{ top:22%; right:9%; animation-delay:.6s; }
.hero-decor.d4{ top:68%; right:14%; animation-delay:1.8s; width:54px; height:54px; font-size:20px; }
.hero-wave{ position:absolute; bottom:-2px; left:0; width:100%; line-height:0; }
.hero-wave svg{ width:100%; height:70px; display:block; }

/* ============ HERO - UKŁAD DWUKOLUMNOWY (zdjęcie + tekst) ============ */
.hero-inner{
    max-width:1180px;
    margin:0 auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    align-items:center;
    position:relative;
    z-index:1;
}
.hero-photo-col{ text-align:center; }
.hero-photo-large{
    width:100%;
    max-width:360px;
    height:auto;
    max-height:460px;
    object-fit:contain;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,0.28));
}
.hero-photo-large--placeholder{
    width:100%;
    max-width:280px;
    height:340px;
    margin:0 auto;
    border-radius:24px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:80px;
    color:var(--white);
}
.hero-photo-caption{ margin-top:18px; }
.hero-photo-caption strong{
    display:block;
    font-size:19px;
    font-weight:700;
    color:var(--white);
}
.hero-photo-caption span{
    font-size:14px;
    color:rgba(255,255,255,0.85);
}
.hero-text-col{ text-align:left; }
.hero-text-col .eyebrow{ margin-bottom:18px; }
.hero-text-col h1{ text-align:left; }
.hero-text-col p{ text-align:left; max-width:100%; margin:0 0 35px; }
.hero-text-col .hero-actions{ justify-content:flex-start; }

.section-head .underline{
    display:block;
    width:60px;
    height:4px;
    background:linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius:4px;
    margin:14px auto 0;
}

/* ============ STATS BAR ============ */
.stats{ background:var(--white); padding:55px 20px 65px; }
.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    max-width:800px;
    margin:0 auto;
}
.stat-card{ text-align:center; padding:10px; }
.stat-icon{
    width:56px;height:56px;
    border-radius:50%;
    background:var(--light-bg);
    color:var(--orange-primary);
    display:flex;align-items:center;justify-content:center;
    font-size:22px;
    margin:0 auto 14px;
}
.stat-number{ font-size:28px; font-weight:800; color:var(--dark); }
.stat-label{ font-size:13px; color:var(--gray); margin-top:4px; }

/* ============ REVEAL ANIMATION ============ */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============ TESTIMONIALS ============ */
.testimonials{ background:var(--light-bg); }
.testi-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}
.testi-card{
    background:var(--white);
    border-radius:16px;
    padding:32px;
    box-shadow:0 4px 16px rgba(0,0,0,0.05);
    transition:all .3s;
}
.testi-card:hover{ transform:translateY(-6px); box-shadow:0 15px 35px rgba(0,0,0,0.08); }
.testi-icon{
    width:44px;height:44px;
    border-radius:50%;
    background:var(--light-bg);
    color:var(--orange-primary);
    display:flex;align-items:center;justify-content:center;
    font-size:16px;
    margin-bottom:16px;
}
.testi-stars{ color:var(--orange-secondary); font-size:13px; margin-bottom:12px; }
.testi-card p{ font-size:15px; color:var(--dark); margin-bottom:20px; }
.testi-author{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
    width:42px;height:42px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    color:var(--white);
    display:flex;align-items:center;justify-content:center;
    font-weight:700;
    font-size:14px;
    flex-shrink:0;
}
.testi-name{ font-weight:700; font-size:14px; color:var(--dark); }
.testi-role{ font-size:12px; color:var(--gray); }

/* ============ PULPIT KLIENTA ============ */
.dashboard-wrap{ min-height:60vh; }
.login-gate{
    padding:180px 20px 100px;
    min-height:70vh;
    display:flex;
    align-items:center;
    background:var(--light-bg);
}
.login-gate-card{
    background:var(--white);
    border:3px solid var(--orange-primary);
    border-radius:20px;
    padding:60px 50px;
    text-align:center;
    max-width:520px;
    margin:0 auto;
}
.login-gate-icon{
    width:70px;height:70px;
    border-radius:50%;
    background:var(--light-bg);
    color:var(--orange-primary);
    display:flex;align-items:center;justify-content:center;
    font-size:30px;
    margin:0 auto 24px;
}
.login-gate-card h1{ font-size:28px; font-weight:800; margin-bottom:14px; color:var(--dark); }
.login-gate-card p{ color:var(--gray); font-size:16px; margin-bottom:30px; }
.login-gate-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---- Dashboard shell (sidebar + zakładki) ---- */
.dash-shell{
    display:flex;
    align-items:flex-start;
    padding-top:80px;
    min-height:100vh;
    background:var(--light-bg);
}
.dash-sidebar{
    width:260px;
    flex-shrink:0;
    background:var(--white);
    border-right:1px solid #eee;
    padding:40px 22px;
    min-height:calc(100vh - 80px);
    position:sticky;
    top:80px;
}
.dash-user{ text-align:center; margin-bottom:30px; padding-bottom:24px; border-bottom:1px solid #eee; }
.dash-user-avatar{ border-radius:50%; margin-bottom:12px; }
.dash-user-name{ font-weight:700; font-size:16px; color:var(--dark); }
.dash-user-email{ font-size:13px; color:var(--gray); word-break:break-all; }
.dash-nav{ list-style:none; }
.dash-nav li{ margin-bottom:6px; }
.dash-nav li a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border-radius:10px;
    color:var(--dark);
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:all .2s;
}
.dash-nav li a:hover, .dash-nav li a.active{
    background:var(--light-bg);
    color:var(--orange-primary);
}
.dash-sidebar-footer{
    margin-top:30px;
    padding-top:20px;
    border-top:1px solid #eee;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.dash-sidebar-footer a{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:600;
    color:var(--gray);
    text-decoration:none;
}
.dash-sidebar-footer a:hover{ color:var(--orange-primary); }

.dash-content{ flex:1; padding:50px 50px 90px; max-width:960px; }
.dash-content h1{ font-size:30px; font-weight:800; color:var(--dark); margin-bottom:10px; }
.dash-intro{ color:var(--gray); font-size:16px; margin-bottom:30px; }
.dash-panel{ display:none; }
.dash-panel.active{ display:block; }

.dash-stats-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:40px;
}
.dash-stat-card{
    background:var(--white);
    border:2px solid var(--yellow);
    border-radius:14px;
    padding:24px;
    text-align:center;
}
.dash-stat-number{ font-size:22px; font-weight:800; color:var(--orange-primary); }
.dash-stat-label{ font-size:13px; color:var(--gray); margin-top:6px; }

.dash-section-title{ font-size:20px; font-weight:800; margin-bottom:16px; color:var(--dark); }
.dash-quick-links{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.dash-quick-link{
    display:flex;
    align-items:center;
    gap:12px;
    background:var(--white);
    border:2px solid var(--yellow);
    border-radius:14px;
    padding:20px;
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    font-size:14px;
    transition:all .2s;
}
.dash-quick-link:hover{ border-color:var(--orange-primary); transform:translateY(-3px); }
.dash-quick-link .icon{ color:var(--orange-primary); font-size:20px; flex-shrink:0; }

.dash-note{ margin-top:24px; color:var(--gray); font-size:14px; }

.dash-profile-card{
    display:flex;
    align-items:center;
    gap:24px;
    background:var(--white);
    border:2px solid var(--orange-primary);
    border-radius:16px;
    padding:30px;
    margin-bottom:24px;
}
.dash-profile-avatar{ border-radius:50%; flex-shrink:0; }
.dash-profile-name{ font-size:20px; font-weight:800; color:var(--dark); }
.dash-profile-email{ font-size:14px; color:var(--gray); margin-top:4px; }
.dash-profile-since{ font-size:13px; color:var(--gray); margin-top:6px; }
.dash-profile-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.dash-contact-info{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:30px; }
.dash-contact-item{
    display:flex;
    align-items:center;
    gap:8px;
    background:var(--white);
    border:2px solid var(--yellow);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:var(--dark);
    text-decoration:none;
}
.dash-contact-item:hover{ border-color:var(--orange-primary); color:var(--orange-primary); }

.dash-form{ max-width:520px; }
.dash-form label{ display:block; font-weight:600; font-size:14px; margin-bottom:6px; color:var(--dark); }
.dash-form input[type="text"],
.dash-form input[type="email"],
.dash-form textarea{
    width:100%;
    padding:12px 14px;
    border:2px solid #eee;
    border-radius:10px;
    font-family:inherit;
    font-size:15px;
    margin-bottom:20px;
    background:var(--white);
}
.dash-form textarea{ min-height:140px; resize:vertical; }
.dash-form input:focus, .dash-form textarea:focus{ outline:none; border-color:var(--orange-primary); }
.dash-form-notice{
    padding:16px 20px;
    border-radius:10px;
    margin-bottom:24px;
    font-size:14px;
    font-weight:600;
}
.dash-form-notice--success{ background:#e8f5e9; color:#2e7d32; }
.dash-form-notice--error{ background:#ffebee; color:#c62828; }

.dashboard-hero{
    background:linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    padding:150px 20px 70px;
    text-align:center;
    color:var(--white);
}
.dashboard-hero h1{ font-size:38px; font-weight:900; margin-bottom:14px; }
.dashboard-hero p{ font-size:18px; opacity:.95; max-width:600px; margin:0 auto 30px; }
.dashboard-hero .hero-actions{ justify-content:center; }

@media (max-width:600px){
    .login-gate-card{ padding:40px 26px; }
    .dashboard-hero h1{ font-size:28px; }
}

@media (max-width:900px){
    .dash-shell{ flex-direction:column; }
    .dash-sidebar{
        width:100%;
        min-height:auto;
        position:static;
        border-right:none;
        border-bottom:1px solid #eee;
        padding:24px 20px;
    }
    .dash-nav{ display:flex; flex-wrap:wrap; gap:6px; }
    .dash-nav li{ margin-bottom:0; }
    .dash-content{ padding:30px 20px 60px; }
    .dash-stats-row, .dash-quick-links{ grid-template-columns:1fr; }
    .dash-profile-card{ flex-direction:column; text-align:center; }
    .dash-sidebar-footer{ flex-direction:row; justify-content:center; gap:24px; }
}

/* ============ GENERIC PAGE / POST FALLBACK (page.php, single.php, index.php) ============ */
.entry-wrap{ padding:160px 20px 100px; max-width:800px; margin:0 auto; }
.entry-wrap h1{ font-size:36px; font-weight:800; margin-bottom:24px; color:var(--dark); }
.entry-wrap .entry-content{ font-size:17px; color:var(--dark); }
.entry-wrap .entry-content p{ margin-bottom:18px; }
.entry-wrap .entry-content h2{ font-size:26px; font-weight:700; margin:30px 0 14px; color:var(--orange-primary); }
.entry-wrap .entry-content h3{ font-size:21px; font-weight:700; margin:24px 0 12px; }
.entry-wrap .entry-content img{ max-width:100%; height:auto; border-radius:12px; margin:20px 0; }
.entry-wrap .entry-content a{ color:var(--orange-primary); text-decoration:underline; }
.post-list-item{ margin-bottom:40px; padding-bottom:40px; border-bottom:1px solid #eee; }
.post-list-item h2{ font-size:26px; margin-bottom:10px; }
.post-list-item h2 a{ text-decoration:none; color:var(--dark); }
.post-list-item h2 a:hover{ color:var(--orange-primary); }

/* ============ RESPONSIVE ============ */
@media (max-width:900px){
    .nav-links{ display:none; }
    .burger{ display:block; }
    .guide-grid, .products-grid, .blog-grid, .testi-grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:repeat(2,1fr); }
    .about-box{ grid-template-columns:1fr; text-align:center; }
    .about-avatar{ margin:0 auto; }
    .hero h1{ font-size:32px; }
    .section-head h2{ font-size:28px; }
    .hero-decor{ display:none; }
    .hero-inner{ grid-template-columns:1fr; text-align:center; gap:30px; }
    .hero-photo-large{ max-width:240px; }
    .hero-photo-large--placeholder{ max-width:220px; height:260px; font-size:60px; }
    .hero-text-col{ text-align:center; }
    .hero-text-col h1{ text-align:center; }
    .hero-text-col p{ text-align:center; }
    .hero-text-col .hero-actions{ justify-content:center; }
}
