/* Our Blogs — modern 3-column card grid */
.ob-hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(255, 151, 0, 0.18), transparent 60%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(11, 23, 40, 0.06);
}
.ob-hero__crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(11, 23, 40, 0.55);
  margin-bottom: 18px;
}
.ob-hero__crumb a {
  color: #092d5b;
  font-weight: 600;
  text-decoration: none;
}
.ob-hero__crumb a:hover {
  color: #ff9700;
}
.ob-hero__title {
  margin: 0 0 12px;
  font-family: Mulish, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0b1728;
  letter-spacing: -0.02em;
}
.ob-hero__lead {
  margin: 0;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(11, 23, 40, 0.7);
}

.ob-listing {
  padding: 64px 0 96px;
  background: #fff;
}

.ob-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ob-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(11, 23, 40, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}
.ob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 23, 40, 0.1);
  border-color: rgba(9, 45, 91, 0.18);
}
.ob-card.is-hidden {
  display: none;
}

.ob-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2f7;
}
.ob-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ob-card:hover .ob-card__media img {
  transform: scale(1.04);
}

.ob-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 24px;
}
.ob-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(11, 23, 40, 0.55);
}
.ob-card__meta time::after {
  content: "·";
  margin-left: 10px;
  color: rgba(11, 23, 40, 0.3);
}

.ob-card__title {
  margin: 0 0 10px;
  font-family: Mulish, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.ob-card__title a {
  color: #0b1728;
  text-decoration: none;
}
.ob-card__title a:hover {
  color: #092d5b;
}

.ob-card__excerpt {
  margin: 0 0 18px;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(11, 23, 40, 0.68);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ob-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 700;
  color: #092d5b;
  text-decoration: none;
}
.ob-card__cta span {
  transition: transform 0.2s ease;
}
.ob-card__cta:hover {
  color: #ff9700;
}
.ob-card__cta:hover span {
  transform: translateX(3px);
}

.ob-pager {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.ob-pager__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  background: #092d5b;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.ob-pager__btn:hover {
  background: #0b3a73;
  transform: translateY(-1px);
}
.ob-pager__btn[hidden] {
  display: none !important;
}

@media (max-width: 991.98px) {
  .ob-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .ob-hero {
    padding: 56px 0 40px;
  }
}

@media (max-width: 575.98px) {
  .ob-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ob-card__body {
    padding: 18px;
  }
  .ob-listing {
    padding: 40px 0 72px;
  }
}
