/**
 * Home page — hero, welcome, quick links, news (modern layout).
 */

:root {
  --hh-brand: rgb(30, 108, 147);
  --hh-brand-dark: rgb(25, 90, 125);
  --hh-text: rgb(17, 24, 39);
  --hh-muted: rgb(75, 85, 99);
  --hh-surface: rgb(249, 250, 251);
  --hh-radius: 1rem;
  --hh-radius-lg: 1.5rem;
  --hh-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --hh-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
}

/* Shared container */
.harkaway-home-wrap {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px) {
  .harkaway-home-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Buttons */
.harkaway-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.harkaway-home-btn--primary {
  background: var(--hh-brand);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(30, 108, 147, 0.35);
}

.harkaway-home-btn--primary:hover,
.harkaway-home-btn--primary:focus {
  background: var(--hh-brand-dark);
  transform: translateY(-1px);
}

.harkaway-home-btn--ghost {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.harkaway-home-btn--ghost:hover,
.harkaway-home-btn--ghost:focus {
  background: #fff;
  color: var(--hh-brand) !important;
  border-color: #fff;
}

.harkaway-home-btn--outline {
  border: 2px solid var(--hh-brand);
  color: var(--hh-brand) !important;
  background: transparent;
}

.harkaway-home-btn--outline:hover,
.harkaway-home-btn--outline:focus {
  background: var(--hh-brand);
  color: #fff !important;
}

.harkaway-home-btn--light {
  background: #fff;
  color: var(--hh-brand) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.harkaway-home-btn--light:hover,
.harkaway-home-btn--light:focus {
  background: rgb(243, 244, 246);
}

/* —— Hero —— */
.harkaway-home-hero {
  position: relative;
  min-height: min(70vh, 720px);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.harkaway-home-hero__media {
  position: absolute;
  inset: 0;
}

.harkaway-home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.harkaway-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.72) 0%,
    rgba(15, 23, 42, 0.45) 45%,
    rgba(30, 108, 147, 0.35) 100%
  );
}

.harkaway-home-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem 5rem;
}

.harkaway-home-hero__inner {
  max-width: 44rem;
}

.harkaway-home-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.harkaway-home-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.harkaway-home-hero__title-accent {
  display: inline;
  /* Match welcome + news “Harkaway” accent (--hh-brand) */
  color: var(--hh-brand);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.harkaway-home-hero__lead {
  margin: 0 0 1.75rem;
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.harkaway-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.harkaway-home-hero__scroll {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-bottom: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.harkaway-home-hero__scroll:hover,
.harkaway-home-hero__scroll:focus {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(2px);
}

.harkaway-home-hero__scroll-icon {
  display: block;
  font-size: 0.85rem;
  line-height: 1;
  animation: harkaway-home-bounce 2s ease-in-out infinite;
}

@keyframes harkaway-home-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .harkaway-home-hero__scroll-icon {
    animation: none;
  }
}

.site-home .harkaway-home-hero + * {
  scroll-margin-top: 1rem;
}

/* —— Welcome —— */
.harkaway-home-welcome {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #fff 0%, var(--hh-surface) 100%);
}

.harkaway-home-welcome__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .harkaway-home-welcome__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.harkaway-home-welcome__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--hh-text);
}

.harkaway-home-welcome__title-accent {
  color: var(--hh-brand);
}

.harkaway-home-welcome__body {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--hh-muted);
}

.harkaway-home-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.harkaway-home-welcome__play {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--hh-shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.harkaway-home-welcome__play:hover,
.harkaway-home-welcome__play:focus {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.harkaway-home-welcome__thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.harkaway-home-welcome__play-ring {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.22);
  transition: background 0.2s ease;
}

.harkaway-home-welcome__play:hover .harkaway-home-welcome__play-ring,
.harkaway-home-welcome__play:focus .harkaway-home-welcome__play-ring {
  background: rgba(0, 0, 0, 0.35);
}

.harkaway-home-welcome__play-ring::before {
  content: '';
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.harkaway-home-welcome__play-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent var(--hh-brand);
  margin-left: 0.2rem;
}

/* Modal */
.harkaway-home-modal[hidden] {
  display: none !important;
}

.harkaway-home-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.harkaway-home-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
}

.harkaway-home-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  background: #000;
  border-radius: var(--hh-radius);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

