.blog-post {
    position: relative;
}

.blog-post .img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 22rem;
    display: block;
}
.blog-post img {
    border-radius: 12px;
    height: 22rem;
    transition: 0.4s all;
}

.blog-post img:hover {
    transform: scale(1.05);
}

.blog-post h6 {
    background: var(--primaryColor);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-weight: 400;
    text-transform: none;
    padding: 5px 15px 2px;
    pointer-events: none;
}

.blog-post h4 {
    font-family: 'Axiforma';
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 23.8px */
    letter-spacing: -0.085px;
    text-transform: uppercase;
    margin-top: 1rem;
}
.blog-post h4:hover {
    color: var(--primaryColor);
}

.pagination {
    margin-top: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 1rem 0;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 16px 7px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.2s all;
}

.pagination .current {
    background-color: var(--primaryColor);
    color: #fff;
}

.pagination .page-numbers:hover {
    background-color: #7c3e4d7d;
}

/* SINGLE */

.blog-header {
    position: relative;
    padding: 14rem 0 4rem;
    background-size: 40rem;
    background-repeat: repeat;
    background-image: url('/wp-content/uploads/2025/09/d794e43f5c0717c95204739a1adc9b3e8d40e5e7-scaled.png');
    background-color: var(--primaryColor);
}
.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primaryColor);
    opacity: 0.95;
}

.blog-header-content {
    display: flex;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.blog-header-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 40%;
    width: 40%;
    justify-content: space-between;
}
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.blog-header-info h1 {
    font-size: 3rem;
    line-height: 120%;
    color: #fff;
}
.blog-header-meta {
    display: flex;
    gap: 5px;
    color: #fff;
    font-size: 0.8rem;
    flex-wrap: wrap;
}
.blog-header-meta p {
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
.categories span {
    background-color: #712020;
    color: white;
    padding: 5px 11px 2px;
    border-radius: 4px;
    font-size: 0.6rem;
    text-transform: uppercase;
    cursor: default;
    font-weight: bold;
}

.blog-header-image {
    flex: 1;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s;
}

@media (min-width:981px) {
    .single-post .content {
        max-width: 800px;
        margin: 0 auto;
    }
}

.single-post .content h2 {
    padding-bottom: 1.5rem;
}

.wp-block-image img {
    border-radius: 6px;
}

.blog-footer {
    border-top: 1px solid #000;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.blog-footer a {
    color: #293035;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}