/* ============================================================
   new-homepage.css — styles for the NEW Korea homepage (index1.htm)
   ------------------------------------------------------------
   Rules of this file (see CLAUDE.md):
   - ALL new-homepage styles live here. Never edit the old CSS files
     (enago-kr-home.css, new_home_page.css, index-v2-style.css, ...).
   - When overriding an old rule, scope the selector to this page
     (body class .home-page-new) so nothing leaks to other pages.
   - The header/footer includes carry their own scoped styles
     (inc_header_newest.htm / inc_footer_newest.htm).
   ============================================================ */

/* ---------- Design tokens (from the Figma redesign) ----------
   Ink/900 (footer bg):   #111820
   Ink/400 (hairline):    #787E88
   Nav strip:             #000000
   Nav separators:        #4C4444
   Brand yellow (CTA):    #FFDA00  (hover #F2CF00)
   Brand red:             #D72624
   Text dark:             #1D1D1D / #080606
   Headings KR:           'NanumGothic' 600 — 18px/27px (H4)
   Body KR:               'NanumGothic' 400 — 16px/24px
   Small KR:              'NanumGothic' 400 — 14px/21px
   Extra small KR:        'NanumGothic' 400 — 12px/18px
   Content width:         1170px (padding 175px on 1520 frame)
   -------------------------------------------------------------- */

:root {
  --nwst-ink-900: #111820;
  --nwst-ink-400: #787E88;
  --nwst-black: #000000;
  --nwst-yellow: #FFDA00;
  --nwst-yellow-hover: #F2CF00;
  --nwst-red: #D72624;
  --nwst-text: #1D1D1D;
  --nwst-content-width: 1170px;
}

/* Shared section shell for the new sections */
.home-page-new .nwst-section {
  padding: 52px 0;
}

.home-page-new .nwst-container {
  max-width: var(--nwst-content-width);
  margin: 0 auto;
  padding: 0 15px;
}

/* Utility: a <br> that only exists on desktop — hidden on phones so the
   text reflows naturally there */
@media screen and (max-width: 767px) {
  .home-page-new br.nwst-br-desktop {
    display: none;
  }
}

/* ============================================================
   New homepage sections (added one by one below)
   ============================================================ */

/* ---------- 1. University logo marquee (scrolls right → left) ---------- */
.home-page-new .nwst-unimarquee {
  background: #F7ECE4;
  padding: 24px 0;
  overflow: hidden;
}

.home-page-new .nwst-unimarquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  /* the transformed track is its own stacking context — it needs the beige
       backdrop itself for the logos' mix-blend-mode: luminosity to bite */
  background: #F7ECE4;
  animation: nwst-marquee-ltr 55s linear infinite;
}

.home-page-new .nwst-unimarquee-track:hover {
  animation-play-state: paused;
}

