.blog-section {
    background: #f8f7f4;
}

.h1-block {
    margin: 0 80px;
    padding: 0;
    margin-bottom: 2.25em;
}

.h1-block h2 {
    margin: 0;
    padding: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a5542;
}

.blog-grid-preview {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    max-width: 100%;
    margin: 0 auto 40px !important;
    justify-content: center !important;
    align-items: stretch !important;
}

.blog-card-preview {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.blog-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.blog-card-preview__thumb {
    height: 280px;  /* ✅ Wyższe dla 2 kolumn */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.blog-card-preview__thumb--noimage {
    height: 280px;
    background: linear-gradient(135deg, #43695b 0%, #eaaa00 100%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white !important;
    flex-shrink: 0 !important;
}

.blog-card-preview__content {
    padding: 30px 20px;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.blog-date {
    color: #eaaa00;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding: 5px 12px;
    background: rgba(234,170,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(234,170,0,0.2);
    display: inline-block;
    width: fit-content;
}

.blog-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2a5542 !important;
    margin: 0 0 16px !important;
    line-height: 1.4;
    padding: 0;
    flex-grow: 1 !important;
}

.blog-title a {
    color: inherit !important;
    text-decoration: none !important;
}

.blog-title a:hover {
    color: #eaaa00 !important;
}

.blog-tesection.reviews-section .wrap {
    padding: 2rem !important;
}

/* ===== FAQ - PURE CSS (HTML details/summary) ===== */
.faq-section {
    background: #f8f7f4;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #fff;
}

.faq-item:not(:last-child) {
    margin-bottom: 16px;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
    transition: all 0.3s ease;
    list-style: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f7f4 0%, #fff 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question summary::-webkit-details-marker {
    display: none;
}

.question-text {
    font-size: 1.2rem;
    color: #2d2c2a;
    flex: 1;
}

.faq-icon {
    font-size: 1rem;
    color: #eebb2b;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 30px;
    background: #faf9f7;
    color: #4b4a47;
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item[open] .faq-answer {
    max-height: 600px;
    padding: 25px 30px 30px;
}

/* FOCUS DLA DOSTĘPNOŚCI */

/* MOBILE */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px 25px;
    }
    
    .faq-item[open] .faq-answer {
        padding: 20px;
    }
}

/* NO-JS - DOMYŚLNIE ZAMKNIĘTE */
.faq-item {
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-item[open] {
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.reviews-section .wrap {
    padding: 2rem !important;
}