/* English Pages CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: block;
    font-size: 0px;
}

.logo img {
    height: 40px;
    width: auto;
}

.search-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #f5f5f5;
    border-color: #bbb;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Article List */
.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card a{
    text-decoration: none;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    .article-title {
        color: #007bff;
    }
}

.article-list .article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}
.article-content > h2 {
    line-height: 1.7rem;
    margin: 0 0 20px 0;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
    text-decoration: none;
}

.article-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #888;
}

.article-date {
    font-weight: 500;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Article Detail */
.article-detail {
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.article-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.article-detail-meta {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.article-detail-date {
    color: #666;
    font-size: 1rem;
}

.article-detail-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
}

.article-detail-content p {
    margin-bottom: 1.5rem;
}
.article-detail-content .article-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.article-detail-content h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.article-detail-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: #333;
}

.article-detail-content ul,
.article-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-detail-content li {
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #00648C;
    color: #fff;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .main-content {
        padding: 0 1rem;
    }

    .article-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .article-detail {
        padding: 2rem 1.5rem;
    }

    .article-detail-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .article-detail-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .article-detail {
        padding: 1.5rem 1rem;
    }
}

#relatedsearches1 {
    margin-bottom: 20px;
}
