main {
  padding: var(--page-main-padding);
}

main .c-card {
  margin-bottom: var(--home-card-gap-bottom);
  padding: var(--home-card-padding);
}

.c-page-title {
  color: var(--color-primary-darker);
}

.c-meta-nav-inner {
  padding-left: 0;
}

.c-meta-nav-link {
  padding-right: 1rem;
  border-right: 1px solid var(--color-divider);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-primary-darker);
}

.c-nav + .l-banner {
  margin-top: 0;
}

.l-banner {
  margin-bottom: var(--banner-mb);
}

.page-home .l-banner {
  margin-bottom: var(--banner-mb-home);
}

.l-banner-media {
  height: var(--banner-media-h);
}

.l-banner-content {
  justify-content: flex-start;
  text-align: left;
  padding-right: var(--space-lg);
  padding-left: max(
    var(--space-md),
    calc((100vw - var(--container-max)) / 2 - clamp(0.5rem, 1vw, 1rem))
  );
}

.c-hero-panel {
  height: 100%;
  box-sizing: border-box;
  max-width: min(var(--hero-panel-maxw), 100%);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: var(--hero-panel-pad-y) var(--hero-panel-pad-x);
  background: var(--hero-panel-bg);
  box-shadow: var(--shadow-elevation-2);
  color: var(--hero-panel-text);
}

.c-hero-panel > div:last-child {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.c-hero-panel > div:last-child > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: var(--hero-cta-minw);
  height: var(--hero-cta-h);
  padding: 0 var(--hero-cta-px);

  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease,
    border-color 0.2s ease;
}

.c-hero-panel > div:last-child > a:first-child {
  background: var(--hero-cta-primary-bg);
  border: var(--hero-cta-border) solid var(--hero-cta-primary-border);
  color: var(--hero-cta-primary-text);
}

.c-hero-panel > div:last-child > a:nth-child(2) {
  background: var(--hero-cta-secondary-bg);
  border: var(--hero-cta-border) solid var(--hero-cta-secondary-border);
  color: var(--hero-cta-secondary-text);
}

.c-hero-panel > div:last-child > a:active {
  transform: translateY(1px);
}

.l-footer {
  background: var(--color-primary-darker);
  color: #fff;
  font-size: 12px;
  padding: 44px 0 80px;
}

.l-footer .l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "nav   nav"
    "copy  icons";
  gap: 18px 40px;
}

.l-footer nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 10px;

  font-weight: 700;
  letter-spacing: 0.02em;
}

.l-footer nav .c-footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;

  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.l-footer nav .c-footer-link:hover {
  color: #fff;
  opacity: 0.9;
}

.l-footer nav span {
  opacity: 0.55;
}

.l-footer .c-text-small {
  grid-area: copy;
  margin: 0;
  text-align: left;

  font-size: var(--fs-small);
  line-height: 1.75;
  opacity: 0.92;
}

.l-footer .c-footer-icons {
  grid-area: icons;
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 2px;
}

.l-footer .c-footer-icons a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.l-footer .c-footer-icons a:hover {
  color: #fff;
  opacity: 0.8;
}

.c-backtotop {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);

  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.c-backtotop::before {
  content: "▲";
  font-size: 10px;
  transform: translateY(-1px);
  opacity: 0.9;
}

.c-backtotop:hover {
  color: var(--color-primary-hover);
  opacity: 0.98;
}

.c-backtotop:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.l-footer p:last-child {
  margin: 0 !important;
  height: 0;
  overflow: visible;
}
.l-footer p:last-child > .c-footer-link {

  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 999;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);

  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.l-footer p:last-child > .c-footer-link::before {
  content: "▲";
  font-size: 10px;
  transform: translateY(-1px);
  opacity: 0.9;
}
.l-footer p:last-child > .c-footer-link:hover {
  color: var(--color-primary-hover);
  opacity: 0.98;
}
.l-footer p:last-child > .c-footer-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


.chair-card {
  margin-top: 2rem;
  padding: 2rem;
  border-top: 1px solid var(--color-divider);
}

.c-card__title {
  margin: 0 0 var(--space-lg);
  text-align: center;
  font-size: var(--fs-h3);
  letter-spacing: 0.01em;
}

.l-grid--auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  justify-items: center;
}

