.customer_page {
  --customer-primary: #0058b6;
  --customer-primary-soft: rgba(0, 88, 182, 0.08);
  --customer-border: #e5edf6;
  --customer-shadow: 0 22px 50px rgba(13, 43, 82, 0.08);
  margin: 1.5rem 0 8rem;
  padding: 0 0 1rem;
}

.customer_page__hero {
  max-width: 920px;
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 2.75rem 2rem 2.25rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 166, 0, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(0, 88, 182, 0.08);
  box-shadow: var(--customer-shadow);
}

.customer_page__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--customer-primary-soft);
  color: var(--customer-primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.customer_page h1 {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: #10253f;
}

.customer_page .contents {
  color: #5a708a;
}

.customer_page__intro {
  font-size: 1rem;
  line-height: 1.75;
}

.customer_page__intro p:last-child {
  margin-bottom: 0;
}

.customer_page .box {
  margin-bottom: 2rem;
  padding: 1.5rem 1.5rem 0.5rem;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--customer-border);
  box-shadow: 0 16px 36px rgba(15, 48, 87, 0.06);
}

.customer_page__section_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.6rem;
}

.customer_page .box h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--customer-primary);
  margin-bottom: 0.2rem;
}

.customer_page__section_head p {
  margin: 0;
  color: #71839a;
  font-size: 0.95rem;
}

.customer_page__grid {
  margin-top: 0.25rem;
}

.customer_page .box .item {
  margin: 10px 0 1.5rem;
}

.customer_page .box .item a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #24384d;
  text-decoration: none;
}

.customer_page .box .item a.is-static {
  cursor: default;
}

.customer_page .box .item a:hover .item__frame,
.customer_page .box .item a:focus-visible .item__frame {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(0, 88, 182, 0.14);
  border-color: rgba(0, 88, 182, 0.18);
}

.customer_page .box .item a:focus-visible {
  outline: none;
}

.customer_page .box .item a:focus-visible .item__name {
  color: var(--customer-primary);
}

.customer_page .box .item .item__frame {
  min-height: 168px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--customer-border);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(14, 38, 68, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.customer_page .box .item img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
  display: block;
}

.customer_page .box .item .item__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  min-height: 2.8em;
  transition: color 0.25s ease;
}

@media screen and (max-width: 992px) {
  .customer_page__hero {
    padding: 2.25rem 1.5rem 2rem;
  }

  .customer_page h1 {
    font-size: 2rem;
  }

  .customer_page .box {
    padding: 1.25rem 1.25rem 0.35rem;
  }
}

@media screen and (max-width: 668px) {
  .customer_page {
    margin: 1rem 0 5rem;
  }

  .customer_page__hero {
    border-radius: 24px;
    padding: 1.6rem 1rem 1.4rem;
    margin-bottom: 1.5rem;
  }

  .customer_page h1 {
    font-size: 1.6rem;
  }

  .customer_page__intro {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .customer_page .box {
    border-radius: 22px;
    padding: 1rem 1rem 0.2rem;
  }

  .customer_page .box h2 {
    font-size: 1.08rem;
  }

  .customer_page__section_head p {
    font-size: 0.84rem;
  }

  .customer_page .box .item {
    margin: 8px 0 1rem;
  }

  .customer_page .box .item .item__frame {
    min-height: 122px;
    padding: 14px;
    border-radius: 18px;
  }

  .customer_page .box .item img {
    max-height: 72px;
  }

  .customer_page .box .item .item__name {
    font-size: 0.85rem;
    min-height: 2.6em;
  }
}
