.notice-band {
  background: var(--accent);
  padding: 10px 0;
}
.notice-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
}
.notice-label {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.notice-band-text {
  flex: 1;
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
}

.home-text-block {
  padding: 32px 0;
}
.home-text-block-card {
  background: #fffaf3;
  border: 1px solid #dcc7aa;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.home-text-block-content {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

.promo-banner {
  padding: 0 0 32px;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  color: #fff;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-card.theme-red {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}
.promo-card.theme-brown {
  background: linear-gradient(135deg, #5c3d2e 0%, #7a5540 100%);
}
.promo-card.theme-green {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}
.promo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.promo-sub {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.promo-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  transition: background 0.2s;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.promo-btn:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
}
.promo-deco {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 60px;
  opacity: 0.15;
  line-height: 1;
}
