.blog-header { margin-top: 60px; background: var(--gray-50); padding: 100px 20px 140px; text-align: center; border-bottom: 1px solid var(--gray-200); }
.blog-header h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 20px; color: var(--black); letter-spacing: -1px; }
.blog-header p { font-size: 18px; color: var(--gray-600); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.blog-controls { max-width: 1200px; margin: -60px auto 60px; padding: 20px; background: #ffffff; border: 1px solid var(--gray-200); border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.06); display: flex; gap: 20px; flex-wrap: wrap; align-items: center; justify-content: space-between; position: relative; z-index: 10; }
.categories { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
.cat-btn { background: transparent; border: 1px solid var(--gray-200); padding: 10px 24px; border-radius: 100px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--gray-600); transition: all 0.2s ease; white-space: nowrap; }
.cat-btn:hover { background: var(--gray-50); color: var(--black); border-color: var(--gray-300); }
.cat-btn.active { background: var(--primary-blue); color: white; border-color: var(--primary-blue); box-shadow: 0 4px 12px rgba(0, 114, 206, 0.3); }
.search-box input { padding: 12px 20px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 100px; width: 280px; font-size: 14px; transition: all 0.2s ease; }
.search-box input:focus { outline: none; background: white; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.1); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto 80px; padding: 0 20px; }
.post-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: 0 4px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.post-image { width: 100%; height: 240px; object-fit: cover; }
.post-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.post-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--primary-blue); margin-bottom: 12px; }
.post-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; line-height: 1.3; color: var(--gray-900); }
.post-excerpt { color: var(--gray-600); font-size: 15px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.post-footer { padding-top: 20px; border-top: 1px solid var(--gray-100); font-size: 13px; color: var(--gray-500); display: flex; justify-content: space-between; }
.pagination-container { margin: 60px 0 100px; display: flex; justify-content: center; width: 100%; }
.custom-pagination { background: #ffffff; border-radius: 50px; padding: 8px 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); display: flex; align-items: center; gap: 8px; }
.page-item { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: transparent; border: none; font-family: inherit; font-weight: 700; font-size: 14px; color: var(--gray-500); cursor: pointer; transition: all 0.2s ease; }
.page-item:hover:not(.active):not(.disabled) { background: var(--gray-50); color: var(--black); transform: translateY(-2px); }
.page-item.active { background: var(--primary-blue); color: white; box-shadow: 0 4px 12px rgba(0, 114, 206, 0.4); cursor: default; }
.page-item.disabled { opacity: 0.3; cursor: not-allowed; }
.page-item svg { width: 18px; height: 18px; stroke-width: 2.5px; }
