.article-link{
    text-decoration: none;
    color: inherit;
}


/* Blog Section Styles */
.blog-section {
    padding: 20px 40px;
    background: white;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 48px;
    font-weight: 800;
    color: #0a2a33;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.blog-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}


/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 60px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    color: #6b4423;
    font-size: 16px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a2a33;
    margin: 0 0 40px 0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Featured Articles */
.featured-articles {
    margin-bottom: 80px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.featured-article {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-article .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.featured-article .article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF7043;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.featured-article .article-content {
    padding: 30px;
}

.featured-article .article-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.featured-article .article-excerpt {
    font-size: 16px;
    color: #6b4423;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.featured-article .article-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #8b4513;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* All Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    color: inherit;
    display: block;
    border: 1px solid #e0e0e0;
}

.article-card .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.article-card .article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #8b4513;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.article-card .article-content {
    padding: 20px;
}

.article-card .article-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.article-card .article-excerpt {
    font-size: 14px;
    color: #6b4423;
    margin: 0 0 15px 0;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.article-card .article-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #8b4513;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results h3 {
    font-size: 24px;
    color: #8b4513;
    margin: 0 0 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.no-results p {
    font-size: 16px;
    color: #6b4423;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 20px;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .featured-article .article-content {
        padding: 25px;
    }

    .featured-article .article-title {
        font-size: 20px;
    }

    .article-card .article-content {
        padding: 20px;
    }

    .article-card .article-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 28px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .featured-article .article-image {
        height: 200px;
    }

    .article-card .article-image {
        height: 180px;
    }

    .featured-article .article-content {
        padding: 20px;
    }

    .article-card .article-content {
        padding: 15px;
    }
}
