.news-page-title-section {
  border-bottom: 1px solid rgba(201, 182, 131, .1);
  background: linear-gradient(180deg, #0a1014 0%, #0d1417 100%);
}

.page-title-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 56px;
}

.breadcrumb + .news-page-title-section .page-title-pad {
  padding-top: 36px;
  padding-bottom: 42px;
}

.page-title-eyebrow {
  margin-bottom: 18px;
  color: #c9b683;
  font: 500 11px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .34em;
}

.page-title-h1 {
  margin: 0 0 16px;
  color: #f5efe0;
  font: 500 38px/1.45 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .05em;
}

.page-title-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(232, 227, 216, .78);
  font: 400 14px/1.95 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: justify;
  text-justify: inter-character;
}

.main-pad {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 48px 56px;
}

.news-column-section,
.news-news-dark-panel {
  overflow: hidden;
  border: 1px solid rgba(201, 182, 131, .18);
  border-radius: 2px;
  background: #11191d;
}

.news-column-section {
  margin-bottom: 24px;
  padding: 42px 44px 46px;
}

.news-section-heading {
  margin-bottom: 26px;
}

.news-section-heading--list {
  margin-bottom: 0;
  padding: 30px 28px 24px;
  border-bottom: 1px solid rgba(201, 182, 131, .14);
}

.news-section-eyebrow {
  margin-bottom: 10px;
  color: #c9b683;
  font: 500 10px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .25em;
}

.news-section-heading h2 {
  margin: 0;
  color: #f5efe0;
  font: 500 24px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .04em;
}

.news-column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-column-card {
  border-top: 1px solid rgba(201, 182, 131, .5);
  background: rgba(201, 182, 131, .045);
}

.news-column-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  padding: 24px 22px 26px;
  transition: background .2s;
}

.news-column-card a:hover {
  background: rgba(201, 182, 131, .055);
}

.news-column-meta,
.news-column-link {
  color: #c9b683;
  font: 500 9px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .18em;
}

.news-column-card h3 {
  margin: 12px 0 14px;
  color: #f5efe0;
  font: 500 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.news-column-card p {
  margin: 0 0 20px;
  color: rgba(232, 227, 216, .74);
  font: 400 12px/1.9 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.news-column-link {
  margin-top: auto;
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list-row {
  border-bottom: 1px solid rgba(201, 182, 131, .14);
}

.news-list-row:last-child {
  border-bottom: 0;
}

.news-item {
  display: block;
  transition: background .2s, color .2s;
}

.news-item:hover {
  background: rgba(201, 182, 131, .055);
}

.news-item:hover .news-arrow {
  transform: translateX(4px);
  color: #f5efe0;
}

.news-item-row {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 28px;
  min-height: 58px;
  padding: 12px 28px;
}

.news-date {
  color: #c9b683;
  font: 500 12px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .08em;
  white-space: nowrap;
}

.news-title {
  min-width: 0;
  color: #f5efe0;
  font: 600 15.5px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .01em;
}

.news-arrow {
  justify-self: end;
  color: #c9b683;
  font: 300 18px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: transform .25s, color .2s;
}

.news-empty-text {
  margin: 0;
  padding: 28px;
  color: rgba(232, 227, 216, .72);
  font: 400 14px/1.8 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 700px) {
  .page-title-pad,
  .main-pad {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-title-pad {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .breadcrumb + .news-page-title-section .page-title-pad {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-title-h1 {
    font-size: 30px;
  }

  .main-pad {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .news-news-dark-panel {
    border-color: rgba(201, 182, 131, .22);
  }

  .news-column-section {
    padding: 30px 20px 32px;
  }

  .news-column-grid {
    grid-template-columns: 1fr;
  }

  .news-section-heading--list {
    padding: 24px 20px 20px;
  }

  .news-section-heading h2 {
    font-size: 21px;
  }

  .news-item-row {
    grid-template-columns: minmax(0, 1fr) 24px;
    grid-template-areas:
      "date arrow"
      "title arrow";
    align-items: center;
    gap: 8px 16px;
    min-height: 72px;
    padding: 14px 20px;
  }

  .news-date {
    grid-area: date;
    font-size: 11px;
    line-height: 1;
  }

  .news-title {
    grid-area: title;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .news-arrow {
    grid-area: arrow;
    align-self: center;
    font-size: 17px;
  }
}
