.insight-notice-panel {
  --bg: #f2f2f2;
  --surface: #ffffff;
  --ink: #000000;
  --ink-soft: #303030;
  --ink-faint: #6c757d;
  --border: #e8e4da;
  --accent: #ff0000;
  --accent-dark: #d90000;
  --accent-soft: #fff0f0;
}

.insight-notice-panel .insight-notice-panel-panel {
  background: var(--surface);
  padding: 44px 48px;
}

.insight-notice-panel .insight-notice-panel-panel .viewSample {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
}

.insight-notice-panel .insight-notice-panel-panel h2 {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0 0 10px;
}

.insight-notice-panel .insight-notice-panel-panel > p.desc {
  font-size: 1.4rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 36px;
  opacity: 0.65;
}

.insight-notice-panel .insight-notice-panel-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  margin-bottom: 32px;
}

.insight-notice-panel .insight-notice-panel-features.for-event {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  margin-bottom: 32px;
}

.insight-notice-panel .insight-notice-panel-feature .insight-notice-panel-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.insight-notice-panel .insight-notice-panel-feature .insight-notice-panel-icon i {
  font-size: 19px;
  color: var(--accent);
}

.insight-notice-panel .insight-notice-panel-feature h3 {
  font-family: "Varela Round", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 6px;
  line-height: 1.4;
  color: var(--ink);
}

.insight-notice-panel .insight-notice-panel-feature p {
  font-size: 1.3rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  opacity: 0.65;
}

.insight-notice-panel .insight-notice-panel-example-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.4rem;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 2px;
}

.insight-notice-panel .insight-notice-panel-example-link i {
  font-size: 15px;
  color: var(--accent);
}

.insight-notice-panel .insight-notice-panel-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.insight-notice-panel .insight-notice-panel-price-row .insight-notice-panel-amount {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--ink);
}

.insight-notice-panel .insight-notice-panel-price-row .insight-notice-panel-period {
  font-size: 1.3rem;
  color: var(--ink-soft);
}

.insight-notice-panel .insight-notice-panel-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 0.3rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: none;
}

.insight-notice-panel .insight-notice-panel-btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.4);
}

.insight-notice-panel .insight-notice-panel-btn-primary i {
  font-size: 17px;
}

.insight-notice-panel .insight-notice-panel-fine-print {
  margin: 28px auto 0;
  padding: 24px 48px 0;
  border-top: 1px solid var(--border);
}

.insight-notice-panel .insight-notice-panel-fine-print ol {
  margin: 0;
  padding-left: 20px;
}

.insight-notice-panel .insight-notice-panel-fine-print li {
  font-size: 1.2rem;
  color: var(--ink-faint);
  line-height: 1.7;
  margin-bottom: 4px;
}

.insight-notice-panel .insight-notice-panel-fine-print a {
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .insight-notice-panel .insight-notice-panel-panel {
    margin-left: 16px;
    margin-right: 16px;
    padding: 32px 24px;
  }
  .insight-notice-panel .insight-notice-panel-fine-print {
    padding-left: 24px;
    padding-right: 24px;
  }
  .insight-notice-panel .insight-notice-panel-features, .insight-notice-panel .insight-notice-panel-features.for-event {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .insight-notice-panel .insight-notice-panel-feature h3 {
    font-size: 1.6rem;
  }
}
