:root {
  --hu-purple: #5d2568;
  --hu-purple-dark: #42194b;
  --hu-purple-deep: #35113e;
  --hu-gold: #d5c195;
  --hu-gold-dark: #b69c67;
  --hu-cream: rgb(247, 245, 240);
  --hu-border: rgb(232, 229, 223);
  --hu-ink: #1a1a1a;
  --hu-muted: #6d6968;
  --hu-white: #ffffff;
  --hu-soft: #f1efeb;
  --hu-danger: #a52a2a;
  --hu-shadow: 0 18px 50px rgba(36, 17, 39, 0.09);
  --hu-radius: 2px;
  --hu-container: 1120px;
  --hu-content: 760px;
  --hu-transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--hu-white);
  color: var(--hu-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--hu-transition), background-color var(--hu-transition), border-color var(--hu-transition), opacity var(--hu-transition);
}

a:hover {
  color: var(--hu-purple);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
input[type="submit"] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(213, 193, 149, 0.95);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65em;
  color: var(--hu-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.17;
}

p {
  margin: 0 0 1.25em;
}

ul,
ol {
  margin-top: 0;
}

.site-main {
  min-height: 56vh;
}

.site-container {
  width: min(calc(100% - 40px), var(--hu-container));
  margin-inline: auto;
}

.narrow-container {
  max-width: var(--hu-content);
}

.section-space {
  padding-block: clamp(56px, 7vw, 58px);
}

.section-space-small {
  padding-block: clamp(38px, 5vw, 64px);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--hu-white);
  color: var(--hu-purple);
  font-weight: 700;
  box-shadow: var(--hu-shadow);
}

.section-kicker,
.post-category,
.post-meta-line,
.footer-heading,
.sidebar-panel-title,
.share-label {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker,
.post-category {
  color: var(--hu-purple);
}

.section-heading {
  position: relative;
  margin-bottom: 1.25em;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.section-heading::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 12px;
  background: var(--hu-gold);
}

.text-link {
  color: var(--hu-purple);
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--hu-purple-dark);
  text-decoration: underline;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--hu-purple);
  background: var(--hu-purple);
  color: var(--hu-white);
  font-weight: 700;
  text-decoration: none;
}

.button-link:hover {
  background: var(--hu-purple-dark);
  color: var(--hu-white);
}

/* Shared header */
.site-header {
  position: relative;
  z-index: 1000;
}

.header-topbar {
  min-height: 86px;
  background: var(--hu-purple);
  color: var(--hu-white);
}

.header-topbar-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: min(205px, 42vw);
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.header-utilities {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 11px;
}

.social-link {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.social-link:hover {
  color: var(--hu-gold);
}

.header-subscribe {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--hu-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.header-subscribe:hover {
  border-color: var(--hu-gold);
  background: var(--hu-gold);
  color: var(--hu-purple-dark);
}

.header-search-toggle {
  display: inline-grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--hu-white);
}

.header-search-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.primary-navigation-shell {
  background: rgb(247, 245, 240);
  border-bottom: 1px solid rgb(232, 229, 223);
}

.primary-navigation-inner {
  display: flex;
  min-height: 48px;
  align-items: stretch;
}

.primary-navigation {
  width: 100%;
}

.primary-menu,
.primary-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  gap: 0;
}

.primary-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.primary-menu > li > a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  color: #29252a;
  font-size: 0.79rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.primary-menu > li:first-child > a {
  padding-left: 0;
  color: var(--hu-purple);
  font-weight: 700;
}

.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a,
.primary-menu > li > a:hover {
  border-bottom-color: var(--hu-purple);
  color: var(--hu-purple);
}

.primary-menu .sub-menu {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 9px 0;
  background: var(--hu-white);
  box-shadow: var(--hu-shadow);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  display: block;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 9px 18px;
  color: var(--hu-ink);
  font-size: 0.82rem;
  text-decoration: none;
}

.primary-menu .sub-menu a:hover {
  background: var(--hu-cream);
  color: var(--hu-purple);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--hu-purple);
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-toggle-bars {
  display: grid;
  width: 21px;
  gap: 4px;
}

.menu-toggle-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.header-search-panel {
  position: fixed;
  z-index: 1100;
  inset: 0;
  background: rgba(53, 17, 62, 0.97);
  color: var(--hu-white);
}

.header-search-panel[hidden] {
  display: none;
}

