.hero-copy h1 {
    margin: 0;
    font-size: 50px;
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: 0;
    color: white;
}
.hero-copy p {
    margin: 26px 0 0;
    max-width: 760px;
    color: white;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 600;
}
body.brand-page {
  background: #fff;
}

.brand-main {
  /* padding-top: 98px; */
  padding-bottom: 56px;
}

.brand-board {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  min-height: 720px;
}

.brand-panel {
  position: relative;
  min-height: 720px;
}

.brand-panel-light {
  padding: 108px 90px 210px;
  background: #fff;
  color: #111;
  overflow: hidden;
}

.brand-panel-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.brand-panel-light:nth-child(1)::before {
  background-image:
    linear-gradient(180deg, rgba(6, 23, 56, 0.14), rgba(6, 23, 56, 0.72)),
    url('static/images/品牌全案-3-品牌运营.png');
}

.brand-panel-light:nth-child(2)::before {
  background-image:
    linear-gradient(180deg, rgba(6, 23, 56, 0.14), rgba(6, 23, 56, 0.72)),
    url('static/images/品牌全案-4-营销传播.png');
}
.brand-panel-light:nth-child(3)::before {
  background-image:
    linear-gradient(180deg, rgba(6, 23, 56, 0.14), rgba(6, 23, 56, 0.72)),
    url('static/images/品牌全案-4-营销传播.png');
}

.brand-panel-dark {
  display: flex;
  flex-direction: column;
  background: #061738;
  color: #fff;
  overflow: hidden;
}

.brand-icon {
  position: relative;
  z-index: 1;
  color: #1859c9;
  width: 78px;
  height: 78px;
}

.brand-icon img {
  position: absolute;
  inset: 0;
  width: 78px;
  height: 78px;
  object-fit: contain;
  transition: opacity 0.24s ease;
}

.brand-icon-default {
  opacity: 1;
}

.brand-icon-active {
  opacity: 0;
}

.brand-panel:hover .brand-icon-default,
.brand-panel.is-selected .brand-icon-default {
  opacity: 0;
}

.brand-panel:hover .brand-icon-active,
.brand-panel.is-selected .brand-icon-active {
  opacity: 1;
}

.brand-icon-white {
  color: #fff;
}

.brand-panel h1,
.brand-panel h2 {
  position: relative;
  z-index: 1;
  margin: 56px 0 4px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
}

.brand-en {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #1e293b;
}

.brand-panel-dark .brand-en {
  color: rgba(255, 255, 255, 0.92);
}

.brand-divider {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 14px;
  margin: 128px 0 18px;
  background: #1c59c7;
}

.brand-divider-light {
  background: #fff;
}

.brand-note {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  color: #666;
}

.brand-notes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.brand-panel-dark .brand-note {
  color: rgba(255, 255, 255, 0.96);
}

.brand-index {
  position: static;
  z-index: 1;
  font-size: 60px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  color: #666;
}

.brand-panel-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  min-height: 112px;
  padding: 52px 48px 34px 90px;
  border-radius: 0;
  background: transparent;
  transition: background 0.24s ease, box-shadow 0.24s ease;
}

