/* ─── 品牌活动页样式 ─── */

#page-brand .header-section {
  width: 100%;
  padding: 20rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

#page-brand .activities-section {
  width: 100%;
  padding: 80rem 30rem 120rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.section-title {
  font-size: 36rem;
  font-weight: 700;
  letter-spacing: 2rem;
  color: #FFFFFF;
  text-shadow: 0 2rem 8rem rgba(0,0,0,0.3);
  text-align: center;
  margin-top: 40rem;
  margin-bottom: 20rem;
  padding-right: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12rem;
}

.section-title::before,
.section-title::after {
  content: '';
  width: 40rem;
  height: 2rem;
  background: linear-gradient(90deg, transparent, rgba(129, 199, 132, 0.6), transparent);
}

/* 品牌活动列表 */
.brand-list {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  padding: 0 30rem;
  padding-bottom: calc(env(safe-area-inset-bottom) + 120rem);
  width: 100%;
  box-sizing: border-box;
}

.brand-item {
  display: flex;
  align-items: center;
  background: rgba(0, 100, 0, 0.5);
  border-radius: 20rem;
  padding: 20rem;
  border: 2rem solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-item:active {
  transform: scale(0.98);
  background: rgba(0, 100, 0, 0.65);
}

.brand-cover {
  width: 120rem;
  height: 120rem;
  border-radius: 16rem;
  flex-shrink: 0;
  border: 2rem solid rgba(255, 255, 255, 0.5);
  object-fit: cover;
}

.brand-info {
  flex: 1;
  margin-left: 20rem;
}

.brand-name {
  font-size: 28rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8rem;
}

.brand-desc {
  font-size: 22rem;
  color: #C8E6C9;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
