.tripbright-news-list,
#informationList,
#informationListPage {
  display: grid;
  gap: 14px;
}

.tripbright-news-item {
  display: grid;
  grid-template-columns: minmax(130px, .26fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border: 1px solid rgba(122, 145, 168, .2);
  border-left: 4px solid var(--tb-blue, #2457a6);
  border-radius: 12px;
  background: #fff;
  color: var(--tb-ink, #17212b);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tripbright-news-item:hover,
.tripbright-news-item:focus-visible {
  border-color: rgba(35, 166, 181, .55);
  box-shadow: 0 12px 26px rgba(25, 48, 76, .08);
  outline: none;
  transform: translateY(-2px);
}

.tripbright-news-item__meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--tb-muted, #63748a);
  font-size: .88rem;
}

.tripbright-news-item__meta p,
.tripbright-news-item__meta time {
  margin: 0;
}

.tripbright-news-item__meta span {
  width: fit-content;
  padding: 3px 9px;
  border: 1px solid rgba(35, 166, 181, .3);
  border-radius: 999px;
  color: var(--tb-blue, #2457a6);
  font-size: .76rem;
  font-weight: 700;
}

.tripbright-news-item__body h3 {
  margin: 0;
  color: var(--tb-ink, #17212b);
  font-size: 1.05rem;
  line-height: 1.6;
}

.tripbright-news-item__body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: var(--tb-muted, #63748a);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tripbright-news-item__more {
  color: var(--tb-blue, #2457a6);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.tripbright-news-empty,
.tripbright-news-viewer__loading {
  margin: 0;
  padding: 30px;
  color: var(--tb-muted, #63748a);
  text-align: center;
}

.tripbright-news-more {
  display: block;
  margin: 24px auto 0;
  padding: 10px 24px;
  border: 1px solid rgba(36, 87, 166, .3);
  border-radius: 999px;
  background: #fff;
  color: var(--tb-blue, #2457a6);
  cursor: pointer;
  font-weight: 700;
}

.tripbright-news-more.is-loading {
  opacity: .55;
  cursor: wait;
}

.tripbright-news-viewer-open {
  overflow: hidden;
}

.tripbright-news-viewer[hidden] {
  display: none;
}

.tripbright-news-viewer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding: 28px;
}

.tripbright-news-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 44, .56);
  opacity: 0;
  transition: opacity .22s ease;
}

.tripbright-news-viewer__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(900px, 100%);
  max-height: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease;
}

.tripbright-news-viewer__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  margin: 12px 12px 0 0;
  border: 0;
  background: transparent;
  color: var(--tb-blue, #2457a6);
  cursor: pointer;
  font-size: 1.6rem;
}

.tripbright-news-viewer__body {
  overflow: auto;
  padding: 8px clamp(20px, 5vw, 54px) 44px;
}

.tripbright-news-viewer__body ._mtl_articleMessage {
  max-width: 780px;
  margin: 0 auto;
}

.tripbright-news-viewer.is-open .tripbright-news-viewer__backdrop {
  opacity: 1;
}

.tripbright-news-viewer.is-open .tripbright-news-viewer__panel {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .tripbright-news-item {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 18px 20px;
  }

  .tripbright-news-item__meta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }

  .tripbright-news-item__more {
    grid-column: 2;
    grid-row: 2;
  }

  .tripbright-news-viewer {
    padding: 12px;
  }
}
