/* ============================================================
   27. BLOG LISTA WPISÓW
   ============================================================ */
.blog .content-container,
.archive .content-container {
    max-width: 1500px !important;
    margin: 0 auto;
    padding: 60px 60px;
}
.blog .loop-entry,
.archive .loop-entry {
    background: #fff !important;
    border: none !important;
    box-shadow: none !important;
    transition:
        box-shadow 0.3s,
        transform 0.3s;
}
.blog .loop-entry:hover,
.archive .loop-entry:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-3px);
}
.blog .post-thumbnail,
.archive .post-thumbnail {
    overflow: hidden;
    display: block;
}
.blog .post-thumbnail img,
.archive .post-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.blog .loop-entry:hover .post-thumbnail img,
.archive .loop-entry:hover .post-thumbnail img {
    transform: scale(1.04);
}
.blog .entry-content-wrap,
.archive .entry-content-wrap {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
}
.blog .entry-taxonomies,
.archive .entry-taxonomies {
    margin-bottom: 10px;
}
.blog .category-links a,
.archive .category-links a {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: #e30613 !important;
    text-decoration: none !important;
}
.blog .entry-title,
.archive .entry-title {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: clamp(16px, 1.8vw, 20px) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
}
.blog .entry-title a,
.archive .entry-title a {
    color: #1c1c1b !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.blog .entry-title a:hover,
.archive .entry-title a:hover {
    color: #e30613 !important;
}
.blog .entry-meta,
.archive .entry-meta {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 12px !important;
    color: #999 !important;
    margin-bottom: 12px !important;
}
.blog .entry-meta a,
.archive .entry-meta a {
    color: #999 !important;
    text-decoration: none !important;
}
.blog .entry-meta .meta-label,
.archive .entry-meta .meta-label {
    font-size: 12px !important;
    color: #999 !important;
}
.blog .entry-summary,
.archive .entry-summary {
    flex: 1;
}
.blog .entry-summary p,
.archive .entry-summary p {
    font-family: "Noto Sans", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #666 !important;
    margin-bottom: 16px !important;
}
.blog .post-more-link,
.archive .post-more-link {
    font-family: "Bahnschrift", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #1c1c1b !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition:
        color 0.2s,
        gap 0.2s !important;
}
.blog .post-more-link:hover,
.archive .post-more-link:hover {
    color: #e30613 !important;
    gap: 12px !important;
}
.blog .post-more-link svg,
.archive .post-more-link svg {
    width: 16px !important;
    height: 16px !important;
}
.blog .pagination .nav-links,
.archive .pagination .nav-links {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 48px 0;
}
.blog .pagination .page-numbers,
.archive .pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bahnschrift", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1c1c1b !important;
    text-decoration: none !important;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}
.blog .pagination .page-numbers:hover,
.archive .pagination .page-numbers:hover {
    background: #1c1c1b;
    color: #fff !important;
    border-color: #1c1c1b;
}
.blog .pagination .page-numbers.current,
.archive .pagination .page-numbers.current {
    background: #e30613;
    color: #fff !important;
    border-color: #e30613;
}
.loop-entry .entry-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

