/*
Theme Name: Analiza Biznesowa
Theme URI: https://analiza-biznesowa.com.pl
Author: Maciej Pieniak
Author URI: https://pieniak.it
Description: Autorski motyw dla portalu analiza-biznesowa.com.pl. Czysty, narzędziowy i ekspercki design.
Version: 1.0.3
Text Domain: analiza-biznesowa
*/

/* --- DESIGN SYSTEM & GLOBAL STYLES --- */
:root {
    --primary-color: #0b2c3d;
    --accent-color: #d49b3d;
    --bg-color: #ffffff;
    --bg-alt-color: #f4f7f9;
    --text-color: #213038;
    --gray-muted: #6c757d;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

/* --- HEADER & NAVIGATION (TECHNICAL SPECIFICATION) --- */
.site-header {
    width: 100%;
    border-bottom: 1px solid #d4d8e0; /* unified separator color across entire page */
    background-color: #ffffff;
    position: relative;
    z-index: 1000;
}

/* Poziom 1: Top Bar */
.header-top-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 24px 12px;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
    flex: 0 0 auto;
    overflow: visible;
}

.header-logo-text {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800; /* font-extrabold */
    letter-spacing: -0.025em; /* tracking-tight */
    color: #0F2537;
    transition: color 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.header-logo-group:hover .header-logo-text {
    color: #1D7094;
}

.header-logo-svg {
    display: block;
    height: 88px;
    width: auto;
    max-width: none;
    color: #2E8BB8;
}

.header-slogan {
    display: none;
    color: #9ca3af; /* text-gray-400 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 500;
}

@media (min-width: 768px) {
    .header-slogan {
        display: block;
    }
}

/* Poziom 2: Navbar */
.header-navbar {
    width: 100%;
    background: linear-gradient(to right, #081d27 0%, #0e374b 50%, #1c5f78 100%) !important; /* horizontal brand gradient */
    color: #ffffff;
    user-select: none;
    margin-top: 0;
    position: relative;
    z-index: 1001;
}

.header-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;  /* reduced from 56px — tighter, cleaner nav bar */
}

.header-menu-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    height: 100%;
}

/* Gutenberg block navigation overrides to match custom styles */
.header-navbar-inner .wp-block-navigation {
    height: 100%;
}

.header-navbar-inner .wp-block-navigation__container {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    height: 100% !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-navbar-inner .wp-block-navigation-item {
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.header-navbar-inner .wp-block-navigation-item > .wp-block-navigation-item__content,
.header-navbar-inner .wp-block-navigation-item > .wp-block-navigation-submenu__toggle {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
    font-family: 'Outfit', sans-serif !important;
    cursor: pointer !important;
}

.header-navbar-inner .wp-block-navigation-item > .wp-block-navigation-item__content:hover,
.header-navbar-inner .wp-block-navigation-item > .wp-block-navigation-submenu__toggle:hover,
.header-navbar-inner .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content {
    background-color: #143d52 !important;
    color: #2E8BB8 !important;
}

/* Dropdown Submenu Container */
.header-navbar-inner .wp-block-navigation__submenu-container {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 220px !important;
    background-color: #0e3245 !important; /* brand navy dropdown background */
    border: 1px solid #143d52 !important;
    border-radius: 0 0 6px 6px !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3) !important;
    padding: 8px 0 !important;
    display: none !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    z-index: 1002 !important;
}

.header-navbar-inner .wp-block-navigation-item.has-child:hover > .wp-block-navigation__submenu-container {
    display: flex !important;
}

.header-navbar-inner .wp-block-navigation__submenu-container .wp-block-navigation-item {
    width: 100% !important;
    height: auto !important;
}

.header-navbar-inner .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    display: block !important;
    width: 100% !important;
    padding: 10px 20px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    font-weight: 500 !important;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
}

.header-navbar-inner .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
    background-color: #143d52 !important;
    color: #2E8BB8 !important;
}

