.blog-article {
    padding: 60px 0;
}

.blog-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.blog-meta {
    color: #777;
    margin-bottom: 20px;
}

.blog-content {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.blog-rating {
    margin: 20px 0 30px;
}

.rating-stars {
    display: flex;
    gap: 8px;
}

.star {
    font-size: 28px;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
}

.star.active,
.star:hover,
.star.hover {
    color: #f5b301;
}

.rating-text {
    margin-top: 10px;
}

.blog-comments {
    margin-top: 50px;
}

.blog-comments ul {
    list-style: none;
    padding: 0;
}

.blog-comments li {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.custom-comment-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.custom-comment-form button {
    background: #000;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.custom-comment-form button:hover {
    background: #333;
}

.comment-errors {
    background: #ffe5e5;
    padding: 15px;
    margin-bottom: 20px;
    color: #c00;
}

.comment-success {
    background: #e6ffe6;
    padding: 15px;
    margin-bottom: 20px;
    color: #080;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.comment-list li {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.comment-date {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}
.blog-share {
    margin-top: 50px;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fafafa;
}

.blog-share h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Цвета */
.telegram { background: #2AABEE; }
.vk { background: #4C75A3; }
.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }
.blog-related {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.blog-related h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.related-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.2s ease;
}

.related-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.related-title {
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.related-date {
    font-size: 13px;
    color: #888;
}

/* Навигация */

.blog-navigation {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.blog-navigation a {
    text-decoration: none;
    font-weight: 600;
}



