/* ================================================================
   News Display Widget — shared stylesheet
   T4 Media ID: 1058296
   Covers: horizontal card, vertical/stacked card, list item,
           featured card, headlines band, aggregator widget,
           and responsive carousel.
   text-fulltext.template.html keeps its own inline <style>.
   ================================================================ */

/* ----------------------------------------------------------------
   Horizontal card  (text-card.template.html)
   ---------------------------------------------------------------- */
.news-card {
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.news-card__link {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.news-card--no-media .news-card__link {
  grid-template-columns: 1fr;
}

.news-card__media {
  background: #eee;
  min-height: 100%;
  position: relative;
}

.news-card__image-bg {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-card__content {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-card__date {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

.news-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}

.news-card__title-link {
  font: inherit;
  text-decoration: none;
  color: inherit;
}

.news-card__summary {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #444;
}

.news-card__summary a {
  color: #212121;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #ffb300;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.news-card__summary a:hover,
.news-card__summary a:focus-visible {
  color: #000;
  text-decoration-thickness: 3px;
}

.news-card--empty {
  cursor: default;
}

.news-card__read-more {
  margin: 0;
}

.news-card__read-more-link {
  text-decoration: underline;
}

.news-card__title-link:hover,
.news-card__read-more-link:hover {
  text-decoration: none;
  color: #000;
}

.news-card__link:hover {
  background: #f9f9f9;
  color: inherit;
}

.news-card__link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: -3px;
}

/* ----------------------------------------------------------------
   Vertical / stacked card  (text-vertical.template.html)
   ---------------------------------------------------------------- */
.news-card--stacked .news-card__image-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card--stacked .news-card__image-link:hover .news-card__media,
.news-card--stacked .news-card__image-link:focus-visible .news-card__media {
  opacity: 0.96;
}

.news-card--stacked .news-card__image-link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: -3px;
}

.news-card--stacked .news-card__media {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  background: #eee;
  overflow: hidden;
}

.news-card--stacked .news-card__image {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.news-card--stacked .news-card__content {
  padding: 8px 12px 12px;
}

.news-card--stacked .news-card__date {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
}

.news-card--stacked .news-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.news-card__title-link:hover {
  text-decoration: underline;
}

.news-card__title-link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

/* ----------------------------------------------------------------
   List item  (text-list.template.html)
   ---------------------------------------------------------------- */
.news-listing__item {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid #d9d9d9;
}

.news-listing__item:last-child {
  border-bottom: none;
}

.news-listing__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

.news-listing__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
}

.news-listing__summary {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #444;
}

.news-listing__link:hover .news-listing__title,
.news-listing__link:focus-visible .news-listing__title {
  text-decoration: underline;
}

.news-listing__link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

/* ----------------------------------------------------------------
   Featured card  (text-featured.template.html)
   ---------------------------------------------------------------- */
.news-feature-wrap article.news-feature {
  max-width: 1100px;
  margin: 40px auto 32px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "media body";
  align-items: stretch;
  background: #000;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.news-feature-wrap .news-feature__media {
  grid-area: media;
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: 280px;
  margin: 0;
  padding: 0;
  background-color: #1a1a1a;
}

.news-feature-wrap .news-feature__image-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.news-feature-wrap .news-feature__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #484848;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.news-feature-wrap .news-feature__body {
  grid-area: body;
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}

.news-feature-wrap .news-feature__label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.news-feature-wrap .news-feature__date {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-feature-wrap .news-feature__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
}

.news-feature-wrap .news-feature__title-link {
  color: #fff;
  text-decoration: none;
}

.news-feature-wrap .news-feature__title-link:hover,
.news-feature-wrap .news-feature__title-link:focus-visible {
  text-decoration: underline;
}

.news-feature-wrap .news-feature__sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin: 0 0 14px;
}

.news-feature-wrap .news-feature__summary {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.5;
}

.news-feature-wrap .news-feature__read-more {
  margin: 0;
}

.news-feature-wrap .news-feature__read-more-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.news-feature-wrap .news-feature__read-more-link:hover,
.news-feature-wrap .news-feature__read-more-link:focus-visible {
  border-bottom-style: solid;
}

/* ----------------------------------------------------------------
   Headlines band  (text-headline.template.html)
   ---------------------------------------------------------------- */
.nhb-wrap {
  width: 100%;
  background: #f3f3f3;
  padding: 20px 0 22px;
  box-sizing: border-box;
}

.nhb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.nhb-header {
  margin: 0 0 16px;
  text-align: center;
}

.nhb-heading {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.nhb-divider {
  height: 1px;
  background: #d7d7d7;
  margin: 10px 0 0;
  width: 100%;
}

.nhb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nhb-card {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.nhb-card__link {
  background: transparent;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 10px;
  align-items: start;
  padding: 0 10px 10px;
  color: inherit;
  text-decoration: none;
}

.nhb-card__media {
  width: 116px;
  min-width: 116px;
  max-width: 116px;
  aspect-ratio: 4 / 3;
  border: none;
  border-radius: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
  position: relative;
}

.nhb-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  margin: 0;
}

.nhb-card__date {
  margin: 0 0 2px;
  padding: 0;
  display: block;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nhb-card__title {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: #111;
  font-family: inherit;
}

.nhb-card__link:hover .nhb-card__title,
.nhb-card__link:focus-visible .nhb-card__title {
  text-decoration: underline;
}

.nhb-card__link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

.nhb-footer {
  margin-top: 14px;
  text-align: center;
}

.nhb-view-more {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #8f8f8f;
  border-radius: 40px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.nhb-view-more:hover,
.nhb-view-more:focus-visible {
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   Aggregator widget wrapper + layout  (display-widget-rhino.js)
   ---------------------------------------------------------------- */
.news-display-widget {
  color: #111;
}

.news-display-widget__topbar {
  max-width: 1100px;
  margin: 0 auto 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}

.news-display-widget__header {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 600;
  color: #111;
}

.news-display-widget__topbar-link {
  flex: 0 0 auto;
  color: #111;
  text-decoration: none;
  border-bottom: 1px dotted #111;
  font-size: 14px;
  line-height: 1.2;
}

.news-display-widget__topbar-link:hover,
.news-display-widget__topbar-link:focus-visible {
  text-decoration: underline;
  border-bottom-color: transparent;
  color:#000000;
}

.news-list {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 24px;
}

.news-grid-cards {
  display: grid;
  grid-template-columns: repeat(var(--cols-desktop, 1), minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 24px;
}

.news-list__empty {
  padding: 16px;
  border: 1px solid #ddd;
  background: #fafafa;
  color: #444;
}

.news-list__empty p {
  margin: 0 0 6px;
}

.news-list__empty p:last-child {
  margin-bottom: 0;
}

.news-list__empty a {
  color: #212121;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #ffb300;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.news-list__empty a:hover,
.news-list__empty a:focus-visible {
  color: #000;
  text-decoration-thickness: 3px;
}

.news-list__more {
  max-width: 1100px;
  margin: 0 auto 24px;
}

.news-list__more-link {
  color: #111;
  text-decoration: none;
  border-bottom: 1px dotted #111;
}

/* Filter toolbar */
.news-filter {
  max-width: 1100px;
  margin: 0 auto 18px;
}

.news-filter__header {
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
}

.news-filter__heading {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 600;
}

.news-filter__controls {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.news-filter__select-wrap {
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
}

.news-filter__select {
  padding: 0 10px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  color: #6f6f6f;
  width: 100%;
}

.news-filter__select.is-selected {
  color: #111;
}

.news-filter__search-wrap {
  display: flex;
  flex-direction: column;
  flex: 1 1 180px;
  position: relative;
}

.news-filter__search {
  padding: 0 36px 0 10px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  font-size: 14px;
  line-height: 40px;
  height: 40px;
  color: #111;
  width: 100%;
}

.news-filter__search::placeholder {
  color: #6f6f6f;
  opacity: 1;
}

.news-filter__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: none;
}

.news-filter__search::-ms-clear {
  display: none;
}

.news-filter__clear {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #6f6f6f;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.news-filter__clear:hover,
.news-filter__clear:focus-visible {
  background: #ebebeb;
  color: #111;
  outline: none;
}

.news-filter__clear[hidden] {
  display: none;
}

.news-filter__empty {
  margin: 12px 0 0;
  max-width: 1100px;
  color: #444;
  font-size: 15px;
}

.news-filter__empty p {
  margin: 0 0 6px;
}

.news-filter__empty p:last-child {
  margin-bottom: 0;
}

.news-filter__empty a {
  color: #212121;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #ffb300;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.news-filter__empty a:hover,
.news-filter__empty a:focus-visible {
  color: #000;
  text-decoration-thickness: 3px;
}

/* Lazy-load animation */
.news-display-widget [data-news-item="true"] {
  transition: opacity .28s ease, transform .28s ease;
}

.news-display-widget [data-news-item="true"].news-item--hidden {
  display: none !important;
}

.news-display-widget [data-news-item="true"].news-item--concealed:not(.news-item--revealed) {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.news-display-widget [data-news-item="true"].news-item--revealed {
  opacity: 1;
  transform: none;
}

.news-lazy-sentinel {
  width: 100%;
  max-width: 1100px;
  height: 1px;
  margin: 0 auto 8px;
}

/* List view (widget-scoped overrides) */
.news-listing {
  max-width: 1100px;
  margin: 0 auto 24px;
  color: #111;
}

.news-listing__header {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 4px;
}

.news-listing__heading {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
}

.news-listing__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-display-widget .news-listing__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}

.news-display-widget .news-listing__title {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
}

.news-display-widget .news-listing__summary {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #444;
}

.news-display-widget .news-listing__link:hover .news-listing__title,
.news-display-widget .news-listing__link:focus-visible .news-listing__title {
  text-decoration: underline;
}

.news-display-widget .news-listing__link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

/* External publication link icon */
.news-display-widget .news-external-icon {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 5px;
  vertical-align: -1px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* Featured card (widget-scoped) */
.news-display-widget .news-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 24px;
}

.news-display-widget article.news-feature {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: 'media body';
  align-items: stretch;
  background: #222;
  color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.news-display-widget .news-feature__media {
  grid-area: media;
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: 280px;
  margin: 0;
  padding: 0;
  background-color: #484848;
}

.news-display-widget .news-feature__image-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.news-display-widget .news-feature__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background-color: #484848;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover !important;
  transition: transform 0.4s ease;
}

.news-display-widget .news-feature__body {
  grid-area: body;
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #222;
  box-sizing: border-box;
}

.news-display-widget .news-feature__date {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.news-display-widget .news-feature__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
}

.news-display-widget .news-feature__title-link {
  color: #fff;
  text-decoration: none;
}

.news-display-widget .news-feature__summary {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.5;
}

.news-display-widget article.news-feature:hover,
.news-display-widget article.news-feature:focus-within,
.news-display-widget article.news-feature:hover .news-feature__body,
.news-display-widget article.news-feature:focus-within .news-feature__body {
  background: #000;
}

.news-display-widget article.news-feature:hover,
.news-display-widget article.news-feature:focus-within {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.news-display-widget article.news-feature:hover .news-feature__image,
.news-display-widget article.news-feature:focus-within .news-feature__image {
  transform: scale(1.075);
}

.news-display-widget article.news-feature:hover .news-feature__title-link,
.news-display-widget article.news-feature:focus-within .news-feature__title-link {
  color: #ffba00;
  text-decoration: none;
}

/* ----------------------------------------------------------------
   Card overrides within aggregator widget
   ---------------------------------------------------------------- */
.news-display-widget .news-card {
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.news-display-widget .news-card__media {
  position: relative;
  overflow: hidden;
}

.news-display-widget .news-card__image-bg {
  min-height: 0;
  transition: transform 0.35s;
}

.news-display-widget .news-card__image {
  transition: transform 0.35s;
}

/* Stacked (vertical) card: fixed aspect ratio on the image */
.news-display-widget .news-card--stacked .news-card__media {
  aspect-ratio: 4 / 3;
}

.news-display-widget .news-card--stacked .news-card__image-bg {
  aspect-ratio: 4 / 3;
}

/* Horizontal card: media column stretches to match content height, image fills it */
.news-display-widget .news-card:not(.news-card--stacked) .news-card__media {
  align-self: stretch;
}

.news-display-widget .news-card:not(.news-card--stacked) .news-card__image-bg {
  height: 100%;
}

.news-display-widget .news-card:hover,
.news-display-widget .news-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.news-display-widget .news-card--stacked:hover,
.news-display-widget .news-card--stacked:focus-within {
  outline: 1px solid #d7d7d7;
  outline-offset: 0;
}

.news-display-widget .news-card:hover .news-card__image-bg,
.news-display-widget .news-card:focus-within .news-card__image-bg,
.news-display-widget .news-card:hover .news-card__image,
.news-display-widget .news-card:focus-within .news-card__image {
  transform: scale(1.035);
}

.news-display-widget .news-card:hover .news-card__title-link,
.news-display-widget .news-card:focus-within .news-card__title-link {
  color: var(--news-link-color, #333);
  text-decoration: none;
}

/* Headlines band (widget-scoped) */
.news-display-widget--headlines-band .nhb-wrap {
  width: 100%;
  background: #f3f3f3;
  padding: 20px 0 22px;
  box-sizing: border-box;
  margin: 0 0 24px;
}

.news-display-widget--headlines-band .nhb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

.news-display-widget--headlines-band .nhb-header {
  margin: 0 0 16px;
  padding: 0;
  text-align: center;
}

.news-display-widget--headlines-band h2.nhb-heading {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

.news-display-widget--headlines-band .nhb-divider {
  height: 1px;
  background: #d7d7d7;
  margin: 10px 0 0;
  width: 100%;
}

.news-display-widget--headlines-band .nhb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-display-widget--headlines-band article.nhb-card {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.news-display-widget--headlines-band .nhb-card__link {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 10px;
  align-items: start;
  padding: 0 10px 10px;
  color: inherit;
  text-decoration: none;
}

.news-display-widget--headlines-band .nhb-card__media {
  width: 116px;
  min-width: 116px;
  max-width: 116px;
  aspect-ratio: 4 / 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
}

.news-display-widget--headlines-band .nhb-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  margin: 0;
}

.news-display-widget--headlines-band p.nhb-card__date {
  margin: 0 0 2px;
  padding: 0;
  display: block;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.news-display-widget--headlines-band h3.nhb-card__title {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: #111;
  font-family: inherit;
}

.news-display-widget--headlines-band .nhb-card__link:hover h3.nhb-card__title,
.news-display-widget--headlines-band .nhb-card__link:focus-visible h3.nhb-card__title {
  text-decoration: underline;
}

.news-display-widget--headlines-band .nhb-card__link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

.news-display-widget--headlines-band .nhb-footer {
  margin-top: 14px;
  text-align: center;
}

.news-display-widget--headlines-band .nhb-view-more {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #8f8f8f;
  border-radius: 40px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.news-display-widget--headlines-band .nhb-view-more:hover,
.news-display-widget--headlines-band .nhb-view-more:focus-visible {
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   Section label "bookmark" tag  (news-section-label)
   ---------------------------------------------------------------- */
.news-display-widget .news-section-label {
  display: inline-block;
  background: var(--news-section-color, #ffba00);
  color: var(--news-section-text, #111);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 100%, 0% 100%);
  padding: 7px 22px 7px 10px;
}

.news-display-widget .news-section-label:empty {
  display: none;
}

/* Positioned over card/nhb images — bottom-right (all layouts except featured, which
   keeps its own top-left .news-feature__label styling below) so the banner doesn't
   cover faces near the top of the image. */
.news-display-widget .news-card__media > .news-section-label,
.news-display-widget--headlines-band .nhb-card__media > .news-section-label {
  position: absolute;
  bottom: 10px;
  right: 0;
  z-index: 1;
  padding: 6px 10px 6px 22px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 7px 100%);
}

.news-display-widget--headlines-band .nhb-card__media > .news-section-label {
  font-size: 10px;
  padding: 5px 7px 5px 11px;
  bottom: 0;
}

/* Inline label (list items) */
.news-display-widget .news-section-label--inline {
  align-self: flex-start;
  margin: 0 0 8px;
  padding: 7px 24px 7px 10px;
}

/* Featured article label — bleeds left edge */
.news-display-widget .news-feature__label.news-section-label {
  align-self: flex-start;
  margin: 0 0 24px -32px;
  padding: 8px 24px 8px 32px;
}

/* ----------------------------------------------------------------
   Section color system  (data-news-section CSS custom properties)
   ---------------------------------------------------------------- */
.news-display-widget [data-news-section] {
  --news-section-color: #ffba00;
  --news-section-text: #111;
  --news-link-color: #333;
}

.news-display-widget [data-news-section-label*="business" i] {
  --news-section-color: #ffba00;
  --news-section-text: #111;
  --news-link-color: #333;
}

.news-display-widget [data-news-section-label*="student" i] {
  --news-section-color: #006894;
  --news-section-text: #fff;
  --news-link-color: #006894;
}

.news-display-widget [data-news-section-label*="research" i] {
  --news-section-color: #007e00;
  --news-section-text: #fff;
  --news-link-color: #007e00;
}

.news-display-widget [data-news-section-label*="alumni" i] {
  --news-section-color: #d43900;
  --news-section-text: #fff;
  --news-link-color: #d43900;
}

/* ----------------------------------------------------------------
   Date accent mark  (skewed section-colored bar before date text)
   ---------------------------------------------------------------- */
.news-display-widget .news-card__date::before,
.news-display-widget .news-feature__date::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 6px;
  background: var(--news-section-color, #ffba00);
  transform: skew(-14deg);
  vertical-align: -1px;
}

.news-display-widget .news-card__date,
.news-display-widget .news-feature__date,
.news-display-widget .news-listing__meta {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* No accent bar on listing dates or nhb dates */
.news-display-widget .news-listing__date::before,
.news-display-widget--headlines-band .nhb-card__date::before {
  content: none;
  display: none;
}

/* ----------------------------------------------------------------
   Listing meta / date  (text-list.template.html)
   ---------------------------------------------------------------- */
.news-display-widget .news-listing__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  color: #111;
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.news-display-widget--listing .news-listing__meta {
  font-size: 12px;
  font-weight: 700;
  color: #555;
}

.news-display-widget .news-listing__date {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* ----------------------------------------------------------------
   Full-link stacked card  (news-card--feature, news-card--allStories)
   ---------------------------------------------------------------- */
.news-card--stacked .news-card__full-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card--stacked .news-card__full-link:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

.news-display-widget .news-card--feature .news-card__content {
  padding-top: 8px;
}

.news-display-widget .news-card--feature .news-card__title {
  font-size: 18px;
}

/* ----------------------------------------------------------------
   Featured article overlay link
   ---------------------------------------------------------------- */
.news-display-widget .news-feature__overlay-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}

.news-display-widget .news-feature__overlay-link:focus-visible {
  outline: 3px solid #86d3e4;
  outline-offset: -3px;
}

/* Keep article position: relative so overlay link is contained */
.news-display-widget article.news-feature {
  position: relative;
}

/* ----------------------------------------------------------------
   Widget layout modifiers
   ---------------------------------------------------------------- */
.news-display-widget--featured-then-cards article.news-feature {
  margin-bottom: 44px;
}

/* ----------------------------------------------------------------
   Responsive breakpoints
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .news-display-widget [data-news-item="true"] {
    transition: none;
  }
  .news-display-widget [data-news-item="true"].news-item--concealed:not(.news-item--revealed) {
    transform: none;
  }
}

@media (max-width: 900px) {
  .news-feature-wrap article.news-feature {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    grid-template-areas: unset !important;
  }
  .news-feature-wrap .news-feature__media {
    order: 1;
    flex: 0 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: 0 !important;
    padding-bottom: 56.25% !important;
    overflow: hidden !important;
    position: relative !important;
    float: none !important;
  }
  .news-feature-wrap .news-feature__image-link,
  .news-feature-wrap .news-feature__image {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }
  .news-feature-wrap .news-feature__image {
    background-size: cover !important;
  }
  .news-feature-wrap .news-feature__body {
    order: 2;
    flex: 0 0 auto;
    grid-area: unset !important;
    width: 100% !important;
    position: relative !important;
    float: none !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 24px 20px 28px;
  }
  .news-feature-wrap .news-feature__title {
    font-size: 24px;
  }

  .news-display-widget article.news-feature {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    grid-template-areas: unset !important;
  }
  .news-display-widget .news-feature__media {
    order: 1;
    flex: 0 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: 0 !important;
    padding-bottom: 56.25% !important;
    aspect-ratio: unset !important;
    overflow: hidden !important;
    position: relative !important;
    float: none !important;
  }
  .news-display-widget .news-feature__image-link {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
  }
  .news-display-widget .news-feature__image {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    background-size: cover !important;
  }
  .news-display-widget .news-feature__body {
    order: 2;
    flex: 0 0 auto;
    grid-area: unset !important;
    width: 100% !important;
    position: relative !important;
    float: none !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 24px 20px 28px;
  }
  .news-display-widget .news-feature__title {
    font-size: 24px;
  }

  .news-display-widget--headlines-band .nhb-grid {
    grid-template-columns: 1fr;
  }

  .news-filter__controls {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }
  .news-filter__select-wrap,
  .news-filter__search-wrap {
    flex: 1 1 100%;
  }
  .news-display-widget .news-feature__label.news-section-label {
    margin-left: -20px;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .news-card__link {
    grid-template-columns: 1fr;
  }
  .news-card__media {
    aspect-ratio: 16 / 9;
  }
  .news-card__image-bg {
    min-height: 0;
  }
  .news-card__content {
    padding: 16px;
  }
  .news-grid-cards {
    grid-template-columns: repeat(var(--cols-mobile, 1), 1fr);
  }
}

@media (max-width: 900px) {
  .nhb-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .news-grid-cards {
    grid-template-columns: repeat(var(--cols-tablet, 1), 1fr);
  }
}

/* ----------------------------------------------------------------
   Carousel  (display-widget-rhino.js + news-carousel.js)
   --cols-desktop / --cols-tablet / --cols-mobile are set as inline
   CSS custom properties on .news-carousel by the Rhino script so
   the grid column count always matches what the JS shows per page.
   ---------------------------------------------------------------- */
.news-carousel {
  max-width: 1100px;
  margin: 0 auto 24px;
  position: relative;
}

.news-carousel__track-wrap {
  overflow: hidden;
}

.news-carousel__track {
  display: grid;
  grid-template-columns: repeat(var(--cols-desktop, 3), minmax(0, 1fr));
  gap: 20px;
  padding-bottom:32px;
}

/* Controls row: [prev]  • • •  [next] */
.news-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* Prev / Next arrow buttons */
.news-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  flex-shrink: 0;
}

.news-carousel__btn:hover:not(:disabled) {
  background: #ffba00;
  border-color: #ffba00;
  color: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.news-carousel__btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news-carousel__btn:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

.news-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: none;
}

.news-carousel__btn[hidden] {
  display: none;
}

/* Dot page indicators */
.news-carousel__dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 420px;
}

.news-carousel__dot {
  display: block;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}

.news-carousel__dot.is-active {
  background: #ffba00;
  border-color: #ffba00;
  transform: scale(1.4);
}

.news-carousel__dot:hover:not(.is-active) {
  background: #ffe6a3;
  border-color: #ffba00;
}

.news-carousel__dot:focus-visible {
  outline: 3px solid #0c6589;
  outline-offset: 2px;
}

/* Card wrappers inside the carousel should fill their grid cell */
.news-carousel .content-wrap,
.news-carousel .news-card-wrap {
  height: 100%;
}

/* Fade the page in on change so pagination doesn't feel like a hard cut */
.news-carousel__track > * {
  animation: news-carousel-fade-in 0.25s ease both;
}

@keyframes news-carousel-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive column overrides — match JS breakpoints exactly */
@media (max-width: 1023px) {
  .news-carousel__track {
    grid-template-columns: repeat(var(--cols-tablet, 2), minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .news-carousel__track {
    grid-template-columns: repeat(var(--cols-mobile, 1), minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-carousel__btn,
  .news-carousel__dot {
    transition: none;
  }

  .news-carousel__track > * {
    animation: none;
  }
}