.header-menu-right {
    display: none;
    align-items: center;
    gap: 24px;
    font-size: 0.75rem; /* text-xs */
    font-weight: 600;
    color: #7f8c8d; /* text-gray-500 */
}

@media (min-width: 1200px) { /* xl screen */
    .header-menu-right {
        display: flex;
    }
}

/* Menu Items */
.nav-item-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-item-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.nav-item-btn:hover {
    background-color: #143d52 !important; /* unified hover highlight */
    color: #2E8BB8 !important;
}

.nav-item-btn.active {
    background-color: #143d52 !important;
    color: #2E8BB8 !important;
}

.nav-item-btn svg {
    transition: transform 0.2s ease;
}

.nav-item-wrapper:hover .nav-item-btn svg.arrow {
    transform: rotate(180deg);
}

/* Submenu Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px; /* w-48 */
    background-color: #0e3245 !important; /* brand navy dropdown background */
    border: 1px solid #143d52 !important;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -2px rgba(0,0,0,0.1); /* shadow-xl */
    padding: 8px 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    margin: 0;
    list-style: none;
}

.nav-item-wrapper:hover .nav-dropdown {
    display: flex;
}

.nav-dropdown-link {
    display: block; /* crucial to prevent vertical overlap of inline padding */
    padding: 10px 20px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown-link:hover {
    background-color: #143d52 !important; /* unified item hover */
    color: #2E8BB8 !important;
    padding-left: 24px; /* subtle shift */
}

/* Badges & Planned Faza 2 items */
.nav-planned-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.nav-planned-label {
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 700;
    color: #2E8BB8;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 3px;
}

.nav-planned-text {
    color: #7F8C8D;
    cursor: not-allowed;
    transition: color 0.2s ease;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.nav-planned-text:hover {
    color: #95a5a6;
}

/* --- HERO BANNER STYLES --- */
.hero-section {
    background: #eaebf0 !important;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #d4d8e0; /* unified separator */
    border-bottom: 1px solid #d4d8e0;
}

/* Scalable and responsive background watermark on the left side */
.hero-section::before {
    content: '';
    position: absolute;
    top: 95px; /* aligned precisely with the eye-line of the headline 'Analiza biznesowa' */
    left: 0;
    width: 250px; /* updated width to match the new high-quality 254px watermark image */
    height: calc(100% - 115px); /* keeps it elegantly within section boundaries */
    background-image: url('assets/watermark_transparent.png');
    background-repeat: no-repeat;
    background-position: left top; /* ensures top of diagram aligns with top: 95px */
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/* Ensure hero content sits above the watermark */
.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #0c1b24 !important; /* exact dark navy/black color from original mockup text */
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
}

.hero-subtitle {
    color: #0c1b24 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
}

/* Container displaying exactly the right side of the banner image */
.hero-graphic-container {
    width: 100%;
    height: 480px;
    background-image: url('assets/hero_illustration_clean.jpg');
    background-position: center center;
    background-size: contain; /* no crop needed as this image is clean and only contains the illustration */
    background-repeat: no-repeat;
}

/* Container reset for Gutenberg Button Block wrapper */
.wp-block-button.hero-button {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
}

/* Active Button Link Styling */
.hero-button a,
.wp-block-button.hero-button a,
.wp-block-button.hero-button .wp-block-button__link,
.wp-block-button.hero-button .wp-element-button {
    background-color: #1c75bc !important; /* original royal blue color */
    color: #ffffff !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 14px rgba(28, 117, 188, 0.4) !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
    padding: 12px 28px !important;
    text-decoration: none !important;
}

.hero-button a:hover,
.wp-block-button.hero-button a:hover,
.wp-block-button.hero-button .wp-block-button__link:hover,
.wp-block-button.hero-button .wp-element-button:hover {
    background-color: #155b92 !important; /* original hover color */
    box-shadow: 0 6px 20px rgba(28, 117, 188, 0.6) !important;
    transform: translateY(-1px) !important;
}

/* --- MPR01 FEATURE SECTION --- */
.mpr01-section {
    background: #ffffff !important;
    border-top: 1px solid #d4d8e0 !important;
    border-bottom: 1px solid #d4d8e0 !important;
    padding: 60px 20px !important;
}

.mpr01-layout {
    max-width: 1180px;
    margin: 0 auto;
    gap: 36px;
}

.mpr01-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mpr01-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    margin: 0 !important;
    padding: 6px 12px !important;
    border-radius: 999px;
    background: #0b2c3d;
    color: #ffffff !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.mpr01-title {
    margin: 0 !important;
    color: #0c1b24 !important;
    font-size: 2.35rem !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
}

.mpr01-lead {
    margin: 0 !important;
    color: #4a5a68 !important;
    font-size: 1.02rem !important;
    line-height: 1.7 !important;
    max-width: 42rem;
}

.mpr01-points {
    margin: 6px 0 0 !important;
    padding-left: 18px !important;
    color: #213038 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

.mpr01-points li {
    margin-bottom: 8px !important;
}

.mpr01-visual-column {
    min-width: 0;
}

.mpr01-visual-stack {
    position: relative;
    min-height: 440px;
    padding: 14px 0 20px;
}

.mpr01-visual-main {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(11, 44, 61, 0.12);
    margin: 0;
}

.mpr01-visual-main img {
    display: block;
    width: 100%;
    height: auto;
}

.mpr01-visual-float {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 54%;
    max-width: 360px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(11, 44, 61, 0.18);
    margin: 0;
}

.mpr01-visual-float img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- KNOWLEDGE CARDS SECTION --- */
#obszary-wiedzy {
    background-color: #eaebf0 !important;
    background-image: none !important;
    border-top: 1px solid #d4d8e0;
    border-bottom: 1px solid #d4d8e0;
    padding: 50px 20px !important; /* breathing room above and below the grid */
}

.knowledge-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch; /* wszystkie kafle w wierszu rozciągają się do tej samej wysokości */
    background-image: url('assets/knowledge_bg.jpg') !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 36% auto !important;
}

