.blog_post_content {
    background-color: white;
    padding: 20px;
    margin-bottom: 12px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.blog_post_content .content {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.blog_post_content .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #666;
}

.blog_post_content .public_date {
    display: flex;
    align-items: center;
}

.blog_post_content .public_date::before {
    content: "📅";
    margin-right: 6px;
}

.blog_post_content .view_count {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.blog_post_content .view_count::before {
    content: "👁️";
    margin-right: 6px;
}

.horizontal_header {
    background-color: #FFFFFF;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    color: black;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
}

.header-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.horizontal_header a {
    height: 22px;
    background-color: #000;
    color: white;
    text-decoration: none;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    white-space: nowrap;
}

.horizontal_header a:hover {
    background-color: #3498db;
    transform: translateY(-1px);
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .blog_post_content {
        padding: 16px;
    }

    .blog_post_content .bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .horizontal_header {
        flex-direction: column;
        padding: 10px;
    }

    .header-title {
        margin-bottom: 10px;
        max-width: 100%;
    }

    .header-links {
        justify-content: center;
    }
}