@charset "utf-8";

:root {
  --abe-green: #007a53;
  --abe-green-deep: #005f43;
  --abe-green-soft: #e8f5ef;
  --abe-blue: #1f5f9f;
  --abe-sky: #4d91d8;
  --abe-gold: #d8a24a;
  --abe-bg: #f4f8f6;
  --abe-card: #ffffff;
  --abe-line: #dce8e3;
  --abe-text: #17233a;
  --abe-muted: #667085;
  --abe-shadow: 0 18px 44px rgba(0, 68, 48, .12);
  --abe-radius: 20px;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
td,
form,
input,
button,
textarea {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  line-height: 1.6;
  color: var(--abe-text);
  font-size: 15px;
  font-family: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(0, 122, 83, .12), transparent 28%),
    linear-gradient(180deg, #edf7f3 0, #ffffff 380px, var(--abe-bg) 100%);
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, opacity .2s ease, transform .2s ease;
}

a:hover {
  color: var(--abe-green);
}

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(0, 122, 83, .28);
  outline-offset: 3px;
}

.inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  color: rgba(255, 255, 255, .9);
  background: linear-gradient(90deg, var(--abe-green-deep), var(--abe-green), #1b6c9f);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .15);
}

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

.topbar-left {
  font-size: 13px;
  letter-spacing: .12em;
}

.topbar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.topbar a {
  color: rgba(255, 255, 255, .92);
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, .22), transparent 26%),
    linear-gradient(112deg, #ffffff 0, #eef8f3 42%, #dff1ea 100%);
}

.site-header:before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 440px;
  height: 300px;
  border-radius: 999px;
  background: rgba(0, 122, 83, .1);
  transform: rotate(-16deg);
}

.header-inner {
  position: relative;
  z-index: 1;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  max-height: 96px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 280px;
}

.site-search {
  min-width: 240px;
}

.site-search table {
  width: 100%;
  border-collapse: collapse;
}

.site-search td {
  padding: 0;
  vertical-align: middle;
}

.site-search input[type="text"],
.site-search .search-title,
.site-search .keyword {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 44px 0 16px;
  border: 1px solid rgba(0, 122, 83, .2);
  border-radius: 999px;
  color: var(--abe-text);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 26px rgba(0, 68, 48, .08);
}

.site-search .keyword {
  width: 100% !important;
}

.site-search input[type="submit"],
.site-search .search-submit,
.site-search .search {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: transparent;
  cursor: pointer;
  background: var(--abe-green);
}

.wp-search,
.wp_search {
  position: relative;
}

.wp-search .search-btn,
.wp_search .search-btn,
.wp-search .search,
.wp_search .search {
  position: absolute;
  right: 1px;
  top: 1px;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--abe-green);
  box-shadow: 0 12px 24px rgba(0, 68, 48, .18);
}

.nav-toggle span,
.nav-toggle:before,
.nav-toggle:after {
  content: "";
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span {
  top: 21px;
}

.nav-toggle:before {
  top: 15px;
}

.nav-toggle:after {
  top: 27px;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle:before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle:after {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: relative;
  z-index: 50;
  overflow: visible;
  background: linear-gradient(90deg, var(--abe-green-deep), var(--abe-green));
  box-shadow: 0 16px 34px rgba(0, 68, 48, .16);
}

.nav-inner {
  width: min(1880px, calc(100% - 48px));
  min-height: 54px;
  overflow: visible;
}

.menu,
.wp_nav,
.wp-menu {
  width: 100%;
  overflow: visible;
}

.wp_nav,
.wp-menu,
.menu > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  min-height: 54px;
  gap: 0;
}

.wp_nav li,
.wp-menu li,
.menu > ul > li {
  position: relative;
  overflow: visible !important;
  flex: 0 0 auto;
}

.nav-item,
.menu-link,
.wp_nav li a,
.wp-menu li a,
.menu > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 clamp(10px, 1vw, 17px);
  color: rgba(255, 255, 255, .94);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
}

.wp-menu .menu-item,
.wp-menu .sub-item {
  position: relative;
}

.wp-menu .menu-link {
  white-space: nowrap;
}

.wp_nav > li > a,
.wp-menu > li > a,
.menu > ul > li > a,
.wp_nav .item-name {
  white-space: nowrap;
}

.nav-item span {
  color: inherit;
}

.nav-item:hover,
.menu-link:hover,
.wp-menu .menu-item.hover > .menu-link,
.wp_nav li a:hover,
.wp-menu li a:hover,
.menu > ul > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.sub-menu,
.wp_nav .sub-nav {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  display: none;
  min-width: 190px;
  padding: 8px 0;
  border-radius: 14px;
  background: rgba(0, 95, 67, .96);
  box-shadow: 0 18px 38px rgba(0, 40, 30, .24);
}