.header-search-inner {
  display: flex;
  min-height: 100%;
  align-items: center;
  gap: 16px;
}

.header-search-inner .search-form {
  flex: 1;
}

.header-search-inner .search-field {
  min-height: 62px;
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--hu-white);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.header-search-inner .search-field::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.header-search-inner .search-submit {
  min-height: 62px;
  padding-inline: 28px;
  background: var(--hu-gold);
  color: var(--hu-purple-dark);
}

.header-search-close {
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--hu-white);
}

/* Search */
.search-form {
  display: flex;
  width: 100%;
}

.search-field {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--hu-border);
  border-radius: 0;
  background: var(--hu-white);
  color: var(--hu-ink);
}

.search-submit {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--hu-purple);
  background: var(--hu-purple);
  color: var(--hu-white);
  font-weight: 700;
}

.search-submit:hover {
  background: var(--hu-purple-dark);
}

/* Homepage lead */
.home-lead-section {
  padding-top: clamp(38px, 5vw, 70px);
  background: var(--hu-white);
}

.home-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(270px, 0.85fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: start;
}

.featured-slider {
  position: relative;
  min-width: 0;
}

.featured-slides {
  /* min-height: 620px; */
}

.featured-slide[hidden] {
  display: none;
}

.featured-slide-image-link {
  display: block;
  overflow: hidden;
  background: var(--hu-soft);
  text-decoration: none;
}

.featured-slide-image {
  width: 100%;
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-slide-image-link:hover .featured-slide-image {
  transform: scale(1.018);
}

.featured-slide-copy {
  max-width: 820px;
  padding-top: 25px;
}

.post-meta-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 11px;
  color: var(--hu-muted);
}

.post-meta-line a {
  text-decoration: none;
}

.post-meta-divider {
  color: #aaa4a1;
}

.post-date {
  color: #777170;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.featured-slide-title {
  max-width: 930px;
  margin-bottom: 13px;
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.featured-slide-title a,
.news-card-title a,
.also-news-item h3 a,
.related-post-card h3 a,
.sidebar-recent-item h3 a,
.event-title a {
  text-decoration: none;
}

.featured-slide-title a:hover,
.news-card-title a:hover,
.also-news-item h3 a:hover,
.related-post-card h3 a:hover,
.sidebar-recent-item h3 a:hover,
.event-title a:hover {
  color: var(--hu-purple);
}

.featured-slide-excerpt {
  max-width: 760px;
  margin-bottom: 0;
  color: #5e5957;
  font-size: 1.02rem;
}

.featured-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 22px;
}

.slider-arrow {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--hu-border);
  background: var(--hu-white);
  color: var(--hu-purple);
}

.slider-arrow:hover {
  border-color: var(--hu-purple);
  background: var(--hu-purple);
  color: var(--hu-white);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c3bf;
}

.slider-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--hu-purple);
}

.also-news {
  min-width: 0;
}

.ruled-heading {
  padding-bottom: 10px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--hu-purple);
  color: var(--hu-purple);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.also-news-list {
  display: grid;
}

.also-news-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hu-border);
}

.also-news-item-featured {
  display: block;
  padding-top: 0;
}

.also-news-image-link {
  display: block;
  overflow: hidden;
  background: var(--hu-soft);
}

.also-news-image {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.also-news-item-featured .also-news-image {
  aspect-ratio: 16 / 9.6;
  margin-bottom: 15px;
}

.also-news-copy {
  min-width: 0;
}

.also-news-copy .post-category {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.63rem;
}

.also-news-item h3 {
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.28;
}

.also-news-item-featured h3 {
  font-size: 1.18rem;
}

.also-news-item time,
.sidebar-recent-item time,
.related-post-card time {
  color: #8a8481;
  font-size: 0.68rem;
}

/* Post cards */
.home-feature-cards {
  border-top: 1px solid var(--hu-border);
}

.three-card-grid,
.archive-grid,
.all-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.news-card {
  min-width: 0;
}

.news-card-image-link {
  display: block;
  overflow: hidden;
  background: var(--hu-soft);
  text-decoration: none;
}

.news-card-image {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: transform 400ms ease;
}

.news-card-image-link:hover .news-card-image {
  transform: scale(1.02);
}

.news-card-body {
  padding-top: 16px;
}

.news-card .post-meta-line {
  margin-bottom: 8px;
}

.news-card .post-category {
  font-size: 0.64rem;
}

.news-card-title {
  margin-bottom: 10px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.28;
}

.news-card-excerpt {
  margin-bottom: 0;
  color: #686260;
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Events */
.events-feature-section {
  background: var(--hu-cream);
  border-top: 1px solid var(--hu-border);
  border-bottom: 1px solid var(--hu-border);
}

.events-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}

.events-list {
  border-top: 1px solid var(--hu-border);
}

.event-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--hu-border);
}

