.article-detail {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 0;
}

.featured-image {
    width: 100%;
    height: 400px;
    margin-bottom: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-header {
    padding: 2rem 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.meta-item {
    color: #6c757d;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #2d3436;
    margin: 1rem 0;
}

.article-content {
    padding: 0 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.article-footer {
    padding: 2rem 3rem;
    margin-top: 3rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.share-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #fff;
}

.social-button.twitter {
    background: #1DA1F2;
}

.social-button.facebook {
    background: #4267B2;
}

@media (max-width: 768px) {
    .featured-image {
        height: 300px;
    }

    .article-header {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 0 1.5rem;
        font-size: 1.1rem;
    }

    .article-footer {
        padding: 1.5rem;
    }

    .social-button {
        width: 40px;
        height: 40px;
    }
}
