/*
 * SSBToSuccess — Homepage Stylesheet
 * Loaded only on: is_front_page()
 * Prefixes: .hp-* for all homepage-specific components
 */

/* ── HOMEPAGE TOKENS ──────────────────────────────────────── */
:root {
  --hp-navy:    #0B1F3A;
  --hp-navy2:   #152E54;
  --hp-saffron: #C8851A;
  --hp-saf2:    #E09C30;
  --hp-green:   #1a6b3a;
  --hp-green2:  #145530;
  --hp-bg:      #F4F2ED;
  --hp-bg2:     #ECEAE4;
  --hp-card:    #FFFFFF;
  --hp-bdr:     #D6D3CC;
  --hp-ink:     #0F1923;
  --hp-ink2:    #374151;
  --hp-muted:   #6B7280;
}
@media (prefers-color-scheme: dark) {
  :root {
    --hp-bg:   #0D1824; --hp-bg2:  #132030; --hp-card: #162030;
    --hp-bdr:  #243448; --hp-ink:  #E4E0D6; --hp-ink2: #A8B8C4;
    --hp-muted:#6A7E8E;
  }
}
:root[data-theme="dark"] {
  --hp-bg:#0D1824; --hp-bg2:#132030; --hp-card:#162030;
  --hp-bdr:#243448; --hp-ink:#E4E0D6; --hp-ink2:#A8B8C4; --hp-muted:#6A7E8E;
}
:root[data-theme="light"] {
  --hp-bg:#F4F2ED; --hp-bg2:#ECEAE4; --hp-card:#FFFFFF;
  --hp-bdr:#D6D3CC; --hp-ink:#0F1923; --hp-ink2:#374151; --hp-muted:#6B7280;
}

/* ── HOMEPAGE BODY OVERRIDE ───────────────────────────────── */
body.home { background: var(--hp-bg); }

