/* News listing (news.html) */

.oh-f-news-page {
  padding-top: 102px;
  min-height: 100vh;
  background: #fafcff;
}

.oh-f-news-page__inner {
  width: var(--inner);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 5rem);
}

.oh-f-news-page__h {
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-text);
}

.oh-f-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.oh-f-news-row {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 81, 215, 0.08);
  box-shadow: 0 8px 32px rgba(0, 42, 194, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.oh-f-news-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0, 42, 194, 0.12);
}

@media (max-width: 720px) {
  .oh-f-news-row {
    grid-template-columns: 1fr;
  }
}

.oh-f-news-row__media {
  margin: 0;
  min-height: 200px;
  overflow: hidden;
}

.oh-f-news-row__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

@media (min-width: 721px) {
  .oh-f-news-row__media img {
    border-radius: 0;
  }
}

.oh-f-news-row__body {
  padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.15rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.oh-f-news-row__date {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.5rem;
  font-size: 14px;
  color: var(--c-muted);
}

.oh-f-news-row__date svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.oh-f-news-row__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-text);
}

.oh-f-news-row--lead .oh-f-news-row__title {
  color: var(--c-orange, #f08200);
}

.oh-f-news-row__excerpt {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-muted);
}

.oh-f-news-row__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-orange, #f08200);
  text-decoration: none;
}

.oh-f-news-row__more:hover {
  opacity: 0.9;
  text-decoration: none;
}

.oh-f-news-row__more .oh-f-link__arrow {
  color: currentColor;
}