.event-date {
  display: block;
  margin-bottom: 5px;
  color: var(--hu-purple);
  font-size: 0.74rem;
  font-weight: 700;
}

.event-title {
  margin-bottom: 5px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.event-details,
.events-empty {
  margin-bottom: 0;
  color: #77716d;
  font-size: 0.78rem;
}

.upcoming-events .text-link {
  display: inline-block;
  margin-top: 20px;
}

.static-feature img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  background: #dedbd6;
}

.static-feature figcaption {
  padding-top: 12px;
  color: #706a67;
  font-size: 0.76rem;
  line-height: 1.5;
}

/* All News */
.all-news-section {
  border-top: 3px solid var(--hu-purple);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.all-news-grid {
  row-gap: 52px;
}

.all-news-card {
  padding-top: 13px;
  border-top: 1px solid var(--hu-gold);
}

.all-news-grid[aria-busy="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.news-grid-empty {
  grid-column: 1 / -1;
  padding: 35px;
  background: var(--hu-cream);
  text-align: center;
}

.ajax-pagination,
.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 58px;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ajax-pagination a,
.navigation.pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--hu-border);
  background: var(--hu-white);
  color: var(--hu-ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.ajax-pagination .pagination-arrow {
  min-width: 82px;
}

.ajax-pagination a:hover,
.ajax-pagination .is-current,
.navigation.pagination .page-numbers:hover,
.navigation.pagination .current {
  border-color: var(--hu-purple);
  background: var(--hu-purple);
  color: var(--hu-white);
}

.ajax-pagination .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Archive and category */
.archive-hero,
.standard-page-header {
  padding-block: clamp(52px, 7vw, 86px);
  background: var(--hu-cream);
  border-bottom: 1px solid var(--hu-border);
}

.archive-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
}

.archive-heading-copy h1,
.standard-page-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.archive-description {
  max-width: 700px;
  margin-top: 18px;
  color: #5f5a58;
}

.archive-description > :last-child {
  margin-bottom: 0;
}

.category-filter-bar {
  overflow-x: auto;
  border-bottom: 1px solid var(--hu-border);
  background: var(--hu-white);
  scrollbar-width: thin;
}

.category-filter-inner {
  display: flex;
  min-width: max-content;
  align-items: center;
}

.category-filter-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 2px solid transparent;
  color: #4d4847;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}

.category-filter-link:first-child {
  padding-left: 0;
}

.category-filter-link:hover,
.category-filter-link.is-active {
  border-bottom-color: var(--hu-purple);
  color: var(--hu-purple);
}

.archive-grid {
  row-gap: 52px;
}

.archive-news-card {
  padding-top: 13px;
  border-top: 1px solid var(--hu-gold);
}

.navigation.pagination {
  margin-top: 58px;
}

/* Breadcrumbs */
.breadcrumb-wrap {
  padding-block: 18px;
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 8px;
  color: #7b7472;
  font-size: 0.72rem;
  white-space: nowrap;
}

.breadcrumbs a {
  color: var(--hu-purple);
  text-decoration: none;
}

.breadcrumbs span[aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Single post */
.single-post-entry {
  padding-bottom: clamp(70px, 8vw, 110px);
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 305px;
  gap: clamp(48px, 7vw, 78px);
  align-items: start;
}

.single-post-main {
  min-width: 0;
}

.single-featured-media {
  margin-bottom: 28px;
  overflow: hidden;
  background: var(--hu-soft);
}

.single-featured-image {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
}

.single-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.single-meta-row .post-meta-line {
  margin-bottom: 12px;
}

.content-type-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--hu-border);
  color: #77716e;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post-title {
  position: relative;
  padding-left: 18px;
  margin-bottom: 15px;
  font-size: clamp(2.15rem, 4.3vw, 3.55rem);
}

