:root {
  --uoeh-primary: #2b8cee;
  --uoeh-primary-dark: #2478d0;
  --uoeh-primary-deep: #0c4a6e;
  --uoeh-primary-soft: rgba(43, 140, 238, 0.1);
  --uoeh-accent: #06b6d4;
  --uoeh-text: #1e293b;
  --uoeh-text-soft: #64748b;
  --uoeh-surface: #ffffff;
  --uoeh-surface-soft: #f8fafc;
  --uoeh-border: #e2e8f0;
  --uoeh-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  --uoeh-radius-lg: 24px;
  --uoeh-radius-xl: 32px;
  --uoeh-width: 1200px;
  --uoeh-header-width: 1280px;
  --uoeh-width-narrow: 1024px;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: var(--uoeh-surface-soft);
  color: var(--uoeh-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-mobile-nav-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.site-header__inner,
.site-footer__inner {
  width: min(100% - 32px, var(--uoeh-width));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--uoeh-header-width));
  min-height: 80px;
  padding: 0 32px;
}

.site-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-branding__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(43, 140, 238, 0.1);
  color: var(--uoeh-primary);
}

.site-branding__icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-branding__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-branding__eyebrow {
  color: var(--uoeh-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-branding__title {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.site-navigation__list,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
}

.site-navigation {
  margin-left: auto;
}

.site-navigation__list {
  gap: 24px;
  flex-wrap: nowrap;
}

.site-navigation__list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-footer__links a {
  color: var(--uoeh-text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-navigation__list .current-menu-item > a,
.site-navigation__list .current_page_item > a,
.site-navigation__list .menu-item.is-current > a {
  color: var(--uoeh-primary);
}

.site-navigation__list > .menu-item--cta > a,
.site-navigation__list > .menu-item:last-child:not(:first-child) > a {
  justify-content: center;
  min-height: 36px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--uoeh-primary);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.1),
    0 1px 2px rgba(15, 23, 42, 0.06);
  color: #fff;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-navigation__list a:hover,
.site-footer__links a:hover {
  color: var(--uoeh-primary);
}

.site-navigation__list > .menu-item--cta > a:hover,
.site-navigation__list > .menu-item:last-child:not(:first-child) > a:hover {
  color: #fff;
  background: var(--uoeh-primary-dark);
  transform: scale(1.05);
}

.site-menu-toggle {
  position: relative;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #475569;
  cursor: pointer;
}

.site-menu-toggle:hover {
  background: #f8fafc;
}

.site-menu-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.site-menu-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.is-menu-open .site-menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-shell {
  display: none;
}

.site-mobile-shell__backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  border: 0;
  background: rgba(15, 23, 42, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  height: 100dvh;
  flex-direction: column;
  background: #fff;
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.site-mobile-nav__header {
  border-bottom: 1px solid var(--uoeh-border);
  background: rgba(255, 255, 255, 0.95);
  padding: 16px;
  backdrop-filter: blur(12px);
}

.site-mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.site-mobile-nav__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.site-mobile-nav__brand-mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(43, 140, 238, 0.1);
  color: var(--uoeh-primary);
}

.site-mobile-nav__brand-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-mobile-nav__brand-title {
  overflow: hidden;
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-mobile-nav__close {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--uoeh-border);
  border-radius: 999px;
  background: #fff;
  color: #475569;
}

.site-mobile-nav__close-icon,
.site-mobile-nav__chevron,
.site-mobile-nav__contact-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-mobile-nav__cta {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--uoeh-primary);
  box-shadow:
    0 1px 3px rgba(15, 23, 42, 0.1),
    0 1px 2px rgba(15, 23, 42, 0.06);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-mobile-nav__cta:hover {
  background: var(--uoeh-primary-dark);
  transform: scale(1.01);
}

.site-mobile-nav__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 16px calc(env(safe-area-inset-bottom) + 1.5rem);
}

.site-mobile-nav__body > section + section {
  margin-top: 32px;
}

.site-mobile-nav__section-label,
.site-mobile-nav__contact-label {
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-mobile-nav__primary-list {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.site-mobile-nav__primary-link {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  border-radius: 12px;
  padding: 0 16px;
  color: #334155;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.site-mobile-nav__primary-link:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.site-mobile-nav__primary-rail {
  position: absolute;
  left: 4px;
  top: 50%;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: transparent;
  transform: translateY(-50%);
  transition: background-color 0.2s ease;
}

.site-mobile-nav__primary-link:hover .site-mobile-nav__primary-rail {
  background: #cbd5e1;
}

.site-mobile-nav__primary-text {
  padding-left: 12px;
}

.site-mobile-nav__groups {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.site-mobile-nav__group-card {
  border: 1px solid var(--uoeh-border);
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.7);
  padding: 16px;
}

.site-mobile-nav__group-title {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 700;
}

.site-mobile-nav__group-list {
  display: grid;
  gap: 6px;
  list-style: none;
  margin: 12px 0 0;
}

.site-mobile-nav__group-link {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0 12px;
  color: #334155;
  font-size: 0.875rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.site-mobile-nav__group-link:hover {
  background: #fff;
  color: #0f172a;
}

.site-mobile-nav__chevron {
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

.site-mobile-nav__meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.site-mobile-nav__meta-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--uoeh-border);
  border-radius: 999px;
  padding: 0 16px;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.site-mobile-nav__meta-link:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.site-mobile-nav__contact {
  margin-top: 32px;
  border-radius: 16px;
  background: #0f172a;
  padding: 16px;
  color: #fff;
}

.site-mobile-nav__contact-title {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-mobile-nav__contact-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  border-radius: 8px;
  background: #1e293b;
  padding: 0 12px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}

.site-mobile-nav__contact-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-mobile-nav__contact-icon--map {
  flex: 0 0 auto;
  margin-top: 2px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--uoeh-border);
  background:
    radial-gradient(circle at top right, rgba(63, 186, 209, 0.12), transparent 34%),
    linear-gradient(135deg, #f7fbfc, #eef6f9);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.site-footer__title {
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer__copy {
  margin-top: 4px;
  color: var(--uoeh-text-soft);
  font-size: 0.82rem;
}

.archive-page__inner,
.news-breadcrumbs__inner,
.news-layout {
  width: min(100% - 32px, var(--uoeh-width));
  margin: 0 auto;
}

.archive-page {
  padding: 48px 0 64px;
}

.archive-page__header {
  margin-bottom: 32px;
}

.archive-page__eyebrow {
  color: var(--uoeh-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.archive-page__title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
}

.archive-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  list-style: none;
}

.post-card__link,
.news-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--uoeh-border);
  border-radius: var(--uoeh-radius-lg);
  background: var(--uoeh-surface);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.post-card__link:hover,
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 114, 133, 0.22);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.post-card__media,
.news-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8e8ed;
}

.post-card__image,
.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body,
.news-card__body {
  padding: 24px;
}

.post-card__date {
  color: var(--uoeh-text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.post-card__title,
.news-card__title {
  margin: 10px 0 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.post-card__excerpt,
.news-card__excerpt {
  margin-top: 12px;
  color: var(--uoeh-text-soft);
  font-size: 0.95rem;
}

.archive-page__pagination {
  margin-top: 32px;
}

.archive-page__pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--uoeh-border);
  border-radius: 999px;
  background: var(--uoeh-surface);
  font-size: 0.92rem;
  font-weight: 700;
}

.archive-page__pagination .page-numbers.current {
  border-color: var(--uoeh-primary);
  background: var(--uoeh-primary);
  color: #fff;
}

.archive-page__empty {
  padding: 32px;
  border: 1px solid var(--uoeh-border);
  border-radius: var(--uoeh-radius-lg);
  background: var(--uoeh-surface);
  text-align: center;
}

.news-page {
  background: var(--uoeh-surface);
}

.news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--uoeh-border);
}

.news-hero__media {
  position: relative;
  height: 280px;
  background: #cbd5e1;
}

.news-hero__image,
.news-hero__fallback,
.news-hero__overlay,
.news-hero__glow {
  position: absolute;
  inset: 0;
}

.news-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero__fallback {
  background:
    linear-gradient(90deg, rgba(12, 74, 110, 0.55), rgba(43, 140, 238, 0.35), rgba(6, 182, 212, 0.3)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 42%);
}

.news-hero__overlay {
  background: linear-gradient(90deg, rgba(12, 74, 110, 0.55), rgba(43, 140, 238, 0.35), rgba(6, 182, 212, 0.3));
}

.news-hero__glow {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.24), transparent 42%);
}

