/* ================= ARCHIVE & PAGES ================= */
.h5m-archive-header, .h5m-page-header {
    background: var(--h5m-primary);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 50px;
    border-radius: 0 0 30px 30px;
    text-align: center;
}
.h5m-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.archive-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; transition: 0.3s; }
.archive-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--h5m-primary); }
.card-thumb { height: 180px; background: #eee; position: relative; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-title { margin: 0 0 10px; font-size: 1.2rem; }
.btn-view-all { font-size: 0.85rem; font-weight: 600; color: var(--h5m-primary); border: 1px solid rgba(37,99,235,0.2); padding: 6px 18px; border-radius: 50px; }