.menu li:hover > .sub-menu,
.wp-menu .menu-item:hover > .sub-menu,
.wp-menu .menu-item.hover > .sub-menu,
.wp-menu .sub-item:hover > .sub-menu,
.wp-menu .sub-item.hover > .sub-menu,
.wp_nav li:hover > .sub-nav,
.wp_nav li:hover .sub-nav {
  display: block;
}

.sub-menu a,
.wp_nav .sub-nav a {
  display: block;
  position: relative;
  justify-content: flex-start;
  min-height: 38px;
  padding: 10px 30px 10px 18px;
  color: #fff;
  white-space: nowrap;
}

.sub-menu .sub-menu {
  left: 100%;
  top: -8px;
  min-width: 190px;
}

.sub-menu .sub-menu:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 8px;
  height: 100%;
}

.sub-menu a:hover,
.wp-menu .sub-item.hover > .sub-link {
  color: #fff;
  background: rgba(255, 255, 255, .13);
}

.menu-switch-arrow {
  display: none;
}

.home-hero {
  padding: 34px 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.feature-panel,
.news-panel,
.notice-panel,
.info-card,
.instrument-panel,
.col-menu,
.col-news-box,
.article-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 232, 227, .96);
  border-radius: var(--abe-radius);
  background: var(--abe-card);
  box-shadow: var(--abe-shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-panel:hover,
.news-panel:hover,
.notice-panel:hover,
.info-card:hover,
.instrument-panel:hover,
.col-menu:hover,
.col-news-box:hover,
.article-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 122, 83, .24);
  box-shadow: 0 26px 58px rgba(0, 68, 48, .16);
}

.section-head {
  position: relative;
  z-index: 2;
  min-height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--abe-line);
  background: rgba(255, 255, 255, .96);
}

.section-head h2 {
  position: relative;
  color: var(--abe-green-deep);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
}

.section-head h2:after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--abe-green), var(--abe-gold));
  transition: width .26s ease;
}

.feature-panel:hover .section-head h2:after,
.news-panel:hover .section-head h2:after,
.notice-panel:hover .section-head h2:after,
.info-card:hover .section-head h2:after,
.instrument-panel:hover .section-head h2:after {
  width: 54px;
}

.section-head.compact {
  min-height: 58px;
}

.section-head.compact h2 {
  font-size: 20px;
}

.more-link,
.more_btn,
.more_text {
  color: var(--abe-muted);
  font-size: 14px;
}

.more-link:hover,
.more_btn:hover {
  color: var(--abe-green);
}

.feature-slider {
  position: relative;
  min-height: 398px;
  overflow: hidden;
}

.feature-panel > .more,
.news-panel > .more,
.notice-panel > .more,
.info-card > .more,
.instrument-panel > .more {
  display: none;
}

.slider-list {
  position: relative;
  height: 398px;
}

.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.slider-item.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.slider-link {
  position: relative;
  display: block;
  height: 100%;
  color: #fff;
  background: #0b3a2b;
}

.slider-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #dbe8e3;
}

.slider-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 44, 32, .02) 0, rgba(0, 44, 32, .22) 42%, rgba(0, 36, 28, .82) 100%);
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.slider-item.is-active .slider-img img {
  animation: abeSlideZoom 5.2s ease both;
}

.slider-text {
  position: relative;
  z-index: 2;
  display: block;
  box-sizing: border-box;
  height: 100%;
  padding: 0 34px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slider-text strong {
  display: block;
  max-width: 88%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.32;
  font-weight: 800;
}

.slider-text em {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .82);
  font-style: normal;
}

.slider-text span {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.7;
}

.slider-text a,
.news-title a,
.notice-title a,
.article-title a,
.instrument-item strong a {
  display: inline;
  min-height: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.slider-item.is-active .slider-text strong,
.slider-item.is-active .slider-text em,
.slider-item.is-active .slider-text span {
  animation: abeTextRise .58s ease both;
}

.slider-item.is-active .slider-text em {
  animation-delay: .08s;
}

.slider-item.is-active .slider-text span {
  animation-delay: .14s;
}

.slider-control,
.instrument-control {
  position: absolute;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(0, 44, 32, .22);
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

.slider-control {
  top: 50%;
  transform: translateY(-50%);
}

.slider-control:hover,
.instrument-control:hover {
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 44, 32, .28);
}

.slider-control:before,
.instrument-control:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--abe-green);
  border-bottom: 2px solid var(--abe-green);
}

.slider-prev {
  left: 18px;
}

.slider-prev:before,
.instrument-prev:before {
  transform: translate(-35%, -50%) rotate(45deg);
}