.news-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  width: 100%;
  padding: 0 16px;
}

.news-hero__panel {
  width: min(100%, 768px);
  padding: 28px 32px;
  border-left: 4px solid var(--uoeh-primary);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 20px 25px -5px rgba(15, 23, 42, 0.1),
    0 8px 10px -6px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(4px);
  text-align: center;
}

.news-hero__title {
  margin: 0;
  color: #0f172a;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-hero__subtitle {
  margin-top: 8px;
  color: var(--uoeh-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.news-breadcrumbs {
  border-bottom: 1px solid var(--uoeh-border);
  background: #fff;
}

.news-breadcrumbs__inner {
  padding: 14px 0;
}

.news-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  color: var(--uoeh-text-soft);
  font-size: 0.78rem;
  margin: 0;
}

.news-breadcrumbs__item a {
  transition: color 0.2s ease;
}

.news-breadcrumbs__item a:hover {
  color: var(--uoeh-primary);
}

.news-breadcrumbs__item.is-current {
  max-width: min(100%, 560px);
  overflow: hidden;
  color: #475569;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-layout {
  padding: 56px 0 0;
}

.news-layout__section + .news-layout__section {
  margin-top: 56px;
}

.news-article {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--uoeh-border);
  border-radius: var(--uoeh-radius-xl);
  background: #fff;
  box-shadow: var(--uoeh-shadow);
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.news-pill--primary {
  background: var(--uoeh-primary);
  color: #fff;
}

.news-pill--muted {
  background: #eef4f8;
  color: #475569;
}

.news-date {
  color: var(--uoeh-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-article__title {
  margin: 20px 0 0;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.45;
}

.news-article__lead {
  margin-top: 20px;
  color: var(--uoeh-text-soft);
  font-size: 1rem;
}

.news-featured {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--uoeh-border);
  border-radius: 24px;
  background: #eef4f8;
}

.news-featured__image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.news-article__content-grid {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.content-copy > * + * {
  margin-top: 1.3em;
}

.content-copy p {
  color: #334155;
  font-size: 1rem;
}

.content-copy h2,
.content-copy h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2.2em;
  margin-bottom: 0;
  color: #0f172a;
  line-height: 1.45;
}

.content-copy h2::before,
.content-copy h3::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 6px;
  height: 32px;
  border-radius: 999px;
  background: var(--uoeh-primary);
}

.content-copy h2 {
  font-size: 1.7rem;
}

.content-copy h3 {
  font-size: 1.35rem;
}

.content-copy ul,
.content-copy ol {
  padding-left: 1.4em;
}

.content-copy li + li {
  margin-top: 0.5em;
}

.content-copy blockquote {
  margin: 1.75em 0 0;
  padding: 20px 24px;
  border: 1px solid #cfe6ee;
  border-radius: 20px;
  background: #f3fbfd;
  color: #0f3f5c;
}

.content-copy .wp-block-image,
.content-copy .wp-block-group,
.content-copy .wp-block-columns {
  margin-top: 1.75em;
}

.news-sidebar {
  align-self: start;
}

.news-info-panel {
  padding: 24px;
  border: 1px solid var(--uoeh-border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(241, 245, 249, 0.84));
}

.news-info-panel__eyebrow,
.news-links__eyebrow,
.news-cta__eyebrow {
  color: var(--uoeh-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.news-info-panel__title,
.news-note-card__title {
  margin: 8px 0 0;
  font-size: 1.3rem;
  line-height: 1.4;
}

.news-info-panel__list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.news-info-panel__card,
.news-summary__item,
.news-note-card__item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.news-info-panel__label {
  color: var(--uoeh-text-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.news-info-panel__value {
  margin-top: 8px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 800;
}

.news-info-panel__description {
  margin-top: 8px;
  color: var(--uoeh-text-soft);
  font-size: 0.8rem;
}

.news-summary,
.news-cta {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(11, 114, 133, 0.12);
  border-radius: var(--uoeh-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(63, 186, 209, 0.16), transparent 32%),
    linear-gradient(135deg, #edf9fd, #fff 48%, #eefcf7);
}

.news-summary {
  margin-top: 40px;
}

.news-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-section-title__bar {
  display: block;
  flex: 0 0 auto;
  width: 6px;
  height: 32px;
  border-radius: 999px;
  background: var(--uoeh-primary);
}

.news-section-title h2,
.news-cta__title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.35;
}

.news-summary__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.news-summary__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.news-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(11, 114, 133, 0.12);
  color: var(--uoeh-primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.news-note-card {
  margin-top: 40px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--uoeh-border);
  border-radius: var(--uoeh-radius-xl);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(241, 245, 249, 0.84));
}

.news-note-card__description,
.news-cta__description {
  margin-top: 16px;
  color: var(--uoeh-text-soft);
}

.news-note-card__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.news-links {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--uoeh-border);
}

.news-links__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.news-links__item {
  color: var(--uoeh-text-soft);
}

.news-pagination {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.news-pagination__link,
.news-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 16px 20px;
  border: 1px solid var(--uoeh-border);
  border-radius: 18px;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.news-pagination__link:hover,
.news-cta__button:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 114, 133, 0.22);
  color: var(--uoeh-primary);
}

.news-pagination__link--primary,
.news-cta__button--primary {
  border-color: transparent;
  background: var(--uoeh-primary);
  color: #fff;
}

.news-pagination__link--primary:hover {
  border-color: transparent;
  background: var(--uoeh-primary-dark);
  color: #fff;
}

.news-cta__button--primary:hover {
  border-color: transparent;
  background: #0a6474;
  color: #fff;
}

.news-pagination__link--next {
  justify-content: space-between;
  text-align: right;
}

.news-pagination__link:not(.news-pagination__link--next):not(.news-pagination__link--primary) {
  justify-content: flex-start;
}

.news-pagination__spacer {
  display: none;
}

.news-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.news-cta__inner {
  text-align: center;
}

.news-cta__description {
  width: min(100%, 760px);
  margin-right: auto;
  margin-left: auto;
}

.news-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.news-cta__button {
  min-width: 220px;
}

@media (min-width: 980px) {
  .news-article__content-grid.has-sidebar {
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
    align-items: start;
  }

  .news-pagination {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }

  .news-pagination__link,
  .news-pagination__spacer {
    flex: 1 1 0;
  }

  .news-pagination__link--primary {
    flex: 0 0 240px;
  }

  .news-pagination__spacer {
    display: block;
  }
}

@media (max-width: 900px) {
  .archive-page__grid,
  .news-related__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1023px) {
  .site-navigation--desktop {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    gap: 16px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-mobile-shell {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    pointer-events: none;
  }

  .site-header.is-menu-open .site-mobile-shell {
    pointer-events: auto;
  }

  .site-header.is-menu-open .site-mobile-shell__backdrop {
    opacity: 1;
  }

  .site-header.is-menu-open .site-mobile-nav {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 639px) {
  .site-header__inner,
  .site-footer__inner,
  .archive-page__inner,
  .news-breadcrumbs__inner,
  .news-layout {
    width: min(100% - 24px, var(--uoeh-width));
  }

  .site-navigation__list,
  .site-footer__links {
    gap: 12px;
  }

  .site-header__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .news-breadcrumbs__item.is-current {
    max-width: min(100%, 220px);
  }

  .news-summary__item {
    flex-direction: column;
  }

  .news-pagination__link,
  .news-cta__button {
    min-height: 56px;
    padding: 14px 16px;
  }

  .news-cta__button {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 640px) {
  .site-mobile-nav__header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .site-mobile-nav__body {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .news-hero__media,
  .news-hero__inner {
    height: 340px;
  }

  .news-hero__panel {
    padding: 36px 48px;
  }

  .news-hero__title {
    font-size: 2.25rem;
  }

  .news-hero__subtitle {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .site-mobile-shell {
    display: none !important;
  }
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
