/* =========================================
   ARCHIVE & BLOG INDEX STYLE
   dir assets\css\archive.css
   ========================================= */
.hc-archive-main { background-color: #f8fafc; padding-bottom: 80px; }

/* 1. Header */
.hc-archive-header { background-color: #ffffff; padding: 60px 0 40px; border-bottom: 1px solid #edf2f7; }
.hc-archive-title { font-size: 2.5em; font-weight: 800; color: #125732; margin-bottom: 15px; }
.hc-archive-desc { color: #64748b; font-size: 1.1em; max-width: 600px; margin: 0 auto; }

/* 2. Category Pills (หมวดหมู่แนวนอน) */
.hc-category-pills-wrap { background: #ffffff; padding: 15px 0; border-bottom: 1px solid #edf2f7; margin-bottom: 50px; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.hc-category-pills { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; scroll-behavior: smooth; }
.hc-category-pills::-webkit-scrollbar { display: none; }
.hc-category-pills li { flex-shrink: 0; }
.hc-category-pills a { display: block; padding: 8px 20px; border-radius: 50px; background: #f1f5f9; color: #475569; font-weight: 600; text-decoration: none; font-size: 15px; transition: all 0.3s ease; border: 1px solid transparent; }
.hc-category-pills a:hover { background: #e2e8f0; color: #1e293b; }
.hc-category-pills a.active { background: #125732; color: #ffffff; box-shadow: 0 4px 10px rgba(18, 87, 50, 0.2); }

/* 3. Archive Grid & Cards */
.hc-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 50px; }
.hc-news-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); display: flex; flex-direction: column; transition: all 0.3s ease; border: 1px solid #fff; }
.hc-news-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: #e2e8f0; }

.hc-news-img { position: relative; width: 100%; aspect-ratio: 16/10; display: block; overflow: hidden; background: #e2e8f0; }
.hc-news-img img { transition: transform 0.5s ease; }
.hc-news-card:hover .hc-news-img img { transform: scale(1.05); }

.hc-card-date { position: absolute; bottom: 15px; left: 15px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 5px 12px; border-radius: 8px; font-size: 13px; font-weight: bold; color: #125732; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }

.hc-news-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.hc-card-cat { font-size: 13px; color: #64748b; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.hc-card-cat i { color: #10b981; }
.hc-news-title { font-size: 1.25em; font-weight: bold; margin: 0 0 15px 0; line-height: 1.4; }
.hc-news-title a { color: #1e293b; text-decoration: none; transition: color 0.2s; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hc-news-title a:hover { color: #125732; }
.hc-news-excerpt { 
    font-size: 0.95em; 
    color: #64748b; 
    line-height: 1.6; 
    margin-bottom: 20px; 
    flex-grow: 1; 
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.hc-read-more { display: inline-flex; align-items: center; gap: 5px; font-weight: bold; color: #125732; text-decoration: none; font-size: 15px; transition: 0.2s; }
.hc-read-more:hover { color: #0e4528; gap: 8px; }

/* 4. Pagination */
.hc-pagination { display: flex; justify-content: center; align-items: center; margin-top: 40px; }
.hc-pagination .nav-links { display: flex; gap: 8px; background: #fff; padding: 10px; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.hc-pagination .page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: transparent; color: #475569; font-weight: bold; text-decoration: none; transition: 0.2s; border: 1px solid transparent; }
.hc-pagination .page-numbers:hover { background: #f1f5f9; color: #125732; }
.hc-pagination .page-numbers.current { background: #125732; color: #fff; box-shadow: 0 4px 10px rgba(18,87,50,0.2); }
.hc-pagination .dots { background: transparent !important; color: #94a3b8; }

/* Responsive */
@media (max-width: 1024px) {
    .hc-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .hc-archive-grid { grid-template-columns: 1fr; }
    .hc-archive-title { font-size: 2em; }
    .hc-category-pills-wrap { padding: 10px 0; }
}