.home-page-new .nwst-unimarquee-group {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-page-new .nwst-unimarquee-group li {
  display: flex;
  align-items: center;
  height: 62px;
  padding: 0 0 0 20px;
}

/* 32px-tall hairline separator, 20px gap on both sides (Figma Line 22-36) */
.home-page-new .nwst-unimarquee-group li:after {
  content: "";
  flex: none;
  width: 1px;
  height: 32px;
  background: #D9D9D9;
  margin-left: 20px;
}

.home-page-new .nwst-unimarquee-group li img {
  width: 116px;
  max-width: none;
  height: auto;
  display: block;
  mix-blend-mode: luminosity;
}

@keyframes nwst-marquee-ltr {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- 2. Service selector (연구 목적에 맞는 서비스를 선택) ---------- */
.home-page-new .nwst-services {
  background: #F7ECE4;
  padding: 30px 0 80px;
}

.home-page-new .nwst-services-title {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.4;
  color: #1D1D1D;
  text-align: center;
  margin: 0 0 20px;
}

.home-page-new .nwst-services-sub {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #1D1D1D;
  text-align: center;
  margin: 0 0 36px;
}

/* Tab pill switcher */
.home-page-new .nwst-tabs-wrap {
  position: relative;
  max-width: 730px;
  margin: 0 auto 56px;
}

.home-page-new .nwst-tabs {
  display: flex;
  background: #2A3547;
  border-radius: 999px;
  padding: 6px;
}

/* mobile-only dropdown toggle (enago.jp pattern) — hidden on desktop */
.home-page-new button.nwst-tabs-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2A3547;
  color: #fff;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 16px 20px;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.home-page-new .nwst-tabs-toggle svg {
  flex: none;
  transition: transform .25s ease;
}

.home-page-new .nwst-tabs-wrap.is-open .nwst-tabs-toggle svg {
  transform: rotate(180deg);
}

.home-page-new .nwst-tab {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}

.home-page-new .nwst-tab.is-active {
  background: #fff;
  color: #1D1D1D;
}

.home-page-new .nwst-tabpanel {
  display: none;
}

.home-page-new .nwst-tabpanel.is-active {
  display: block;
}

.home-page-new .nwst-panel-empty {
  text-align: center;
  color: #6b6b6b;
  font-size: 16px;
  padding: 48px 0;
  margin: 0;
}

/* Service cards */
.home-page-new .nwst-cards {
  display: flex;
  align-items: stretch;
  gap: 26px;
}

.home-page-new .nwst-card {
  position: relative;
  flex: 1 1 0;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.home-page-new .nwst-card.is-featured {
  border-color: #8C1A1A;
  background: linear-gradient(360deg, #FFFFFF 0%, #FEF7F6 100%);
}

/* Tab-style ribbon sitting flush on the card's top edge (Figma Frame 1000008993) */
.home-page-new .nwst-card-badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 6px 40px;
  background: #8C1A1A;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.home-page-new .nwst-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.home-page-new .nwst-card-head img {
  width: 70px;
  height: 70px;
  flex: none;
}

.home-page-new .nwst-card-head h3 {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #1D1D1D;
  margin: 0;
  line-height: 1.3;
}

.home-page-new .nwst-card h4 {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1D1D1D;
  margin: 0 0 10px;
  line-height: 1.5;
}

.home-page-new .nwst-card-desc {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #1D1D1D;
  margin: 0 0 24px;
}

.home-page-new .nwst-card h5 {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1D1D1D;
  margin: 0 0 12px;
}

.home-page-new .nwst-checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-page-new .nwst-checklist li {
  position: relative;
  padding-left: 26px;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #1D1D1D;
}

.home-page-new .nwst-checklist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8.5L6.2 12.2L13.5 4.2' stroke='%2321A54D' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 16px 16px;
}

.home-page-new .nwst-card-cta {
  margin-top: auto;
  padding-top: 8px;
  text-align: center;
}

.home-page-new a.nwst-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 48px;
  padding: 0 30px;
  background: #fff;
  border: 1px solid #1D1D1D;
  border-radius: 4px;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1D1D1D;
  text-decoration: none;
  transition: all .3s ease;
}

.home-page-new a.nwst-card-btn:hover,
.home-page-new a.nwst-card-btn:focus {
  color: #1D1D1D;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  transform: translateY(-2px);
}

.home-page-new .nwst-card.is-featured a.nwst-card-btn {
  background: var(--nwst-yellow);
  border-color: var(--nwst-yellow);
}

.home-page-new .nwst-card.is-featured a.nwst-card-btn:hover,
.home-page-new .nwst-card.is-featured a.nwst-card-btn:focus {
  background: var(--nwst-yellow-hover);
  border-color: var(--nwst-yellow-hover);
}

/* Hovering any card's CTA gives it the yellow featured look… */
.home-page-new .nwst-cards a.nwst-card-btn:hover,
.home-page-new .nwst-cards a.nwst-card-btn:focus {
  background: var(--nwst-yellow);
  border-color: var(--nwst-yellow);
}

/* …and while a non-featured CTA is hovered/focused, the featured one
   hands over its yellow and reverts to the white outlined style */
.home-page-new .nwst-cards:has(.nwst-card:not(.is-featured) .nwst-card-btn:hover) .nwst-card.is-featured a.nwst-card-btn,
.home-page-new .nwst-cards:has(.nwst-card:not(.is-featured) .nwst-card-btn:focus) .nwst-card.is-featured a.nwst-card-btn {
  background: #fff;
  border-color: #1D1D1D;
}

.home-page-new a.nwst-card-more {
  display: table;
  margin: 16px auto 0;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-size: 15px;
  color: #2B6BE4;
  text-decoration: underline;
}

.home-page-new a.nwst-card-more:hover,
.home-page-new a.nwst-card-more:focus {
  color: #2B6BE4;
  text-decoration: none;
}

/* ---------- 3. Stats band (숫자로 증명하는 이나고의 전문성) ---------- */
.home-page-new .nwst-stats {
  background: #293242;
  padding: 40px 0;
}

.home-page-new .nwst-stats-title {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #fff;
  text-align: center;
  margin: 0 0 30px;
}

