/* Archive Language Preparation Styles */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.posts-container article {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.posts-container article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.posts-container article img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.entry-header {
    padding: 1.5rem;
}

.entry-title {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #007cba;
}

.entry-summary {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.6;
}

.entry-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.read-more {
    display: inline-block;
    background: #007cba;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #005a87;
    color: white;
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results .page-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results .page-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .posts-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .entry-header {
        padding: 1rem;
    }
    
    .entry-summary {
        padding: 0 1rem;
    }
    
    .entry-footer {
        padding: 1rem;
    }
}