@media (max-width: 991px) {
    .knowledge-grid-container {
        background-image: none !important;
    }
}

@media (min-width: 992px) {
    /* FRONTEND: grid container rules */
    .knowledge-grid-container {
        grid-template-columns: 1.15fr 1.15fr 1.15fr 0.85fr 0.85fr;
        grid-template-rows: 140px 140px;
        row-gap: 16px;
        column-gap: 14px;
        padding-right: 290px;
        align-items: end; /* Wyrównanie wszystkich elementów w siatce do dołu ich komórek */
        justify-items: stretch;
    }

    /* Wiersz 1: Co to jest + Kim jest — dokładnie 140px */
    .knowledge-grid-container > .knowledge-card:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
        height: 140px !important;
    }
    .knowledge-grid-container > .knowledge-card:nth-child(2) {
        grid-column: 2 !important;
        grid-row: 1 !important;
        height: 140px !important;
    }

    /* Wiersz 2: START TUTAJ + As-Is + Prowadzenie — dokładnie 140px, idealnie w linii na dole */
    .knowledge-grid-container > .knowledge-card:nth-child(3) {
        grid-column: 1 !important;
        grid-row: 2 !important;
        height: 140px !important;
    }
    .knowledge-grid-container > .knowledge-card:nth-child(4) {
        grid-column: 2 !important;
        grid-row: 2 !important;
        height: 140px !important;
    }
    .knowledge-grid-container > .knowledge-card:nth-child(5) {
        grid-column: 3 !important;
        grid-row: 2 !important;
        height: 140px !important;
    }

    /* Kolumny 4 i 5: krótkie kafle (75px) wyrównane idealnie do dołu wiersza 2 */
    .knowledge-grid-container > .knowledge-card:nth-child(6) {
        grid-column: 4 !important;
        grid-row: 2 !important;
        height: 75px !important;
        align-self: end !important;
    }
    .knowledge-grid-container > .knowledge-card:nth-child(7) {
        grid-column: 5 !important;
        grid-row: 2 !important;
        height: 75px !important;
        align-self: end !important;
    }

    /* ==========================================================================
       GUTENBERG BLOCK EDITOR COMPATIBILITY
       Styling block wrappers inside the editor to render the grid properly
       ========================================================================== */
    .knowledge-grid-container .block-editor-block-list__layout {
        display: grid !important;
        grid-template-columns: 1.15fr 1.15fr 1.15fr 0.85fr 0.85fr !important;
        grid-template-rows: 140px 140px !important;
        row-gap: 16px !important;
        column-gap: 14px !important;
        align-items: end !important;
        justify-items: stretch !important;
    }

    /* Editor: position block wrapper components in the grid */
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(1) .knowledge-card {
        height: 140px !important;
    }

    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(2) {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(2) .knowledge-card {
        height: 140px !important;
    }

    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(3) {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(3) .knowledge-card {
        height: 140px !important;
    }

    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(4) {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(4) .knowledge-card {
        height: 140px !important;
    }

    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(5) {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(5) .knowledge-card {
        height: 140px !important;
    }

    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(6) {
        grid-column: 4 !important;
        grid-row: 2 !important;
        align-self: end !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(6) .knowledge-card {
        height: 75px !important;
    }

    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(7) {
        grid-column: 5 !important;
        grid-row: 2 !important;
        align-self: end !important;
    }
    .knowledge-grid-container .block-editor-block-list__layout > [data-block]:nth-child(7) .knowledge-card {
        height: 75px !important;
    }
}




/* ========================================
   KNOWLEDGE CARDS — consolidated styles
   ======================================== */
.knowledge-card {
    background: linear-gradient(135deg, rgba(12, 73, 94, 0.60) 0%, rgba(14, 66, 86, 0.72) 50%, rgba(16, 60, 78, 0.82) 100%) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    border-radius: 16px !important;
    box-shadow:
        0 8px 32px rgba(6, 31, 46, 0.15) !important,
        inset 0 1px 0 rgba(255, 255, 255, 0.35) !important,
        inset 0 0 1px rgba(255, 255, 255, 0.20) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(46, 139, 184, 0.35) !important;
    overflow: hidden !important;
    /* layout — flex column, centered content. Height driven by grid align-self:stretch */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    position: relative !important;
    /* NO explicit height — grid align-self:stretch handles filling the 160px cell */
    width: 100% !important;
    min-width: 0 !important;
}

/* Icon container — centers icon asset horizontally */
.kc-icon {
    display: block !important;
    margin: 0 auto !important;
    line-height: 0 !important; /* prevents extra space below SVG */
}

.kc-icon--img {
    width: 72px !important;
    height: 72px !important;
}

.kc-icon--img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.kc-icon--large.kc-icon--img {
    width: 92px !important;
    height: 92px !important;
}

.kc-icon--small.kc-icon--img {
    width: 24px !important;
    height: 24px !important;
}

.tg-icon {
    display: block !important;
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 8px !important;
}

.tg-icon img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Diagonal glass sheen reflection (ukośny refleks świetlny) */
.knowledge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 30%,
        rgba(255, 255, 255, 0.22) 50%, /* glossy sheen sweep */
        rgba(255, 255, 255, 0.0) 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

/* Gold sheen reflection for the featured START card */
.knowledge-card.featured::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(229, 169, 60, 0.0) 30%,
        rgba(229, 169, 60, 0.35) 50%,
        rgba(229, 169, 60, 0.0) 70%,
        transparent 100%
    );
}

.knowledge-card.featured {
    /* border gold, no explicit height — grid span 2 + align-self:stretch fills 336px */
    border: 2px solid rgba(229, 169, 60, 0.40) !important;
}

.knowledge-card.tall {
    /* now unified — all standard cards use height: 100% from grid rows */
}

.knowledge-card.short {
    height: 85px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0 14px !important;
    gap: 10px !important;
}

/* Short card: icon wrapper resets margin/flex in row layout */
.knowledge-card.short .kc-icon {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.knowledge-card.short img {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

.knowledge-card.short p {
    margin: 0 !important;
}

.knowledge-card.short p a {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* --- shared icon z-index inside cards (margin handled by gap/kc-icon) --- */
.knowledge-card svg,
.knowledge-card img {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    position: relative !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
    /* NO margin-bottom here — gap on flex container handles spacing */
}

.knowledge-card a {
    position: relative !important;
    z-index: 2 !important;
}

.knowledge-card p {
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2 !important;
    position: relative !important;
}

.knowledge-card p a {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

/* Clickable card overlay — stretches full card to be clickable */
.knowledge-card p a::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 10 !important;
}

.knowledge-card:hover p a {
    color: #ffffff !important;
}

/* --- HOVER state --- */
.knowledge-card:hover {
    transform: translateY(-6px) !important;
    background: linear-gradient(135deg, rgba(20, 110, 135, 0.40) 0%, rgba(12, 60, 85, 0.55) 50%, rgba(6, 35, 55, 0.70) 100%) !important;
    backdrop-filter: blur(3px) !important;
    -webkit-backdrop-filter: blur(3px) !important;
    box-shadow:
        0 16px 36px rgba(6, 31, 46, 0.22) !important,
        inset 0 1px 0 rgba(255, 255, 255, 0.45) !important;
    border-color: rgba(46, 139, 184, 0.50) !important;
}

.knowledge-card:hover svg {
    transform: scale(1.1) !important;
}

/* Sweep sheen on hover */
.knowledge-card:hover::before {
    left: 150% !important;
}

/* --- FEATURED (START TUTAJ) card --- */
.knowledge-card.featured {
    border: 2px solid rgba(229, 169, 60, 0.55) !important;
    box-shadow:
        0 10px 30px rgba(229, 169, 60, 0.18) !important,
        inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.knowledge-card.featured .red-dot {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    width: 7px !important;
    height: 7px !important;
    background-color: #ff3b30 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px rgba(255, 59, 48, 0.8) !important;
    z-index: 3 !important;
}

.knowledge-card.featured p a {
    color: #e5a93c !important;
    font-size: 1rem !important;
    letter-spacing: 1.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.knowledge-card.featured:hover {
    box-shadow:
        0 16px 40px rgba(229, 169, 60, 0.32),
        0 8px 24px rgba(0, 0, 0, 0.18) !important;
    border-color: #f7c35f !important;
}

.knowledge-card.featured:hover p a {
    color: #f7c35f !important;
}

.knowledge-card.featured:hover .chevron-icon {
    transform: translateX(5px) scale(1.15) !important;
}

/* --- SHORT cards (AI pomocnik, Antywzorce) --- */
.knowledge-card.short {
    height: 65px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0 14px !important;
    gap: 10px !important;
}

.knowledge-card.short svg {
    width: 22px !important;
    height: 22px !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
}

.knowledge-card.short p a {
    font-size: 0.8rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* --- TECHNICAL FOOTER BUTTONS --- */
.tech-footer-btn {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.72rem;
    color: var(--gray-muted) !important;
    border: 1px solid #dcdfe3 !important;
    border-radius: 4px;
    text-decoration: none;
    background: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.2s ease;
}

.tech-footer-btn:hover {
    color: var(--primary-color) !important;
    border-color: var(--accent-color) !important;
    background-color: var(--bg-alt-color);
}

.footer-author-photo {
    width: min(100%, 180px) !important;
    margin: 0 !important;
}

.footer-author-photo img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center 28% !important;
    display: block !important;
}

@media (max-width: 781px) {
    .footer-author-photo {
        width: 150px !important;
    }

    .footer-author-photo img {
        height: 180px !important;
    }
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: var(--accent-color);
}

/* --- POLECANE PORADNIKI SECTION --- */
.polecane-section {
    background-color: #ffffff; /* white — contrasts with tinted neighbors (#eaebf0) */
    border-top: 1px solid #d4d8e0;    /* unified separator */
    border-bottom: 1px solid #d4d8e0;
}


.recent-posts-section {
    position: relative;
    padding: 60px 0;
    background-color: #eaebf0; /* aligned with hero and knowledge areas — unified cool gray-blue */
    overflow: hidden;
    border-top: 1px solid #d4d8e0;  /* unified separator */
    border-bottom: 1px solid #d4d8e0;
}

/* Ribbon watermark as a subtle texture — low opacity, doesn't dominate */
.recent-posts-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/ribbon_watermark.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.35; /* subtle — visible as texture, not as a dominant image */
    z-index: 1;
    pointer-events: none;
}

.recent-posts-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}



.recent-posts-heading {
    color: var(--primary-color) !important; /* dark navy — readable on light background */
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 30px 0;
}

.recent-posts-grid,
ul.recent-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    grid-gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (min-width: 768px) {
    .recent-posts-grid,
    ul.recent-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1200px) {
    .recent-posts-grid,
    ul.recent-posts-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Reset layout settings applied by Gutenberg's flex rules on li items */
ul.recent-posts-grid li {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.blog-card,
li.wp-block-post.blog-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    margin: 0 !important;
}

.blog-card:hover,
li.wp-block-post.blog-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12) !important;
}

.blog-card-image {
    height: 160px !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.blog-card-image a,
.blog-card-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.blog-card-content {
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.blog-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin: 0 0 12px 0 !important;
}

.blog-card-title a {
    color: #0c1b24 !important;
    text-decoration: none !important;
}

.blog-card-title a:hover {
    color: var(--accent-color) !important;
}

.blog-card-excerpt,
.blog-card-excerpt p {
    font-size: 0.88rem !important;
    color: #62727d !important;
    line-height: 1.6 !important;
    margin: 0 0 24px 0 !important;
    flex-grow: 1 !important;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-card-link {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.8rem;
    font-weight: 800;
    color: #0c1b24 !important;
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: var(--accent-color) !important;
}

.blog-card-arrow {
    width: 32px;
    height: 32px;
    background-color: #d1a153; /* gold color from mockup button */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.blog-card-arrow svg {
    color: #ffffff !important;
}

.blog-card:hover .blog-card-arrow {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero-graphic-container {
        height: 350px;
        background-size: 220% auto;
    }

    .mpr01-layout {
        gap: 24px;
    }

    .mpr01-title {
        font-size: 2rem !important;
    }

    .mpr01-visual-stack {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .hero-graphic-container {
        height: 280px;
        background-size: 200% auto;
    }
    .hero-section::before {
        display: none !important; /* Hide watermark on mobile to keep layout clean */
    }

    .mpr01-section {
        padding: 42px 20px !important;
    }

    .mpr01-title {
        font-size: 1.7rem !important;
    }

    .mpr01-visual-stack {
        min-height: 0;
        padding-bottom: 0;
    }

    .mpr01-visual-float {
        position: static;
        width: 72%;
        margin: 14px auto 0;
        display: block;
        right: auto;
        bottom: auto;
    }
}

/* --- BLOG CARD: new block elements --- */
.blog-card-category,
.blog-card-category a {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    color: var(--accent-color) !important;
    text-decoration: none !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.blog-card-date {
    font-size: 0.78rem !important;
    color: #8a9ba8 !important;
}

/* Button "Wszystkie wpisy" in recent posts */
.btn-secondary .wp-block-button__link {
    background-color: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.8px !important;
    border-radius: 6px !important;
    padding: 10px 24px !important;
    transition: all 0.2s ease !important;
}

.btn-secondary .wp-block-button__link:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* --- SINGLE POST PAGE STYLING --- */

.single-post-main {
    background-color: #ffffff;
}

.post-hero-section {
    position: relative !important;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: #0c1b25 !important; /* dark navy background matching top bar */
    padding: 60px 0 !important;
    border-top: 1px solid #d4d8e0 !important;
    border-bottom: 1px solid #d4d8e0 !important;
    overflow: hidden !important;
}

/* Dynamic post featured image as hero background on the right */
.post-hero-bg {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 50% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.post-hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    /* Soft fade-out on the left side of the graphic to blend into the navy background */
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%) !important;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%) !important;
}

.post-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left; /* left-aligned text */
    position: relative !important;
    z-index: 2 !important; /* stay above post-hero-bg */
}

/* AB Logo u góry po lewej w Hero */
.post-hero-logo {
    margin-bottom: 25px;
}

.post-hero-logo a {
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-decoration: none;
}

.post-hero-logo .logo-a {
    color: #ffffff;
}

.post-hero-logo .logo-b {
    color: #e5a93c; /* gold B */
}

.post-hero-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff !important; /* white title */
    margin: 0 0 25px 0;
    text-transform: uppercase; /* uppercase title */
}

.post-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
}

.meta-label {
    color: rgba(255, 255, 255, 0.6);
}

.meta-value,
.meta-value a {
    color: #e5a93c !important; /* gold values */
    font-weight: 600;
    text-decoration: none;
}

.meta-divider {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 4px;
}

.post-body-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 0 24px;
}

.post-entry-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-color);
}

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