/* ── SHARED LAYOUT HELPERS ────────────────────────────────── */
.hp-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hp-saffron);
}
.hp-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--hp-saffron);
  flex-shrink: 0;
}
.hp-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--hp-ink);
  margin-bottom: 24px;
}
.hp-sec-head h2 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--hp-ink);
}
.hp-sec-head a {
  font-size: 12px;
  font-weight: 700;
  color: var(--hp-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .15s;
}
.hp-sec-head a:hover { color: var(--hp-ink); }
.hp-sec-head--news  { border-bottom-color: var(--hp-navy); }
.hp-sec-head--ssb   { border-bottom-color: var(--hp-saffron); }
.hp-sec-head--story { border-bottom-color: var(--hp-saffron); }
.hp-sec-head--notif { border-bottom-color: var(--hp-green); }

/* Category chips */
.hp-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  line-height: 1.4;
}
.hp-chip--news  { background: var(--hp-navy);    color: #fff; }
.hp-chip--ssb   { background: var(--hp-saffron); color: #fff; }
.hp-chip--story { background: #BE123C;            color: #fff; }
.hp-chip--notif { background: #5B21B6;            color: #fff; }
.hp-chip--result{ background: var(--hp-green);   color: #fff; }
.hp-chip--new   { background: var(--hp-saffron); color: #fff; }

/* ── SECTION WRAPPERS ─────────────────────────────────────── */
.hp-section {
  padding: 40px 0;
  background: var(--hp-bg);
}
.hp-section--alt { background: var(--hp-bg2); }
.hp-section + .hp-section { border-top: 1px solid var(--hp-bdr); }

/* ── HERO ─────────────────────────────────────────────────── */
.hp-hero {
  padding: 28px 0 40px;
  background: var(--hp-bg);
}
.hp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Featured main card */
.hp-feat {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.hp-feat__img {
  height: 420px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0B2A4A 0%, #1a6b3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-feat__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hp-feat:hover .hp-feat__img img { transform: scale(1.03); }
.hp-feat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,12,22,.92) 0%, rgba(5,12,22,.4) 55%, transparent 100%);
}
.hp-feat__placeholder {
  font-size: 80px;
  opacity: .14;
  position: relative;
  z-index: 0;
}
.hp-feat__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}
.hp-feat__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  text-wrap: balance;
  margin: 8px 0 10px;
  text-decoration: none;
  display: block;
}
.hp-feat__title:hover { text-decoration: underline; text-underline-offset: 3px; }
.hp-feat__meta {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
}

/* Mini side cards */
.hp-mini-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-mini {
  display: flex;
  gap: 14px;
  background: var(--hp-card);
  border: 1px solid var(--hp-bdr);
  border-radius: 5px;
  padding: 14px;
  cursor: pointer;
  transition: box-shadow .2s;
  text-decoration: none;
}
.hp-mini:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.hp-mini__thumb {
  width: 78px;
  height: 78px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--hp-bg2);
}
.hp-mini__thumb img { width: 100%; height: 100%; object-fit: cover; }
.hp-mini__body { flex: 1; min-width: 0; }
.hp-mini__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 5px 0 4px;
  text-decoration: none;
}
.hp-mini:hover .hp-mini__title { color: var(--hp-green); }
.hp-mini__meta { font-size: 11px; color: var(--hp-muted); }

/* Ad strip */
.hp-ad-strip {
  background: var(--hp-bg2);
  border: 1px dashed var(--hp-bdr);
  border-radius: 4px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--hp-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 28px;
}

/* ── NEWS GRID ────────────────────────────────────────────── */
.hp-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-ncard {
  background: var(--hp-card);
  border: 1px solid var(--hp-bdr);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}
.hp-ncard:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.hp-ncard__img {
  height: 160px;
  overflow: hidden;
  background: var(--hp-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}
.hp-ncard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.hp-ncard:hover .hp-ncard__img img { transform: scale(1.04); }
.hp-ncard__body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hp-ncard__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.hp-ncard:hover .hp-ncard__title { color: var(--hp-green); }
.hp-ncard__meta { font-size: 11px; color: var(--hp-muted); }

/* ── SSB PREP GRID ────────────────────────────────────────── */
.hp-ssb-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.hp-ssb-cards { display: flex; flex-direction: column; gap: 14px; }
.hp-ssb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-scard {
  background: var(--hp-card);
  border: 1px solid var(--hp-bdr);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s;
  text-decoration: none;
  display: block;
}
.hp-scard:hover { box-shadow: 0 4px 18px rgba(0,0,0,.09); }
.hp-scard__img {
  height: 130px;
  overflow: hidden;
  background: var(--hp-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.hp-scard__img img { width: 100%; height: 100%; object-fit: cover; }
.hp-scard__body { padding: 12px; }
.hp-scard__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-scard:hover .hp-scard__title { color: var(--hp-green); }
.hp-scard__meta { font-size: 10px; color: var(--hp-muted); margin-top: 5px; }

/* Tip box */
.hp-tip-box {
  background: var(--hp-navy);
  border-radius: 5px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-tip-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hp-saf2);
}
.hp-tip-q {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}
.hp-tip-a { font-size: 12px; color: rgba(255,255,255,.58); line-height: 1.6; }
.hp-tip-hr { height: 1px; background: rgba(255,255,255,.08); }
.hp-tip-small { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.hp-tip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hp-saffron);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 3px;
  letter-spacing: .03em;
  transition: background .15s;
  text-decoration: none;
}
.hp-tip-btn:hover { background: var(--hp-saf2); }

/* ── SUCCESS STORIES ──────────────────────────────────────── */
.hp-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp-story {
  background: var(--hp-card);
  border: 1px solid var(--hp-bdr);
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s;
  text-decoration: none;
  display: block;
}
.hp-story:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.hp-story__img {
  height: 175px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  background: var(--hp-bg2);
}
.hp-story__img img { width: 100%; height: 100%; object-fit: cover; }
.hp-story__body { padding: 16px; }
.hp-story__author {
  font-size: 11px;
  font-weight: 700;
  color: var(--hp-saffron);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.hp-story__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.35;
  margin-bottom: 8px;
}
.hp-story:hover .hp-story__title { color: var(--hp-green); }
.hp-story__ex {
  font-size: 12px;
  color: var(--hp-ink2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── NOTIFICATIONS ────────────────────────────────────────── */
.hp-notif-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.hp-notif-list { display: flex; flex-direction: column; }
.hp-notif {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hp-bdr);
  text-decoration: none;
}
.hp-notif:last-child { border: none; }
.hp-notif__date {
  flex-shrink: 0;
  width: 48px;
  text-align: center;
  background: var(--hp-navy);
  border-radius: 4px;
  padding: 6px 4px;
}
.hp-notif__day { font-size: 20px; font-weight: 900; color: #fff; line-height: 1; }
.hp-notif__mon { font-size: 9px; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.45); margin-top: 2px; }
.hp-notif__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-ink);
  line-height: 1.4;
  margin-bottom: 4px;
}
.hp-notif:hover .hp-notif__title { color: var(--hp-green); }
.hp-notif__meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--hp-muted); }
.hp-status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hp-green); }
.hp-status-dot--closed { background: var(--hp-muted); }

/* Quick links box */
.hp-qbox {
  background: var(--hp-card);
  border: 1px solid var(--hp-bdr);
  border-radius: 5px;
  padding: 18px;
}
.hp-qbox h3 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--hp-ink);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hp-ink);
}
.hp-qlink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--hp-bdr);
  font-size: 13px;
  font-weight: 600;
  color: var(--hp-ink);
  transition: color .15s;
  cursor: pointer;
  text-decoration: none;
}
.hp-qlink:last-child { border: none; }
.hp-qlink:hover { color: var(--hp-green); }
.hp-qlink__arr { opacity: .3; font-size: 12px; }

