.d-block {
    display: block !important;
}

.appeal-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    color: #ffffff;
    background-color: #935B42;

    & img {
        width: 20px;
        height: 20px;
    }
}

.breadcrumbs ul {
    display: flex;
    padding-bottom: 20px;
    gap: 30px;

    & li:not(:first-child) {
        list-style-type: disc;
    }
}

/* Перелинковка внутри статей */
.post-container {
    max-width: 1600px;
    padding: 0 20px;
    margin: auto;
}

.posts-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 0;
    gap: 20px;

    & .post {
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border-radius: 10px;

        & img {
            max-width: 100%;
            max-height: 200px;
            object-fit: cover;
            object-position: center;
            border-radius: 10px 10px 0 0;
        }

        & .info {
            display: inherit;
            flex-direction: inherit;
            justify-content: space-between;
            height: 100%;
            padding: 0 15px 15px;

            & .name {
                font-size: 20px;
                padding: 10px 0;
            }
    
            & .preview {
                font-size: 16px;
            }
    
            & .link {
                display: flex;
                padding-top: 10px;
            }
        }

    }
}

@media screen and (max-width: 900px) {
    .posts-list {
        grid-template-columns: repeat(3, 1fr);

        & .post {
            & img {
                max-height: 150px;
            }
        }
    }
}

@media screen and (max-width: 600px) {
    .breadcrumbs ul {
        font-size: 14px;
    }

    .posts-list {grid-template-columns: repeat(1, 1fr);}
}