/* ==========================================================================
   BPoint Home — Latest news
   ========================================================================== */

.bp-home .sec-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
}
.bp-home .news-all { flex-shrink: 0; }
.bp-home .mt14 { margin-top: 14px; }
.bp-home .news-subline { margin-top: 12px; font-size: 15.5px; line-height: 1.6; color: var(--slate); max-width: 560px; }

.bp-home .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.bp-home .news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: .2s;
  display: flex;
  flex-direction: column;
}
.bp-home .news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bp-home .news-img { aspect-ratio: 16 / 9; position: relative; }
.bp-home .news-img .ph { border-radius: 0; height: 100%; }
.bp-home .news-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bp-home .news-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  background: #dbeafe;
  color: #1d4ed8;
}
.bp-home .news-body { padding: 22px 22px 16px; flex: 1; display: flex; flex-direction: column; }
.bp-home .news-date {
  font-size: 12px;
  color: var(--slate-3);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.bp-home .news-body h3 { font-size: 16.5px; line-height: 1.3; color: var(--navy); }
.bp-home .news-body p { font-size: 14px; color: var(--slate); margin-top: 9px; flex: 1; line-height: 1.6; }
.bp-home .news-foot {
  padding: 0 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.bp-home .read-more {
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.bp-home .read-more [data-icon] { width: 14px; height: 14px; transition: .18s; }
.bp-home .news-card:hover .read-more [data-icon] { transform: translateX(4px); }
.bp-home .read-time { font-size: 12px; color: var(--slate-3); display: flex; align-items: center; gap: 5px; }
.bp-home .read-time [data-icon] { width: 13px; height: 13px; }

@media (max-width: 980px) { .bp-home .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .bp-home .news-grid { grid-template-columns: 1fr; } }