.harkaway-home-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.harkaway-home-modal__close:hover,
.harkaway-home-modal__close:focus {
  background: rgba(255, 255, 255, 0.22);
}

.harkaway-home-modal__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.harkaway-home-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Quick links —— */
.harkaway-home-quick {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background-color: rgb(30, 108, 147);
  color: #fff;
}

.harkaway-home-quick__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.harkaway-home-quick__blob {
  position: absolute;
  border-radius: 50%;
  background: rgb(25, 90, 125);
}

.harkaway-home-quick__blob--tr {
  top: -5rem;
  right: -5rem;
  width: 20rem;
  height: 20rem;
  opacity: 0.1;
}

.harkaway-home-quick__blob--bl {
  bottom: -4rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  opacity: 0.15;
}

.harkaway-home-quick__blob--sm1 {
  top: 25%;
  left: 25%;
  width: 4rem;
  height: 4rem;
  opacity: 0.2;
}

.harkaway-home-quick__blob--sm2 {
  bottom: 28%;
  right: 22%;
  width: 5rem;
  height: 5rem;
  opacity: 0.1;
}

.harkaway-home-quick__decor::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background:
    radial-gradient(circle at 30% 20%, rgb(25, 90, 125) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgb(25, 90, 125) 0%, transparent 50%);
}

.harkaway-home-quick__inner {
  position: relative;
  z-index: 1;
}

.harkaway-home-quick__head {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 42rem;
}

@media (min-width: 1024px) {
  .harkaway-home-quick__head {
    margin-bottom: 3rem;
  }
}

.harkaway-home-quick__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.harkaway-home-quick__sub {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(219, 234, 254);
}

.harkaway-home-quick__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .harkaway-home-quick__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .harkaway-home-quick__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

.harkaway-home-quick__card {
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.harkaway-home-quick__card:hover,
.harkaway-home-quick__card:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.harkaway-home-quick__card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .harkaway-home-quick__card:hover,
  .harkaway-home-quick__card:focus {
    transform: none;
  }
}

/* Lucide icon tiles — Tailwind blue/green/purple/orange */
.harkaway-home-quick__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 0.75rem;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.harkaway-home-quick__card:hover .harkaway-home-quick__icon-wrap,
.harkaway-home-quick__card:focus .harkaway-home-quick__icon-wrap {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
}

.harkaway-home-quick__icon-wrap--blue {
  background: rgb(37, 99, 235);
}

.harkaway-home-quick__icon-wrap--green {
  background: rgb(22, 163, 74);
}

.harkaway-home-quick__icon-wrap--purple {
  background: rgb(147, 51, 234);
}

.harkaway-home-quick__icon-wrap--orange {
  background: rgb(249, 115, 22);
}

.harkaway-home-quick__lucide {
  display: block;
}

.harkaway-home-quick__card-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff !important;
  transition: color 0.3s ease;
}

.harkaway-home-quick__card:hover .harkaway-home-quick__card-title,
.harkaway-home-quick__card:focus .harkaway-home-quick__card-title {
  color: rgb(219, 234, 254) !important;
}

.harkaway-home-quick__card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgb(219, 234, 254);
}

.harkaway-home-quick__gov {
  margin-top: 3rem;
  text-align: center;
}

.harkaway-home-quick__gov-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(219, 234, 254);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.harkaway-home-quick__gov-link {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  border-radius: 0.125rem;
  transition: color 0.2s ease;
}

.harkaway-home-quick__gov-link:hover,
.harkaway-home-quick__gov-link:focus {
  color: #fff !important;
}

.harkaway-home-quick__gov-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

/* —— News —— */
.harkaway-home-news {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--hh-surface);
}

.harkaway-home-news__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.harkaway-home-news__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--hh-text);
}

.harkaway-home-news__title-accent {
  color: var(--hh-brand);
}

.harkaway-home-news__sub {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  color: var(--hh-muted);
  line-height: 1.55;
}

.harkaway-home-news__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.25rem;
}

.harkaway-home-news__actions .harkaway-home-btn--outline {
  border-color: var(--hh-brand);
  color: var(--hh-brand) !important;
  background: #fff;
}

.harkaway-home-news__actions .harkaway-home-btn--outline:hover,
.harkaway-home-news__actions .harkaway-home-btn--outline:focus {
  background: var(--hh-brand);
  color: #fff !important;
}

