.error-card, .no-news-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1);
}

.news-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.news-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 26, 0.8), rgba(26, 26, 46, 0.9));
    backdrop-filter: blur(2px);
}

.news-hero-content {
    position: relative;
    z-index: 2;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.news-author, .news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    background: rgba(136, 120, 204, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.month-section {
    margin-bottom: 4rem;
}

.month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.month-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 120, 204, 0.3), transparent);
}

.month-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #8878cc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-count {
    background: rgba(136, 120, 204, 0.2);
    color: #8878cc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(136, 120, 204, 0.3), transparent);
}

.news-card:hover {
    background: rgba(136, 120, 204, 0.12);
    border-color: rgba(136, 120, 204, 0.25);
    box-shadow: 0 16px 48px rgba(136, 120, 204, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.2), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8878cc;
}

.news-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(136, 120, 204, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content .news-meta {
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.news-content .news-author {
    background: rgba(136, 120, 204, 0.2);
    color: #8878cc;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.news-title {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-title a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #a855f7;
}

.news-excerpt {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more-btn {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.3), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(136, 120, 204, 0.4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, rgba(136, 120, 204, 0.4), rgba(168, 85, 247, 0.4));
    border-color: rgba(136, 120, 204, 0.6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(136, 120, 204, 0.2);
}

.content-card {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.share-section {
    background: rgba(136, 120, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    background: rgba(136, 120, 204, 0.2);
    border: 1px solid rgba(136, 120, 204, 0.3);
    color: #8878cc;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background: rgba(136, 120, 204, 0.3);
    border-color: rgba(136, 120, 204, 0.5);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .month-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .month-title {
        font-size: 1.5rem;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .content-card {
        padding: 2rem;
        font-size: 1rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .news-content {
        padding: 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .share-section {
        padding: 1.5rem;
    }
    
    .news-title a {
        font-size: 1.1rem;
    }
    
    .no-news-card, .error-card {
        padding: 2rem 1.5rem;
    }
}