.post-entry-content h2, 
.post-entry-content h3 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--primary-color);
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 16px;
}

.post-entry-content h2 { font-size: 1.55rem; }
.post-entry-content h3 { font-size: 1.28rem; }

/* 1. Wprowadzenie (Lead Box) */
.post-lead-box,
.wp-block-group.is-style-lead-box {
    background-color: #e6f0f5 !important;
    border: 1px solid #b8d2df !important;
    border-radius: 6px !important;
    padding: 20px 24px !important;
    color: #0b2c3d !important;
    font-weight: 700 !important;
    font-size: 1.08rem !important;
    line-height: 1.55 !important;
    margin-bottom: 30px !important;
}

/* 2. Cytat blokowy (Blockquote) */
blockquote,
.wp-block-quote {
    border-left: 4px solid #e5a93c !important; /* gold border left */
    background-color: #f8f9fa !important;
    padding: 20px 24px !important;
    margin: 35px 0 !important;
    border-radius: 0 8px 8px 0;
    position: relative;
}

blockquote p,
.wp-block-quote p {
    font-style: italic !important;
    font-size: 1.08rem !important;
    line-height: 1.6 !important;
    color: #0b2c3d !important;
    margin-bottom: 8px !important;
}

blockquote cite,
.wp-block-quote cite {
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    color: #0b2c3d !important;
    font-style: normal !important;
}

