.blog-kicker {
  font-size: 13px;
  background: #ffe7ea;
  padding: 4px 10px;
  border-radius: 4px;
  color: #d23a47;
  font-weight: 500;
  display: inline-block;
}
.blog-title {
  font-weight: 800;
  color: #171a3a;
  margin-top: 10px;
  line-height: 1.15;
}
.blog-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1f78;
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  box-shadow: 0 10px 25px rgba(26, 31, 120, 0.18);
  white-space: nowrap;
}
.blog-view-btn:hover {
  background: #12175c;
  transform: translateY(-1px);
  color: #fff;
}
.blog-view-btn .circle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #1a1f78;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* Card */
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f4;
  height: 100%;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    background 0.35s ease;
  box-shadow: 0 12px 28px rgba(10, 10, 40, 0.08);
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  background: #1a1f78;
  box-shadow: 0 18px 42px rgba(10, 10, 40, 0.18);
}

.blog-img {
  height: 210px;
  background: #dcdce0;
  background-size: cover;
  background-position: center;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.35s ease;
}
.blog-card:hover .blog-img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.blog-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #1a1f78;
  color: #fff;
  padding: 7px 10px;
  border-radius: 8px;
  z-index: 2;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 54px;
  text-align: center;
}
.blog-date .day {
  display: block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}
.blog-date .month {
  display: block;
  font-size: 11px;
  opacity: 0.95;
  margin-top: 2px;
  line-height: 1;
}
.blog-card:hover .blog-date {
  background: #fff;
  color: #1a1f78;
  transform: translateY(-2px);
}

.blog-content {
  background: #fff;
  padding: 18px 18px 16px;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.blog-card:hover .blog-content {
  background: transparent;
  transform: translateY(-2px);
}

.blog-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #15183a;
  margin: 0 0 8px;
  transition: color 0.35s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-snippet {
  font-size: 13px;
  color: #5b5f7b;
  margin: 0 0 10px;
  transition: color 0.35s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-link {
  font-size: 13px;
  color: #8a8fa9;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card:hover .blog-card-title,
.blog-card:hover .blog-snippet,
.blog-card:hover .blog-link {
  color: #fff;
}
.blog-card:hover .blog-link {
  transform: translateX(2px);
}

.blog-card a {
  text-decoration: none;
  display: block;
  height: 100%;
  color: inherit;
}

/* Search */
.blog-search {
  display: flex;
}

.blog-search .btn {
  border-radius: 0.3rem;
  padding: 5px 10px;
  font-size: 12px;
  background-color: var(--dark-navy);
}

/* Pagination */
.pagination-wrap .page-link {
  border-radius: 10px;
  border: 0;
  color: #1a1f78;
  background: #f2f3fb;
  padding: 0.55rem 0.8rem;
  margin: 0 0.18rem;
}
.pagination-wrap .page-item.active .page-link {
  background: #1a1f78;
  color: #fff;
}
.pagination-wrap .page-item.disabled .page-link {
  opacity: 0.55;
}