.brand-hover-more {
  position: static;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid #c9ced6;
  background: transparent;
  color: #7c8694;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.brand-hover-more::after {
  content: "\3009";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.brand-panel-light:hover::before,
.brand-panel-light.is-selected::before {
  opacity: 1;
}

.brand-panel:hover .brand-hover-more,
.brand-panel.is-selected .brand-hover-more {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.brand-panel:hover .brand-panel-bottom,
.brand-panel.is-selected .brand-panel-bottom {
  background: linear-gradient(135deg, #257eff, #1fbfff);
  box-shadow: 0 18px 34px rgba(31, 127, 255, 0.22);
}

.brand-panel:hover .brand-hover-more,
.brand-panel.is-selected .brand-hover-more {
  border-color: rgba(255, 255, 255, 0.92);
  color: #fff;
}

.brand-panel:hover .brand-icon,
.brand-panel.is-selected .brand-icon,
.brand-panel:hover h1,
.brand-panel.is-selected h1,
.brand-panel:hover h2,
.brand-panel.is-selected h2,
.brand-panel:hover .brand-en,
.brand-panel.is-selected .brand-en,
.brand-panel:hover .brand-note,
.brand-panel.is-selected .brand-note,
.brand-panel:hover .brand-index,
.brand-panel.is-selected .brand-index {
  color: #fff;
}

.brand-panel:hover .brand-divider,
.brand-panel.is-selected .brand-divider {
  background: #fff;
}

.brand-index span {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  margin-left: 2px;
}

.brand-index-light {
  position: static;
  color: #fff;
}

.brand-panel-image {
  width: 100%;
  height: 69%;
  object-fit: cover;
  display: block;
}

.brand-panel-overlay {
  position: absolute;
  inset: 56px 40px auto 40px;
  z-index: 1;
}

.brand-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 34px 38px 36px;
  background: linear-gradient(90deg, #257eff, #1fbfff);
}

.brand-panel-dark.is-selected {
  box-shadow: 0 28px 60px rgba(7, 26, 70, 0.22);
}

.brand-panel-dark.is-selected .brand-panel-image {
  content: normal;
}

.brand-panel-dark .brand-icon,
.brand-panel-dark h2,
.brand-panel-dark .brand-en,
.brand-panel-dark .brand-note,
.brand-panel-dark .brand-index {
  color: #fff;
}

.brand-panel-dark .brand-divider {
  background: #fff;
}

.brand-panel-dark .brand-panel-overlay h2 {
  margin-top: 34px;
  font-size: 54px;
}

.brand-panel-dark .brand-note {
  font-size: 18px;
  line-height: 1.5;
}

.brand-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.brand-more::after {
  content: "\3009";
  margin-left: 8px;
  font-size: 15px;
}

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

  .brand-panel-dark {
    grid-column: 1 / -1;
    min-height: 680px;
  }

  .brand-panel-image {
    height: 100%;
  }

  .brand-panel-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 760px) {
	.hero-copy h1 {
		width: 100%;
		color: black;
	    text-align: center;
		width: min(var(--container), calc(100% - 28px));
		padding: 0;
		display: flex;
		justify-content: center;
		font-size: 24px;
	}
	.hero-copy {
	        width: 100%;
	        max-width: none;
	        padding-left: 0;
	    }
	.hero-inner {
        width: min(var(--container), calc(100% - 28px));
        padding: 24px 0 34px;
    }
  .brand-main {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .brand-board {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .brand-panel,
  .brand-panel-dark {
    min-height: auto;
  }

  .brand-panel-light {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    padding: 28px 18px 28px;
    border-radius: 18px;
  }

  .brand-panel-light.is-selected::before {
    opacity: 1;
  }

  .brand-panel-light.is-selected .brand-icon,
  .brand-panel-light.is-selected h1,
  .brand-panel-light.is-selected h2,
  .brand-panel-light.is-selected .brand-en,
  .brand-panel-light.is-selected .brand-note,
  .brand-panel-light.is-selected .brand-index {
    color: #fff;
  }

  .brand-panel-light.is-selected .brand-divider {
    background: #fff;
  }

  .brand-icon img{
    inset: 0;
    width: 56px;
    height: 56px;
  }

  .brand-icon {
    width: 56px;
    height: 56px;
  }

  .brand-panel h1,
  .brand-panel h2 {
    margin-top: 28px;
    font-size: 28px;
  }

  .brand-en {
    font-size: 14px;
  }

  .brand-divider {
    width: 46px;
    height: 10px;
    margin-top: 34px;
    margin-bottom: 16px;
  }

  .brand-note {
    font-size: 14px;
    line-height: 1.65;
  }

  .brand-notes {
    gap: 4px;
  }

  .brand-index {
    margin-top: auto;
    font-size: 34px;
  }

  .brand-panel-bottom {
    position: static;
    margin-top: auto;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .brand-panel-light.is-selected .brand-hover-more {
    position: static;
    margin-top: 14px;
    min-width: 118px;
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .brand-hover-more::after {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .brand-index span {
    font-size: 16px;
  }

  .brand-panel-dark {
    min-height: 420px;
  }

  .brand-panel-overlay {
    inset: 24px 18px auto 18px;
  }

  .brand-panel-dark .brand-panel-overlay h2 {
    margin-top: 22px;
    font-size: 28px;
  }

  .brand-panel-dark .brand-note {
    font-size: 14px;
  }

  .brand-panel-footer {
    padding: 18px;
  }

  .brand-more {
    min-width: 96px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 14px;
  }
}