.harkaway-home-news__empty {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--hh-muted);
}

.harkaway-home-news__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .harkaway-home-news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .harkaway-home-news__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.harkaway-home-news__card {
  background: #fff;
  border-radius: var(--hh-radius-lg);
  box-shadow: var(--hh-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.harkaway-home-news__card:hover {
  box-shadow: var(--hh-shadow-lg);
  transform: translateY(-3px);
}

.harkaway-home-news__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.harkaway-home-news__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgb(229, 231, 235);
}

.harkaway-home-news__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.harkaway-home-news__body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.harkaway-home-news__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--hh-text);
}

.harkaway-home-news__card-link:hover .harkaway-home-news__card-title,
.harkaway-home-news__card-link:focus .harkaway-home-news__card-title {
  color: var(--hh-brand);
}

.harkaway-home-news__excerpt {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--hh-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.harkaway-home-news__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgb(156, 163, 175);
}

/* ABC / media spotlight — modern split card */
.harkaway-home-news__abc {
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
}

.harkaway-home-news__abc-surface {
  position: relative;
  border-radius: var(--hh-radius-lg);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 100% 90% at 100% -10%, rgba(255, 255, 255, 0.14) 0%, transparent 52%),
    radial-gradient(ellipse 70% 55% at 0% 110%, rgba(0, 0, 0, 0.18) 0%, transparent 55%),
    linear-gradient(145deg, rgb(18, 65, 92) 0%, var(--hh-brand) 48%, var(--hh-brand-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 22px 44px -14px rgba(30, 108, 147, 0.45);
}

.harkaway-home-news__abc-surface::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
}

.harkaway-home-news__abc-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 768px) {
  .harkaway-home-news__abc-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.72fr);
    gap: clamp(1.5rem, 3vw, 3rem);
  }
}

.harkaway-home-news__abc-copy {
  text-align: center;
}

@media (min-width: 768px) {
  .harkaway-home-news__abc-copy {
    text-align: left;
  }
}

.harkaway-home-news__abc-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(191, 219, 254, 0.95);
}

.harkaway-home-news__abc-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.harkaway-home-news__abc-text {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}

@media (min-width: 768px) {
  .harkaway-home-news__abc-text {
    margin-bottom: 1.65rem;
  }
}

@media (max-width: 767px) {
  .harkaway-home-news__abc-text {
    margin-left: auto;
    margin-right: auto;
  }
}

.harkaway-home-news__abc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.65rem 0.65rem 1.35rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--hh-brand) !important;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.harkaway-home-news__abc-link:hover,
.harkaway-home-news__abc-link:focus {
  transform: translateY(-2px);
  background: rgb(248, 250, 252);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .harkaway-home-news__abc-link:hover,
  .harkaway-home-news__abc-link:focus {
    transform: none;
  }
}

.harkaway-home-news__abc-link-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(30, 108, 147, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e6c93' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M7 7h10v10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
}

@media (max-width: 767px) {
  .harkaway-home-news__abc-link {
    margin-left: auto;
    margin-right: auto;
  }
}

.harkaway-home-news__abc-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  max-width: 22rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .harkaway-home-news__abc-visual {
    align-items: flex-end;
    margin-left: auto;
    margin-right: 0;
  }
}

.harkaway-home-news__abc-thumb-link {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.harkaway-home-news__abc-thumb-link:hover,
.harkaway-home-news__abc-thumb-link:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.harkaway-home-news__abc-thumb-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .harkaway-home-news__abc-thumb-link:hover,
  .harkaway-home-news__abc-thumb-link:focus {
    transform: none;
  }
}

.harkaway-home-news__abc-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.harkaway-home-news__abc-caption {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(191, 219, 254, 0.95);
}

@media (min-width: 768px) {
  .harkaway-home-news__abc-caption {
    text-align: right;
  }
}

.harkaway-home-news__abc-card {
  width: 100%;
  max-width: 15rem;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.harkaway-home-news__abc-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.harkaway-home-news__abc-card-line {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.15));
}

.harkaway-home-news__abc-card-line--short {
  width: 58%;
}

/* Optional editor content below */
.harkaway-home-editor {
  padding: 2rem 0 3rem;
  background: #fff;
}

.harkaway-home-editor .harkaway-page-shell {
  max-width: 48rem;
}
