.container {
    width: 80%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
}
h1 {
    margin-bottom: 30px;
    font-size: 40px;
    color: var(--primary-button-color);
}
.blog h1 {
    margin-bottom: 0;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}
.content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    object-position: center;
    object-fit: cover;
}
.content .blog-image {
    max-height: 450px;
    margin-top: -30px;
}
.content div {
    margin-bottom: 20px;
}
.highlight {
    background-color: #fbd0a8;
    padding: 10px 28px 10px 10px;
    border-radius: 16px;
    font-weight: bold;
    font-size: 23px;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    margin-top: 50px;
    font-style: italic;
}
.image-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.image-left img {
    width: 40%;
    border-radius: 10px;
}
.image-left div {
    width: 60%;
}

.navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    /*margin-top: 50px;*/
}
.navigation-buttons a {
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    color: var(--primary-color);
    padding: 5px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    h1 {
        font-size: 30px;
    }
    .image-left {
        flex-direction: column;
    }
    .image-left img, .image-left div {
        width: 100%;
    }
}
@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    h1 {
        font-size: 24px;
    }
}

h2 {
    font-weight: 500;
}

.formatted {
    font-size: 14px;
}
.formatted ul {
    list-style: circle;
    margin: 0;
    padding: 0;
    padding-left: 20px; /* Добавляет отступ слева для буллетов */
}

.formatted li {
    list-style-type: circle; /* Включает стандартные буллеты */
    margin-bottom: 5px; /* Добавляет промежуток между элементами списка */
}