.single-post-title::before {
  content: "";
  position: absolute;
  top: 0.1em;
  bottom: 0.06em;
  left: 0;
  width: 3px;
  background: var(--hu-gold);
}

.single-post-deck {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hu-border);
  color: #66605e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-style: italic;
  line-height: 1.55;
}

.entry-content {
  color: #302d2d;
  font-size: 1rem;
  line-height: 1.78;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote,
.entry-content figure,
.entry-content table {
  margin-bottom: 1.45em;
}

.entry-content h2 {
  margin-top: 1.75em;
  font-size: 1.65rem;
}

.entry-content h3 {
  margin-top: 1.55em;
  font-size: 1.35rem;
}

.entry-content a {
  color: var(--hu-purple);
}

.entry-content blockquote {
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--hu-gold);
  color: #56504e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content img {
  height: auto;
}

.entry-content .alignwide {
  width: min(100vw - 40px, 1020px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 10px;
  border: 1px solid var(--hu-border);
  text-align: left;
}

.single-post-footer {
  padding-top: 32px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 18px;
  border-top: 1px solid var(--hu-border);
  border-bottom: 1px solid var(--hu-purple);
}

.share-label {
  margin-right: 6px;
  color: #8b8582;
}

.share-button {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--hu-purple);
  color: var(--hu-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}

.share-button:hover {
  background: var(--hu-purple-dark);
  color: var(--hu-white);
}

.share-x {
  background: #191919;
}

.related-posts {
  padding-top: 34px;
}

.related-posts > h2 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.related-post-image-link {
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--hu-soft);
}

.related-post-image {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.related-post-card h3 {
  margin: 5px 0 0;
  font-size: 0.86rem;
  line-height: 1.3;
}

/* Single sidebar */
.single-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 28px;
}

.sidebar-panel {
  border: 1px solid var(--hu-border);
  background: var(--hu-white);
}

.sidebar-panel-title {
  padding: 12px 16px;
  margin: -1px -1px 0;
  background: var(--hu-purple);
  color: var(--hu-white);
  font-family: Inter, sans-serif;
}

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

.topic-list li + li {
  border-top: 1px solid var(--hu-border);
}

.topic-list a {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 14px;
  color: #4d4846;
  font-size: 0.73rem;
  text-decoration: none;
}

.topic-list a:hover {
  background: var(--hu-cream);
  color: var(--hu-purple);
}

.topic-count {
  color: #9a9491;
  font-size: 0.65rem;
}

.sidebar-recent-list {
  padding: 8px 14px;
}

.sidebar-recent-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
}

.sidebar-recent-item + .sidebar-recent-item {
  border-top: 1px solid var(--hu-border);
}

.sidebar-recent-image-link {
  display: block;
  background: var(--hu-soft);
}