.c-person-card {
  max-width: 249px;
  width: 100%;
  padding: var(--space-xl);

  text-align: center;
  background: var(--surface-1, #fff);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevation-1);
}

.c-person-card__avatar {
  width: 9.5rem;
  height: 9.5rem;
  margin-bottom: var(--space-md);

  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.c-person-card__name {
  margin: 0;
  font-size: var(--fs-h4);
  font-weight: 600;
}

.c-person-card__affil {
  margin: 0.25rem 0 0;
  font-style: italic;
  opacity: 0.7;
}

.c-person-card__meta {
  margin: 0.25rem 0 0;
  font-size: var(--fs-small);
  opacity: 0.85;
}

.deadlines {
  display: grid;
  gap: var(--space-md, 1rem);
}

.deadline {
  padding: var(--space-md, 1rem) var(--space-lg, 1.25rem);
  background: var(--surface-2, #f5f6f8);
  border-radius: var(--radius-md, 12px);
}

.deadline__label {
  font-weight: 700;
  line-height: 1.25;
}

.deadline__value {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--color-primary);
}

.c-date--old {
  text-decoration: line-through;
  opacity: 0.75;
}

.c-card-subtitle {
  margin: var(--space-md) 0;
  padding: 0.5rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--color-divider);
}

.c-card img {
  width: 230px;
  padding: 1rem;
}

.Level-card p {
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-divider);
}

.c-card {
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.c-card-tag {
  position: absolute;
  top: -0.6rem;
  left: var(--space-lg, 1.25rem);

  padding: 0.25em 0.75em;
  border-radius: 999px;

  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-elevation-1, 0 4px 12px rgba(0, 0, 0, 0.15));
}

.c-card-tag--Diamond {
  background: linear-gradient(135deg, #e8f0ff 0%, #cfd8e6 55%, #f6fbff 100%);
  color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.c-card-tag--Platinum {
  background: linear-gradient(135deg, #dde1e6 0%, #b3b8bf 55%, #f2f4f7 100%);
  color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.c-card-tag--Gold {
  background: linear-gradient(135deg, #f7d77a 0%, #c9a227 55%, #ffe6a6 100%);
  color: rgba(15, 23, 42, 0.92);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .c-card--lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevation-3, 0 18px 45px rgba(0, 0, 0, 0.14));
  }

  .c-card--lift:active {
    transform: translateY(-2px);
  }
}

.c-card--lift:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevation-3, 0 18px 45px rgba(0, 0, 0, 0.14));
}

@media (prefers-reduced-motion: reduce) {
  .c-card--lift {
    transition: none;
  }

  .c-card--lift:hover,
  .c-card--lift:focus-within,
  .c-card--lift:active {
    transform: none;
  }
}

/* Notes */
.important-note {
  margin: 1rem 0;
  padding: 1rem;
  background: var(--meta-nav-bg);
  border-left: 5px solid var(--color-primary-darker);
}

.important-date {
  border-left: 5px solid var(--color-primary-darker);
  border-radius: 0;
}

.important-note p {
  border: 0;
}



@media (max-width: 720px) {
  article.c-card {
    margin-bottom: 0;
  }

  .l-sidebar {
    margin-top: 0;
    margin-bottom: 2rem;
  }

  .l-footer {
    padding: 16px 0 50px;
  }

  .l-footer .l-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "copy"
      "icons";
    gap: 14px;
  }

  .l-footer .c-footer-icons {
    justify-self: start;
    margin-top: 6px;
  }

  .c-backtotop,
  .l-footer p:last-child > .c-footer-link {
    left: 12px;
    bottom: 12px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .c-hero-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .c-hero-subtitle {
    font-size: 1rem;
    line-height: 1.2;
  }

  .c-hero-panel > div:last-child > a {
    height: var(--hero-cta-h-sm);
    padding: 0 var(--hero-cta-px-sm);
    font-size: var(--fs-small);
    font-weight: 600;
    border-width: var(--hero-cta-border-sm);
  }
}

.c-media-card {
  --card-aspect-ratio: 16 / 9;
  --card-height: 350px;
  --transition-speed: 0.4s;

  position: relative;
  overflow: hidden;
  height: var(--card-height);
  border-radius: 12px; 
  background: #eee url('./../../images/wasedacanvas.jpg') no-repeat center / cover;
}

.c-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  z-index: 1;
}

.c-media-card-caption {
  position: absolute;
  left: clamp(14px, 2.5vw, 28px);
  bottom: clamp(12px, 2.2vw, 22px);
  right: clamp(14px, 2.5vw, 28px); 
  z-index: 2;
  color: #fff;
}

.c-media-card {
  transition: transform 0.4s ease;
}

.c-media-card:hover {
  transform: translateY(-5px); 
}

.c-media-card-caption h3 {
  margin: 0;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.c-media-card-caption p {
  margin: 0.4rem 0 0;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
  opacity: 0.9;
}

.c-media img { 
  width: 100%;
  height: auto; 
  display: block;
  margin: 0 auto;
}

/* 响应式优化 */
@media (max-width: 480px) {
  .c-media-card {
    height: auto;
    aspect-ratio: 3 / 2; 
  }
}