.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;
    }
}

/* Корректировка корневого раздела Блог */
.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0px;

    & .blog-post img {
        width: 400px;
        height: 300px;
        object-fit: cover;
    }
}

/* Перелинковка внутри статей */
.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;
        transition: all .5s ease;

        &:hover {
            transform: translateY(-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: 1200px) {
    /* Корректировка корневого раздела Блог */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: min-content;

        & .blog-post img {
            width: 300px;
            height: 250px;
            object-fit: cover;
        }
    }
}

@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);}

    /* Корректировка корневого раздела Блог */
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: none;
        padding: 50px 20px;
        
        & .blog-post img {
            width: 100%;
        }
    }

    .footer-insta {
        flex-wrap: wrap;
    }
}