.slider-next {
  right: 18px;
}

.slider-next:before,
.instrument-next:before {
  transform: translate(-65%, -50%) rotate(-135deg);
}

.slider-dots {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  transition: width .2s ease, background-color .2s ease, transform .2s ease;
}

.slider-dots button.is-active {
  width: 24px;
  background: #fff;
}

.news-panel,
.notice-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-list {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 22px 18px;
}

.card-list > div {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}

.card-list > ul,
.card-list > div > ul {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.news-list li,
.notice-list li,
.article-list li {
  position: relative;
  border-bottom: 1px dashed #d4e2dc;
}

.news-list li:last-child,
.notice-list li:last-child,
.article-list li:last-child {
  border-bottom: 0;
}

.news-list > li > a,
.article-list > li > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 43px;
  color: var(--abe-text);
}

.clean-list > li > a {
  grid-template-columns: minmax(0, 1fr);
}

.news-list > li > a:before,
.article-list > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--abe-green);
}

.news-title,
.notice-title,
.article-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 16px;
  font-size: 15px;
}

.news-list em,
.article-list time {
  color: var(--abe-muted);
  font-style: normal;
  font-size: 13px;
}

.static-list {
  height: 362px;
  overflow: hidden;
}

.notice-list > li > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 45px;
}

.notice-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  border-radius: 999px;
  color: var(--abe-green-deep);
  font-size: 12px;
  background: var(--abe-green-soft);
}

.notice-title {
  padding-left: 0;
}

.home-focus {
  padding: 2px 0 42px;
}

.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(420px, 1.4fr);
  gap: 22px;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 288px;
}

.instrument-panel {
  min-width: 0;
}

.instrument-carousel {
  position: relative;
  overflow: hidden;
  padding: 18px 14px 24px;
}

.instrument-track {
  display: flex;
  gap: 18px;
  transition: transform .46s cubic-bezier(.2, .74, .2, 1);
  will-change: transform;
}

.instrument-item {
  flex: 0 0 calc((100% - 18px) / 2);
  min-width: 0;
}

.instrument-item > a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: #0b3a2b;
  box-shadow: 0 12px 28px rgba(0, 68, 48, .16);
}

.instrument-img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dcebe5, #f4f8f6);
}

.instrument-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 36, 28, .72));
}

.instrument-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}

.instrument-item > a:hover img {
  transform: scale(1.045);
}

.instrument-item strong {
  display: block;
  min-height: 46px;
  padding: 12px 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  background: linear-gradient(90deg, var(--abe-green-deep), var(--abe-green));
}

.instrument-control {
  top: 50%;
  transform: translateY(-50%);
}

.instrument-prev {
  left: 14px;
}

.instrument-next {
  right: 14px;
}

.instrument-carousel.is-static .instrument-control {
  display: none;
}

.friend-links {
  padding: 0 0 28px;
  background: var(--abe-bg);
}

.friend-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 68, 48, .08);
}

.friend-inner strong {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: #fff;
  border-radius: 18px 0 0 18px;
  background: linear-gradient(135deg, var(--abe-green-deep), var(--abe-green));
}

.flinkbox {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 18px 12px 0;
}

.flinkbox a {
  color: var(--abe-muted);
  font-size: 14px;
}

.flinkbox a:hover {
  color: var(--abe-green);
}

.site-footer {
  color: rgba(255, 255, 255, .9);
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 255, 255, .1), transparent 24%),
    linear-gradient(118deg, #064632 0%, var(--abe-green-deep) 45%, #123a64 100%);
}

.footer-inner {
  min-height: 176px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-copy p {
  line-height: 1.9;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 32, 24, .24);
}

.footer-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner {
  padding: 34px 0 0;
}

.page-banner-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  box-sizing: border-box;
  padding: 42px 48px;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 89, 64, .9), rgba(28, 101, 151, .78)),
    url(../images/1.jpg) center/cover no-repeat;
  box-shadow: var(--abe-shadow);
}

.page-banner-card:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 300px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.page-banner-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .72);
}

.page-banner-card h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.page-main {
  padding: 28px 0 48px;
}

.page-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.col-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--abe-green-deep), var(--abe-green));
}

.col-menu-head h2 {
  font-size: 22px;
}

.column-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
}

.column-toggle:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 10px auto 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.col-menu-body {
  padding: 16px;
}

.wp-listcolumn li,
.col-menu-body table tr {
  border-bottom: 1px solid var(--abe-line);
}

.wp-listcolumn a,
.col-menu-body a,
.col-menu-body td {
  display: block;
  min-height: 46px;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--abe-text);
  font-size: 15px;
}

