/*
 Theme Name: Blocksy Child
 Theme URI: https://statusko.ua
 Description: Child theme for Blocksy
 Author: Yana
 Template: blocksy
 Version: 1.0.13
*/

main :where(ul, ol) > li::marker {
    color: #f08319;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0px 16px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-thumb img {
    width: 100%;
    height: 144px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin-bottom: 20px;
}

.blog-card-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title a {
    text-decoration: none;
    color: #1F2123;
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #8A8A8A;
    margin-bottom: 20px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
    color: #9A9A9A;
}

.blog-card-meta .read-more {
    color: #FF8A3D;
    font-weight: 600;
    text-decoration: none;
}

.blog-card-meta .read-more:hover {
    opacity: 0.7;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 60px 0;
}

.blog-pagination a,
.blog-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid #DDDDDD;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #444;
    text-decoration: none;
    background: #fff;
}

.blog-pagination .prev,
.blog-pagination .next {
    width: auto;
    min-width: 40px;
    border-radius: 999px;
    white-space: nowrap;
}

.blog-pagination .dots {
    min-width: auto;
    padding: 0 2px;
    border-color: transparent;
    background: transparent;
}

.blog-pagination .current {
    background: #FF8A3D;
    border-color: #FF8A3D;
    color: #fff;
}

@media(max-width: 560px) {
    .blog-pagination {
        gap: 8px;
        margin: 40px 0;
    }

    .blog-pagination a,
    .blog-pagination span {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
    }
}
@media(max-width: 1200px) {
    .blog-posts-grid {
        gap: 30px;
    }
}

@media(max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card-thumb img {
        height: 200px;
    }
}

.blog-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


