.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: 70vh;
    box-sizing: border-box;
}


@media (min-width: 768px) {
    .container {

        padding: 80px 40px;
    }
}

.breadcrumbs {
    font-size: 13px;
    padding: 20px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: black;
}

.breadcrumbs span {
    color: #999;
}

.breadcrumbs-razdelitel {
    margin: 0 5px;
}

@media (min-width: 768px) {
    .breadcrumbs {
        font-size: 15px;
        max-width: 1400px;
        margin: auto;
        padding: 20px 40px 0 40px;
    }
}
.post-list {
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
    margin-top:40px;
    box-sizing:border-box;
}

.post-item {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transition:transform .25s ease, box-shadow .25s ease;
    display:flex;
    flex-direction:column;
}

.post-item:hover {
    box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.post-thumb img {
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.post-content {
    padding:20px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.entry-title {
    font-size:18px;
    line-height:1.3;
    margin-bottom:10px;
}

.entry-title a {
    text-decoration:none;
    color:#111;
}

.entry-title a:hover {
    color:#000;
}

.entry-excerpt {
    font-size: 16px;
    color:#666;
    line-height:1.5;
    flex-grow:1;
    margin-bottom: 30px;
}

.pagination {
    text-align:center;
    margin-top:60px;
}

.pagination a,
.pagination span {
    display:inline-block;
    padding:10px 16px;
    margin:0 4px;
    background:#f2f2f2;
    color:#333;
    border-radius:8px;
    text-decoration:none;
    transition:background .2s;
}

.pagination a:hover {
    background:#ddd;
}

.pagination .current {
    background:#222;
    color:#fff;
}

.blog-card__link {
    font-weight: 400;
    color: #000;
    text-decoration: none;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.appliance-card__arrow {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg); /* поворачиваем, чтобы получилось ">" */
    margin-left: 0.25rem;
}

.blog-card__link:hover {
    text-decoration: underline;
}

@media (min-width:551px) {
    .post-list {
        grid-template-columns:repeat(2,1fr);
    }
}

@media (min-width:769px) {
    .post-list {
        grid-template-columns:repeat(3,1fr);
    }
}

@media (min-width:1101px) {
    .post-list {
        grid-template-columns:repeat(4,1fr);
    }
}