.wp-listcolumn a:hover,
.wp-listcolumn .selected,
.col-menu-body a:hover {
  color: var(--abe-green-deep);
  background: var(--abe-green-soft);
}

.sub-list {
  margin: 0 0 8px 12px;
  padding-left: 12px;
  border-left: 2px solid rgba(0, 122, 83, .12);
}

.sub-list .sub-item {
  border-bottom: 0;
}

.sub-list .sub-item-link {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--abe-muted);
}

.col-news-head {
  padding: 28px 34px 20px;
  border-bottom: 1px solid var(--abe-line);
}

.col-news-head .path {
  margin-bottom: 8px;
  color: var(--abe-muted);
  font-size: 14px;
}

.col-news-head h2 {
  color: var(--abe-green-deep);
  font-size: 30px;
}

.col-news-list {
  padding: 18px 34px 32px;
}

.article-list li {
  min-height: 54px;
}

.article-list > li > a {
  min-height: 54px;
  font-size: 16px;
}

.article-box {
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 56px 52px;
  box-sizing: border-box;
}

.article-heading {
  margin-bottom: 16px;
  color: var(--abe-green-deep);
  text-align: center;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.35;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #cfded8;
  color: var(--abe-muted);
  font-size: 14px;
}

.article-content {
  color: #243044;
  font-size: 17px;
  line-height: 2;
}

.article-content p,
.article-content div {
  margin-bottom: 1em;
  font-size: 17px;
  line-height: 2;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 22px auto;
  border-radius: 14px;
}

.article-actions {
  margin-top: 34px;
  text-align: center;
}

.article-actions button {
  min-width: 120px;
  height: 40px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--abe-green);
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px) scale(.98);
  filter: blur(2px);
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition: opacity .72s ease, transform .8s cubic-bezier(.18, .78, .24, 1), filter .72s ease;
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

@keyframes abeSlideZoom {
  from {
    transform: scale(1.075);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes abeTextRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-panel {
    grid-column: 1 / -1;
  }

  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instrument-panel {
    grid-column: 1 / -1;
  }

  .wp_nav,
  .wp-menu,
  .menu > ul {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .wp_nav > li > a,
  .wp-menu .menu-link,
  .menu > ul > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (max-width: 900px) {
  .inner {
    width: min(100% - 32px, 1400px);
  }

  .header-inner {
    min-height: 112px;
  }

  .brand img {
    max-height: 74px;
  }

  .header-actions {
    min-width: 0;
  }

  .site-search {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .nav-open .site-nav {
    display: block;
  }

  .wp_nav,
  .wp-menu,
  .menu > ul {
    display: block;
    min-height: 0;
    padding: 8px 0;
  }

  .wp_nav li,
  .wp-menu li,
  .menu > ul > li {
    display: block;
  }

  .nav-item,
  .menu-link,
  .wp_nav li a,
  .wp-menu li a,
  .menu > ul > li > a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 18px;
  }

  .sub-menu,
  .wp_nav .sub-nav {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    min-width: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, .08);
  }

  .hero-grid,
  .focus-grid,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel,
  .instrument-panel {
    grid-column: auto;
  }

  .column-toggle {
    display: block;
  }

  .col-menu-body {
    display: none;
  }

  .column-open .col-menu-body {
    display: block;
  }
}

@media (max-width: 640px) {
  .topbar-left {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-links {
    justify-content: center;
  }

  .home-hero {
    padding-top: 20px;
  }

  .section-head {
    min-height: 58px;
    padding: 0 18px;
  }

  .section-head h2 {
    font-size: 19px;
  }

  .feature-slider,
  .slider-list {
    min-height: 0;
    height: auto;
  }

  .slider-list {
    aspect-ratio: 4 / 3;
  }

  .slider-text {
    padding: 0 20px 24px;
  }

  .slider-text strong {
    max-width: calc(100% - 56px);
    font-size: 20px;
  }

  .slider-text span {
    display: none;
  }

  .card-list,
  .static-list {
    height: auto;
  }

  .card-list > ul {
    gap: 0;
  }

  .instrument-carousel {
    padding: 16px 14px 22px;
  }

  .instrument-item {
    flex-basis: 100%;
  }

  .friend-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .friend-inner strong {
    width: 100%;
    box-sizing: border-box;
    min-height: 50px;
    border-radius: 18px 18px 0 0;
  }

  .flinkbox {
    padding: 0 18px 16px;
  }

  .footer-inner {
    padding: 32px 0;
  }

  .page-banner-card {
    min-height: 142px;
    padding: 32px 24px;
  }

  .col-news-head,
  .col-news-list,
  .article-box {
    padding-left: 22px;
    padding-right: 22px;
  }

  .article-box {
    padding-top: 34px;
  }
}

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