.home-page-new .nwst-stats-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.home-page-new .nwst-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 40px;
  text-align: center;
}

/* 110px vertical hairline between stats (Figma Line 19-21) */
.home-page-new .nwst-stat+.nwst-stat {
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.home-page-new .nwst-stat-num {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 54px;
  color: #fff;
}

.home-page-new .nwst-stat-cap {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

/* ---------- 4. Publishers (국내외 연구기관과 글로벌 출판사가 선택한 이나고) ---------- */
.home-page-new .nwst-publishers {
  background: #F4F5F5;
  padding: 60px 0;
}

.home-page-new .nwst-publishers-title {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #000;
  text-align: center;
  margin: 0 0 30px;
}

.home-page-new .nwst-publishers-sub {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #1D1D1D;
  text-align: center;
  margin: 0 0 50px;
}

.home-page-new .nwst-publishers-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  flex-wrap: wrap;
}

.home-page-new .nwst-publishers-row+.nwst-publishers-row {
  margin-top: 18px;
}

.home-page-new .nwst-publishers-row li {
  display: flex;
  align-items: center;
}

.home-page-new .nwst-publishers-row img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 991px) {
  .home-page-new .nwst-publishers-row {
    gap: 30px;
    row-gap: 24px;
  }

  .home-page-new .nwst-publishers-title {
    font-size: 24px;
    line-height: 36px;
  }

  .home-page-new .nwst-publishers-sub {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 36px;
  }
}

/* ---------- 5. AI research support (AI 연구 지원) ---------- */
.home-page-new .nwst-ai {
  background: #F4F5F5;
  padding: 80px 0;
}

.home-page-new .nwst-ai-title {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #000;
  text-align: center;
  margin: 0 0 29px;
}

.home-page-new .nwst-ai-sub {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #1D1D1D;
  text-align: center;
  margin: 0 0 30px;
}

.home-page-new .nwst-ai-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.home-page-new .nwst-ai-card {
  width: 409px;
  max-width: 100%;
  background: #E5E7E8;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
}

.home-page-new .nwst-ai-logo {
  background: #fff;
  border-radius: 10px;
  height: 130px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.home-page-new .nwst-ai-logo img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
}

.home-page-new .nwst-ai-tag {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #293242;
  margin: 0 0 20px;
}

.home-page-new .nwst-ai-card h5 {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #293242;
  margin: 0 0 10px;
}

.home-page-new .nwst-ai-card .nwst-checklist {
  margin-bottom: 0;
}

.home-page-new .nwst-ai-card .nwst-checklist li {
  font-size: 16px;
  line-height: 24px;
  color: #293242;
}

.home-page-new .nwst-ai-cta {
  margin-top: auto;
  padding-top: 50px;
  text-align: center;
}

.home-page-new a.nwst-ai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 14px 60px;
  background: #fff;
  border: 1px solid #293242;
  border-radius: 3px;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #293242;
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s ease;
}

.home-page-new a.nwst-ai-btn:hover,
.home-page-new a.nwst-ai-btn:focus {
  color: #293242;
  text-decoration: none;
  background: var(--nwst-yellow);
  border-color: var(--nwst-yellow);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .home-page-new .nwst-ai {
    padding: 50px 0;
  }

  .home-page-new .nwst-ai-title {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 16px;
  }

  .home-page-new .nwst-ai-sub {
    font-size: 16px;
    line-height: 26px;
  }

  .home-page-new .nwst-ai-cards {
    flex-direction: column;
    align-items: center;
  }

  .home-page-new .nwst-ai-cta {
    padding-top: 30px;
  }
}

/* ---------- 6. CTA banner (전문가 교정이 필요하신가요?) ---------- */
.home-page-new .nwst-ctaband {
  background: #293242;
  padding: 30px 0;
}

.home-page-new .nwst-ctaband-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.home-page-new .nwst-ctaband-text h2 {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #fff;
  text-align: left;
  margin: 0 0 10px;
}

.home-page-new .nwst-ctaband-text p {
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-align: left;
  margin: 0;
}

.home-page-new a.nwst-ctaband-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  padding: 14px 60px;
  background: #FFDA00;
  border-radius: 3px;
  font-family: 'NanumGothic', 'Nanum Gothic', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #293242;
  text-decoration: none;
  white-space: nowrap;
  transition: all .3s ease;
}