.sidebar-recent-image {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.sidebar-recent-item h3 {
  margin-bottom: 5px;
  font-size: 0.78rem;
  line-height: 1.28;
}

/* Standard pages and comments */
.standard-page-content {
  padding-block: clamp(48px, 7vw, 90px);
}

.comments-area {
  max-width: var(--hu-content);
  padding-top: 40px;
  margin: 40px auto 0;
  border-top: 1px solid var(--hu-border);
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-body {
  padding: 20px 0;
  border-bottom: 1px solid var(--hu-border);
}

.comment-meta {
  font-size: 0.8rem;
}

.comment-content {
  margin-top: 12px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--hu-border);
}

.comment-form input[type="submit"] {
  padding: 11px 20px;
  border: 1px solid var(--hu-purple);
  background: var(--hu-purple);
  color: var(--hu-white);
  font-weight: 700;
}

.empty-state {
  max-width: 720px;
  padding: clamp(50px, 8vw, 100px) 0;
  margin-inline: auto;
  text-align: center;
}

.empty-state h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.empty-state .search-form {
  max-width: 540px;
  margin: 28px auto;
}

/* Shared footer */
.site-footer {
  background: var(--hu-purple);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.82fr 1.35fr;
  gap: clamp(28px, 5vw, 62px);
  padding-block: clamp(52px, 7vw, 84px);
}

.footer-logo img {
  width: 190px;
}

.footer-address {
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  text-decoration: none;
}

.footer-social-links a:hover {
  color: var(--hu-gold);
}

.footer-heading {
  margin-bottom: 18px;
  color: var(--hu-gold);
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
}

.footer-menu,
.legal-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li {
  margin-bottom: 7px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-menu a:hover {
  color: var(--hu-gold);
}

.footer-newsletter > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.newsletter-form {
  display: grid;
  gap: 8px;
}

.newsletter-form input {
  width: 100%;
  min-height: 41px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.08);
  color: var(--hu-white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.newsletter-form button {
  min-height: 42px;
  border: 1px solid var(--hu-gold);
  background: var(--hu-gold);
  color: var(--hu-purple-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.newsletter-form button:hover {
  background: var(--hu-white);
  border-color: var(--hu-white);
}

.newsletter-status {
  margin: 3px 0 0;
  color: var(--hu-gold);
  font-size: 0.72rem;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.legal-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-menu a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.64rem;
  text-decoration: none;
}

.legal-menu a:hover {
  color: var(--hu-gold);
}

/* WordPress utilities */
.alignleft {
  float: left;
  margin: 0 1.5em 1em 0;
}

.alignright {
  float: right;
  margin: 0 0 1em 1.5em;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
  color: var(--hu-muted);
  font-size: 0.78rem;
}

.bypostauthor {
  display: block;
}

.sticky {
  position: relative;
}

/* Tablet */
@media (max-width: 1020px) {
  .header-social-links {
    display: none;
  }

  .primary-menu > li > a {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .home-lead-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.8fr);
    gap: 34px;
  }

  .featured-slides {
    min-height: 540px;
  }

  .single-post-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

/* Mobile navigation and stacked layouts */
@media (max-width: 820px) {
  .site-container {
    width: min(calc(100% - 30px), var(--hu-container));
  }

  .header-topbar,
  .header-topbar-inner {
    min-height: 72px;
  }

  .site-logo img {
    width: 170px;
    max-height: 50px;
  }

  .header-subscribe {
    display: none;
  }

  .primary-navigation-inner {
    min-height: 48px;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    min-height: 48px;
  }

  .primary-navigation {
    position: fixed;
    z-index: 1050;
    top: 120px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 10px 15px 40px;
    background: var(--hu-cream);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-menu {
    display: block;
  }

  .primary-menu > li {
    display: block;
    border-bottom: 1px solid var(--hu-border);
  }

  .primary-menu > li > a,
  .primary-menu > li:first-child > a {
    min-height: 48px;
    padding: 12px 4px;
    border: 0;
    font-size: 0.9rem;
  }

  .primary-menu .sub-menu {
    position: static;
    display: block;
    padding: 0 0 10px 15px;
    background: transparent;
    box-shadow: none;
  }

  .home-lead-layout,
  .events-feature-layout,
  .archive-hero-inner,
  .single-post-layout {
    grid-template-columns: 1fr;
  }

  .featured-slides {
    min-height: auto;
  }

  .also-news {
    padding-top: 12px;
  }

  .also-news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .also-news-item,
  .also-news-item-featured {
    display: block;
    padding: 0;
    border: 0;
  }

  .also-news-item .also-news-image {
    aspect-ratio: 1.45 / 1;
    margin-bottom: 12px;
  }

  .three-card-grid,
  .archive-grid,
  .all-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .single-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 24px;
  }

  .legal-menu {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .header-utilities {
    gap: 4px;
  }

  .featured-slide-title {
    font-size: 2rem;
  }

  .featured-slide-excerpt {
    font-size: 0.92rem;
  }

  .featured-slider-controls {
    justify-content: space-between;
  }

  .also-news-list,
  .three-card-grid,
  .archive-grid,
  .all-news-grid,
  .related-posts-grid,
  .single-sidebar,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .all-news-grid,
  .archive-grid {
    row-gap: 38px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .desktop-only-link {
    display: none;
  }

  .ajax-pagination {
    flex-wrap: wrap;
  }

  .pagination-pages {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .single-post-title {
    font-size: 2.1rem;
  }

  .single-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
  }

  .header-search-inner {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
  }

  .header-search-inner .search-form {
    flex: 0 0 auto;
  }

  .header-search-inner .search-field,
  .header-search-inner .search-submit {
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.slider-toggle {
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--hu-border);
  background: var(--hu-white);
  color: var(--hu-purple);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.slider-toggle:hover,
.slider-toggle[aria-pressed="true"] {
  border-color: var(--hu-purple);
  background: var(--hu-purple);
  color: var(--hu-white);
}