/* ── RESOURCES BAND ───────────────────────────────────────── */
.hp-resources {
  background: var(--hp-navy);
  padding: 48px 0;
}
.hp-res-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.hp-res-head h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
}
.hp-res-head a { font-size: 12px; font-weight: 700; color: var(--hp-saf2); text-transform: uppercase; letter-spacing: .04em; }
.hp-res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hp-rcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  padding: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.hp-rcard:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); }
.hp-rcard__ico { font-size: 28px; line-height: 1; }
.hp-rcard__name { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.hp-rcard__desc { font-size: 12px; color: rgba(255,255,255,.48); line-height: 1.55; }
.hp-rcard__cta { font-size: 12px; font-weight: 700; color: var(--hp-saf2); letter-spacing: .03em; margin-top: auto; }

/* ── GLOSSARY SHOWCASE ────────────────────────────────────── */
.hp-glshow { background: var(--hp-green); padding: 56px 0; }

.hp-glshow__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.hp-glshow__left .hp-eyebrow { color: rgba(255,255,255,.65); }
.hp-glshow__left .hp-eyebrow::before { background: rgba(255,255,255,.35); }
.hp-glshow__title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.05;
  text-wrap: balance;
  margin-top: 10px;
}
.hp-glshow__title em { font-style: normal; opacity: .62; }

.hp-gl-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--hp-green);
  font-size: 14px;
  font-weight: 800;
  padding: 13px 26px;
  border-radius: 4px;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.hp-gl-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* A-Z strip */
.hp-az-strip {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 28px;
}
.hp-az-strip::-webkit-scrollbar { display: none; }
.hp-az-ltr {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .15s;
  text-decoration: none;
}
.hp-az-ltr:hover { background: #fff; color: var(--hp-green); border-color: #fff; }

/* Term preview cards */
.hp-gl-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.hp-gl-tc {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 5px;
  padding: 14px;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-decoration: none;
}
.hp-gl-tc:hover { background: rgba(255,255,255,.17); }
.hp-gl-tc__ltr {
  font-size: 30px;
  font-weight: 900;
  color: rgba(255,255,255,.14);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -4px;
}
.hp-gl-tc__name { font-size: 13px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.hp-gl-tc__hi   { font-size: 11px; color: rgba(255,255,255,.5); }
.hp-gl-tc__def  { font-size: 11px; color: rgba(255,255,255,.48); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.hp-newsletter {
  background: var(--hp-bg2);
  padding: 40px 0;
  border-top: 1px solid var(--hp-bdr);
}
.hp-nl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hp-nl-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 900;
  color: var(--hp-ink);
  letter-spacing: -.03em;
  text-wrap: balance;
  margin-bottom: 6px;
}
.hp-nl-desc { font-size: 13px; color: var(--hp-muted); line-height: 1.55; }
.hp-nl-form { display: flex; gap: 8px; }
.hp-nl-form input {
  flex: 1;
  border: 1px solid var(--hp-bdr);
  outline: none;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-family: inherit;
  background: var(--hp-card);
  color: var(--hp-ink);
  transition: border-color .15s;
}
.hp-nl-form input:focus { border-color: var(--hp-green); }
.hp-nl-form button {
  background: var(--hp-green);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 0 20px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  font-family: inherit;
}
.hp-nl-form button:hover { background: var(--hp-green2); }
.hp-nl-note { font-size: 11px; color: var(--hp-muted); margin-top: 8px; }

/* ── PLACEHOLDER THUMBS (no featured image) ───────────────── */
.hp-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: .7;
}
.hp-ph--news    { background: linear-gradient(135deg, #0B1F3A, #1E3D6E); }
.hp-ph--ssb     { background: linear-gradient(135deg, #7c3300, #c8851a); }
.hp-ph--story   { background: linear-gradient(135deg, #7c1a2e, #be123c); }
.hp-ph--notif   { background: linear-gradient(135deg, #2d1a6e, #5b21b6); }
.hp-ph--result  { background: linear-gradient(135deg, #1a4a2e, #1a6b3a); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hp-news-grid  { grid-template-columns: repeat(2, 1fr); }
  .hp-res-grid   { grid-template-columns: repeat(2, 1fr); }
  .hp-gl-cards   { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hp-hero__grid    { grid-template-columns: 1fr; }
  .hp-ssb-grid      { grid-template-columns: 1fr; }
  .hp-notif-grid    { grid-template-columns: 1fr; }
  .hp-nl-grid       { grid-template-columns: 1fr; gap: 20px; }
  .hp-glshow__top   { flex-direction: column; align-items: flex-start; }
  .hp-stories-grid  { grid-template-columns: 1fr 1fr; }
  .hp-feat__img     { height: 340px; }
}
@media (max-width: 640px) {
  .hp-news-grid     { grid-template-columns: 1fr 1fr; }
  .hp-ssb-row       { grid-template-columns: 1fr; }
  .hp-stories-grid  { grid-template-columns: 1fr; }
  .hp-gl-cards      { grid-template-columns: repeat(2, 1fr); }
  .hp-res-grid      { grid-template-columns: 1fr 1fr; }
  .hp-feat__img     { height: 260px; }
}
@media (max-width: 400px) {
  .hp-gl-cards   { grid-template-columns: 1fr 1fr; }
  .hp-res-grid   { grid-template-columns: 1fr; }
  .hp-news-grid  { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-feat__img img,
  .hp-ncard__img img,
  .hp-scard__img img { transition: none; }
}
