.home-press {
  margin-top: 14px;
  border: 1px solid #cfdbea;
  border-radius: 10px;
  background: #ffffff;
  padding: 16px 16px 14px;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.home-press-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.home-press-head h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
  color: #003f7d;
}

.home-press-lead {
  margin: 8px 0 12px;
  font-size: 0.9rem;
  color: #355476;
  line-height: 1.45;
}

.home-press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-press-item-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #e2eaf4;
}

.home-press-item-wrap:first-child {
  border-top: none;
  padding-top: 0;
}

.home-press-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.home-press-item:hover .home-press-item-title,
.home-press-item:focus-visible .home-press-item-title {
  text-decoration: underline;
  color: var(--iab-teal-link);
}

.home-press-item:focus-visible {
  outline: 2px solid var(--iab-teal-link);
  outline-offset: 2px;
  border-radius: 2px;
}

.home-press-item-title {
  font-family: "Source_Sans_Pro_Regular_Semi_Bold";
  font-size: 0.98rem;
  line-height: 1.35;
  color: #003f7d;
}

.home-press-item-meta {
  font-size: 0.82rem;
  color: #5a7394;
}

.home-press-item-snippet {
  font-size: 0.86rem;
  line-height: 1.4;
  color: #355476;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

.home-press-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
  padding-top: 2px;
}

.home-press-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #c5d8ef;
  background: #f0f6fc;
  font-size: 0.72rem;
  line-height: 1.3;
  color: #003f7d;
  white-space: nowrap;
}

.home-press-search-link {
  margin-top: 0;
  padding: 4px 0;
  min-height: 2rem;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.9rem;
  color: var(--iab-teal-link);
  cursor: pointer;
  text-align: right;
  white-space: nowrap;
  position: relative;
  z-index: 4;
}

.home-press-search-link:hover,
.home-press-search-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

@media (max-width: 560px) {
  .home-press-item-wrap {
    grid-template-columns: 1fr;
  }

  .home-press-badges {
    justify-content: flex-start;
  }
}
