﻿
.article-image {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.article-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.article-image:hover img {
    transform: scale(1.05);
}

.entry-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-right: 5px solid #667eea;
}

    .entry-meta ul {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .entry-meta li {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
    }

        .entry-meta li span:first-child {
            font-weight: 600;
            color: #2c3e50;
        }

.article-body {
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

    .article-body h2, .article-body h3, .article-body h4 {
        color: #2c3e50;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .article-body p {
        margin-bottom: 20px;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 20px 0;
    }

.article-tags {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.article-share {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .article-share span {
        color: white;
        font-weight: 600;
    }

.social {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .social li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        color: #667eea;
        transition: all 0.3s ease;
    }

        .social li a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

.related-article-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
}

    .related-article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-color: #667eea;
    }

.language-selector {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

    .language-selector .btn {
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .language-selector .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

@@media (max-width: 768px) {
    .entry-meta ul {
        flex-direction: column;
        gap: 10px;
    }

    .article-share {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .language-selector {
        justify-content: center;
        flex-wrap: wrap;
    }
}

