/* Стили для страницы статьи */
.article-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.article-single__date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.article-single__header {
    margin-bottom: 20px;
}

.article-single__title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.article-single__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-single__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.article-single__share {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #008C95;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto;
}

.article-single__share:hover {
    color: #006b73;
}

.article-single__image {
    margin-bottom: 25px;
}

.article-single__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-single__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.article-single__author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article-single__author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-single__author-info {
    flex: 1;
}

.article-single__author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.article-single__author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-single__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 14px;
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.article-single__date-author {
    color: #666;
    font-size: 14px;
}

.article-single__content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.article-single__content p {
    margin-bottom: 15px;
}

.article-single__content h2,
.article-single__content h3 {
    margin: 25px 0 15px 0;
    color: #333;
}

.article-single__footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.article-single__actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.article-single__like,
.article-single__share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.article-single__like:hover,
.article-single__share-btn:hover {
    background: #008C95;
    color: white;
    border-color: #008C95;
}

.article-banner {
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}



.breadcrumb a {
    color: #008C95;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .active {
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .article-single {
        padding: 15px;
    }
    
    .article-single__title {
        font-size: 24px;
    }
    
    .article-single__meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .article-single__author {
        flex-direction: column;
        text-align: center;
    }
    
    .article-single__author-meta {
        justify-content: center;
    }
    
    .article-single__actions {
        justify-content: center;
    }
} 