/* 3. Listy punktowane z kwadratami */
.post-entry-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 24px !important;
}

.post-entry-content ul li {
    position: relative;
    padding-left: 20px !important;
    margin-bottom: 12px !important;
    line-height: 1.65;
}

.post-entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: #e5a93c; /* gold color marker */
    border-radius: 1px; /* square marker */
}

/* 4. Listy numerowane w złotych kółkach */
.post-entry-content ol {
    list-style: none !important;
    counter-reset: post-ol-counter;
    padding-left: 0 !important;
    margin-bottom: 24px !important;
}

.post-entry-content ol li {
    counter-increment: post-ol-counter;
    position: relative;
    padding-left: 36px !important;
    margin-bottom: 14px !important;
    line-height: 1.65;
}

.post-entry-content ol li::before {
    content: counter(post-ol-counter);
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    background-color: #e5a93c; /* gold circle background */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

/* 5. Wskazówka Eksperta (Expert Tip Box) */
.post-tip-box,
p.post-tip-box,
.wp-block-group.is-style-tip-box {
    background-color: #f9f3eb !important; /* cream background */
    border: 1px solid #e5c89c !important;   /* gold border */
    border-radius: 8px !important;
    padding: 20px 24px 20px 55px !important; /* left padding for absolute lightbulb icon */
    margin: 35px 0 !important;
    position: relative !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
    color: #0b2c3d !important;
}

.post-tip-box::before,
p.post-tip-box::before,
.wp-block-group.is-style-tip-box::before {
    content: '💡' !important;
    position: absolute !important;
    left: 20px !important;
    top: 20px !important;
    font-size: 1.4rem !important;
    line-height: 1 !important;
}

/* --- AUTHOR BOX (template part) --- */
.author-box-section {
    background-color: #f5f7fa !important;
    border-top: 1px solid #d4d8e0 !important;
    border-bottom: 1px solid #d4d8e0 !important;
}

.author-box-inner {
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    padding-inline: 24px !important;
    box-sizing: border-box !important;
}

.author-box-label {
    text-transform: uppercase !important;
    color: #8a9ba8 !important;
    letter-spacing: 1.5px !important;
    margin: 0 0 16px !important;
}

.author-box-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 96px minmax(0, 1fr) !important;
    align-items: center !important;
    padding: 24px !important;
    column-gap: 20px !important;
    row-gap: 16px !important;
}