.home-page-new a.nwst-ctaband-btn:hover,
.home-page-new a.nwst-ctaband-btn:focus {
  color: #293242;
  text-decoration: none;
  background: #F2CF00;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

@media screen and (max-width: 767px) {
  .home-page-new .nwst-ctaband-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .home-page-new .nwst-ctaband-text h2 {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
  }

  .home-page-new .nwst-ctaband-text p {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .home-page-new .nwst-stats-row {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .home-page-new .nwst-stat {
    flex: 1 1 40%;
    padding: 0 20px;
  }

  .home-page-new .nwst-stat:nth-child(3) {
    border-left: 0;
  }

  .home-page-new .nwst-stat-num {
    font-size: 34px;
    line-height: 42px;
  }
}

@media screen and (max-width: 991px) {
  .home-page-new .nwst-cards {
    flex-direction: column;
    max-width: 560px;
    margin: 0 auto;
  }

  .home-page-new .nwst-card.is-featured {
    margin-top: 14px;
  }

  .home-page-new .nwst-services-title {
    font-size: 26px;
  }

  .home-page-new .nwst-services-sub {
    font-size: 16px;
  }

  .home-page-new .nwst-tabs-wrap {
    max-width: 100%;
  }

  .home-page-new .nwst-tab {
    font-size: 15px;
    padding: 13px 6px;
  }
}

/* Phones: tabs collapse into a dropdown — the toggle shows the current tab,
   the pill becomes a white overlay list of options */
@media screen and (max-width: 767px) {
  .home-page-new button.nwst-tabs-toggle {
    display: flex;
  }

  .home-page-new .nwst-tabs {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    flex-direction: column;
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    overflow: hidden;
  }

  .home-page-new .nwst-tabs-wrap.is-open .nwst-tabs {
    display: flex;
  }

  .home-page-new .nwst-tab {
    width: 100%;
    color: #1D1D1D;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid #ECECEC;
    font-size: 16px;
    padding: 14px 10px;
  }

  .home-page-new .nwst-tab:last-child {
    border-bottom: 0;
  }

  .home-page-new .nwst-tab.is-active {
    background: none;
    color: #1D1D1D;
    font-weight: 800;
  }
}

/* ------------------------------------------------------------
   SCI banner: the "서비스 둘러보기" link (a.nwst-card-more in the
   cta-row) sits beside the yellow quote button, not below it —
   overrides the base display:table / margin:auto of nwst-card-more.
   ------------------------------------------------------------ */
.home-page-new .five-per-off-slide.sci-editing .cta-row a.nwst-card-more,
.home-page-new .five-per-off-slide.ps-campaign .cta-row a.nwst-card-more,
.home-page-new .five-per-off-slide.tie-campaign .cta-row a.nwst-card-more {
  display: inline-block;
  margin: 6px 0 0 24px;
  font-size: 16px;
  line-height: 24px;
  /* centered against the quote button (which also gets vertical-align:
     middle below — inline-block middles align through the parent) */
  vertical-align: middle;
  /* white on the dark banner art (underline inherits the text color) */
  color: #fff;
}

.home-page-new .five-per-off-slide.sci-editing .cta-row .banner-cta,
.home-page-new .five-per-off-slide.ps-campaign .cta-row .banner-cta,
.home-page-new .five-per-off-slide.tie-campaign .cta-row .banner-cta {
  vertical-align: middle;
}

.home-page-new .five-per-off-slide.ps-campaign .cta-row a.nwst-card-more:hover,
.home-page-new .five-per-off-slide.tie-campaign .cta-row a.nwst-card-more:hover,
.home-page-new .five-per-off-slide.ps-campaign .cta-row a.nwst-card-more:focus,
.home-page-new .five-per-off-slide.tie-campaign .cta-row a.nwst-card-more:focus {
  color: #fff;
}

/* SCI banner sits on light art — its link stays blue */
.home-page-new .five-per-off-slide.sci-editing .cta-row a.nwst-card-more,
.home-page-new .five-per-off-slide.sci-editing .cta-row a.nwst-card-more:hover,
.home-page-new .five-per-off-slide.sci-editing .cta-row a.nwst-card-more:focus {
  color: #00F;
}

/* mobile: the link drops back below the centered button */
@media (max-width: 768px) {

  .home-page-new .five-per-off-slide.sci-editing .cta-row a.nwst-card-more,
  .home-page-new .five-per-off-slide.ps-campaign .cta-row a.nwst-card-more,
  .home-page-new .five-per-off-slide.tie-campaign .cta-row a.nwst-card-more {
    display: table;
    margin: 12px auto 0;
    line-height: 24px;
  }
}