/* Flex rules for inner author box components */
.author-box-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.author-box-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    margin-top: 8px !important;
}


.author-avatar {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.author-avatar img {
    border-radius: 50% !important;
    width: 96px !important;
    height: 96px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.author-name,
.author-name a {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0c1b24 !important;
    text-decoration: none !important;
    margin: 0 !important;
}

.author-role,
.author-role .wp-block-post-author__name {
    font-size: 0.82rem !important;
    color: var(--accent-color) !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.author-bio {
    color: #4a5a68 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    max-width: 60ch !important;
}

.author-link a {
    color: var(--primary-color) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.author-link a:hover {
    color: var(--accent-color) !important;
}

@media (max-width: 768px) {
    .author-box-card {
        grid-template-columns: 1fr !important;
        justify-items: start !important;
        padding: 20px !important;
    }

    .author-avatar {
        justify-self: start !important;
    }

    .author-bio {
        max-width: none !important;
    }
}

/* --- SINGLE POST META BLOCKS (Gutenberg native) --- */
.post-hero-meta .wp-block-post-author,
.post-hero-meta .wp-block-post-date,
.post-hero-meta .wp-block-post-terms {
    font-size: 0.85rem !important;
    font-family: 'Outfit', sans-serif !important;
    margin: 0 !important;
    padding: 0 !important;
}

.post-hero-meta .wp-block-post-author {
    color: rgba(255,255,255,0.7) !important;
}

.post-hero-meta .wp-block-post-author a,
.post-hero-meta .meta-author a {
    color: #e5a93c !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.post-hero-meta .wp-block-post-date,
.post-hero-meta .meta-date {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.82rem !important;
}

.post-hero-meta .wp-block-post-terms,
.post-hero-meta .meta-category {
    color: #e5a93c !important;
    font-weight: 600 !important;
}

.post-hero-meta .wp-block-post-terms a,
.post-hero-meta .meta-category a {
    color: #e5a93c !important;
    text-decoration: none !important;
}

/* Navigation links */

.post-navigation-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 24px 0;
    border-top: 1px solid #d4d8e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
}

.post-navigation-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.post-navigation-section a:hover {
    color: var(--accent-color);
}

/* Comments */
.post-comments-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px 0;
    border-top: 1px solid #d4d8e0;
}

.post-comments-section h2 {
    font-family: 'Outfit', sans-serif !important;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.comment-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.comment-item img.avatar {
    border-radius: 50%;
}

.comment-author-link {
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.comment-meta {
    font-size: 0.85rem;
    color: var(--gray-muted);
    margin-bottom: 10px;
}

.comment-content p {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.comment-reply-link {
    font-size: 0.85rem;
    color: var(--accent-color) !important;
    text-decoration: none;
    font-weight: 700;
}

/* Comments form */
.comment-respond {
    margin-top: 40px;
}

.comment-reply-title {
    font-family: 'Outfit', sans-serif !important;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 155, 61, 0.15);
}

.comment-form input[type="submit"] {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: var(--accent-color);
}
