/* --- 3. CUSTOM THEME & UTILITIES --- */

/* --- Layout & Base Decoration --- */
#\:\$p>svg>foreignObject>section {
  --accent-color: #3f8092;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: calc(1.12rem * 1.1);
  --marpit-root-font-size: calc(1.02rem * 1.1);
  color: #111;
  padding: 60px 60px 80px;
  background: #ededed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

#\:\$p>svg>foreignObject>section * {
  box-sizing: border-box;
}

#\:\$p>svg>foreignObject>section :is(p, li) {
  overflow-wrap: anywhere;
}

/* --- Headers & Footers --- */
#\:\$p>svg>foreignObject>section .header-content {
  display: flex;
  align-items: center;
  width: 800px;
  white-space: nowrap;
}

#\:\$p>svg>foreignObject>section .header-logo {
  height: 20px;
  opacity: 0.6;
  margin-right: 10px;
}

#\:\$p>svg>foreignObject>section header {
  left: 60px;
  top: 30px;
  font-size: 0.8rem;
  color: #6a6a6a;
  width: auto;
}

/* フッターとページ番号の共通スタイル */
div#\:\$p>svg>foreignObject>section :is(footer, &::after) {
  color: #888;
  font-size: 0.65rem !important;
  left: 60px;
  letter-spacing: 0.08em;
}

div#\:\$p>svg>foreignObject>section footer {
  text-align: left;
}

div#\:\$p>svg>foreignObject>section::after {
  font-weight: 700;
}

/* --- Headings --- */
#\:\$p>svg>foreignObject>section :is(h1, marp-h1) {
  color: #111;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin: 0 0 0.48em;
  padding-bottom: 14px;
  border-bottom: none;
  background: linear-gradient(to right, var(--accent-color) 40px, transparent 40px) bottom left / 100% 3px no-repeat;
}

#\:\$p>svg>foreignObject>section :is(h2, marp-h2) {
  color: #4a4d53;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 0.78em;
}

#\:\$p>svg>foreignObject>section :is(h3, marp-h3) {
  color: #111;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0;
}

/* --- Slide Variations (Lead / VCenter / Dense) --- */
#\:\$p>svg>foreignObject>section.lead {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ededed;
  color: #111;
}

#\:\$p>svg>foreignObject>section.lead :is(h1, marp-h1) {
  color: #111;
  font-size: 3rem;
  padding-bottom: 20px;
  background: linear-gradient(to right, transparent calc(50% - 24px), var(--accent-color) calc(50% - 24px), var(--accent-color) calc(50% + 24px), transparent calc(50% + 24px)) bottom / 100% 3px no-repeat;
}

#\:\$p>svg>foreignObject>section.lead :is(h2, marp-h2) {
  color: #4a4d53;
  font-size: 1rem;
  font-weight: 300;
}

#\:\$p>svg>foreignObject>section.lead :is(h3, marp-h3) {
  color: #4a4d53;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 10px;
}

#\:\$p>svg>foreignObject>section.vcenter {
  justify-content: center;
}

#\:\$p>svg>foreignObject>section.dense .card {
  padding: 14px;
  margin-bottom: 0.48em;
}

#\:\$p>svg>foreignObject>section.dense :is(p, li) {
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

#\:\$p>svg>foreignObject>section.dense .grid-3 {
  gap: 8px;
}

#\:\$p>svg>foreignObject>section.dense .columns {
  gap: 16px;
}

/* --- Custom Components --- */
#\:\$p>svg>foreignObject>section .card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #d0d0d0;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* カード内のタイポグラフィ調整 */
#\:\$p>svg>foreignObject>section .card :is(p, li) {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

#\:\$p>svg>foreignObject>section .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch;
}

#\:\$p>svg>foreignObject>section .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- デザインシステムの自動化 --- */

/* 1. 見出しの直後にあるコンテンツには自動的にマージンを付与 */
#\:\$p>svg>foreignObject>section :is(h1, h2)+ :is(.grid-3, .columns, .columns-v, .card) {
  margin-top: 20px !important;
}

/* 2. グリッドやカラム内にあるカードには自動的に標準余白(p-md)を付与 */
#\:\$p>svg>foreignObject>section :is(.grid-3, .columns, .columns-v)>.card {
  padding: 20px !important;
  margin-bottom: 0 !important;
}

/* カード・ステップ・FAQ内の標準テキストサイズを自動調整 */
#\:\$p>svg>foreignObject>section :is(.card, .step-box, .faq-item) :is(p, .faq-a) {
  font-size: 0.9rem !important;
  line-height: 1.6;
}

/* 3. 特殊なケース：密集度が高いスライドの調整 */
#\:\$p>svg>foreignObject>section.dense :is(.grid-3, .columns)>.card {
  padding: 14px !important;
}

#\:\$p>svg>foreignObject>section .chip {
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  padding: 3px 14px;
  border-radius: 18px;
  font-size: 0.8rem !important;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--accent-color) !important;
  color: #fff !important;
  border: 1px solid var(--accent-color);
}

#\:\$p>svg>foreignObject>section.lead .chip {
  align-self: center;
}

#\:\$p>svg>foreignObject>section blockquote {
  border-left: 3px solid var(--accent-color);
  background: #fff;
  color: #111;
  padding: 14px 20px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.8;
  border-radius: 4px;
}

#\:\$p>svg>foreignObject>section blockquote strong {
  color: var(--accent-color);
}

#\:\$p>svg>foreignObject>section .entry-table {
  border-radius: 8px;
  overflow: hidden;
}

#\:\$p>svg>foreignObject>section .entry-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #d8d8d8;
}

#\:\$p>svg>foreignObject>section .entry-row:last-child {
  border-bottom: none;
}

#\:\$p>svg>foreignObject>section .entry-label {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 12px;
  min-width: 38%;
  background: #f4f4f4;
}

#\:\$p>svg>foreignObject>section .entry-value {
  font-size: 0.8rem;
  padding: 10px 12px;
  background: #fff;
  flex: 1;
  line-height: 1.6;
}

/* --- Utility Classes (Text - 4 Tiers) --- */
/* Display: タイトル・インパクト数字 */
#\:\$p>svg>foreignObject>section .text-huge {
  font-size: 3rem !important;
}

/* Body: 標準本文 */
#\:\$p>svg>foreignObject>section .text-md {
  font-size: 1rem !important;
}

/* Small: キャプション・補足 */
#\:\$p>svg>foreignObject>section .text-sm {
  font-size: 0.8rem !important;
}

#\:\$p>svg>foreignObject>section .text-white {
  color: #ffffff !important;
}

/* アクセントカラー */
#\:\$p>svg>foreignObject>section :is(.accent, blockquote strong, .entry-label) {
  color: var(--accent-color) !important;
  font-weight: 700 !important;
}


#\:\$p>svg>foreignObject>section .lh-loose {
  line-height: 1.8 !important;
}

#\:\$p>svg>foreignObject>section .lh-tight {
  line-height: 1.5 !important;
}

#\:\$p>svg>foreignObject>section .font-bold {
  font-weight: 700 !important;
}

#\:\$p>svg>foreignObject>section :is(.m-0, .mb-0, .mt-0) {
  margin: 0 !important;
}

/* 統一余白システム (5, 10, 20, 40, 60) */
#\:\$p>svg>foreignObject>section .mt-sm {
  margin-top: 10px !important;
}

#\:\$p>svg>foreignObject>section .mt-md {
  margin-top: 20px !important;
}

#\:\$p>svg>foreignObject>section .mt-lg {
  margin-top: 40px !important;
}

#\:\$p>svg>foreignObject>section .mt-xl {
  margin-top: 60px !important;
}

#\:\$p>svg>foreignObject>section .mb-xs {
  margin-bottom: 5px !important;
}

#\:\$p>svg>foreignObject>section .mb-sm {
  margin-bottom: 10px !important;
}

#\:\$p>svg>foreignObject>section .mb-md {
  margin-bottom: 20px !important;
}

#\:\$p>svg>foreignObject>section .mb-lg {
  margin-bottom: 40px !important;
}

#\:\$p>svg>foreignObject>section .p-0 {
  padding: 0 !important;
}

#\:\$p>svg>foreignObject>section .pl-md {
  padding-left: 20px !important;
}

#\:\$p>svg>foreignObject>section :is(.flex-center, .grid-center) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* 統一ギャップシステム */
#\:\$p>svg>foreignObject>section .gap-xl {
  gap: 60px !important;
}

#\:\$p>svg>foreignObject>section .gap-lg {
  gap: 40px !important;
}

#\:\$p>svg>foreignObject>section .gap-md {
  gap: 20px !important;
}

#\:\$p>svg>foreignObject>section .gap-sm {
  gap: 10px !important;
}

/* --- Special Background Handlers (Marpit) --- */
#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"] {
  columns: initial !important;
  display: block !important;
  padding: 0 !important;
}

#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"]::before,
#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"]::after,
#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="content"]::before,
#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="content"]::after {
  display: none !important;
}

#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"]>div[data-marpit-advanced-background-container] {
  all: initial;
  display: flex;
  flex-direction: row;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"]>div[data-marpit-advanced-background-container][data-marpit-advanced-background-direction="vertical"] {
  flex-direction: column;
}

#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"][data-marpit-advanced-background-split]>div[data-marpit-advanced-background-container] {
  width: var(--marpit-advanced-background-split, 50%);
}

#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="background"]>div[data-marpit-advanced-background-container]>figure {
  all: initial;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: auto;
  margin: 0;
}

#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="content"],
#\:\$p>svg>foreignObject>section[data-marpit-advanced-background="pseudo"] {
  background: transparent !important;
}

/* --- Strict Policy Cross-Browser --- */
#\:\$p>svg>foreignObject>section :is(h1, h2, h3, h4, h5, h6, p, li, span, strong, em, b, i, a, small, sub, sup, mark, code) {
  background-color: transparent !important;
}

#\:\$p>svg>foreignObject>section .qa-grid {
  display: grid !important;
  grid-template-columns: 2em 1fr !important;
  gap: 4px 10px !important;
  align-items: baseline !important;
}

/* --- Template Controls (editable) --- */
#\:\$p>svg>foreignObject>section[data-template="a"] :is(h1, marp-h1) {
  font-size: 3rem !important;
  letter-spacing: 0.01em !important;
}

#\:\$p>svg>foreignObject>section[data-template="a"] :is(h2, marp-h2) {
  font-size: 1rem !important;
  letter-spacing: 0.01em !important;
  margin-top: 0 !important;
}

#\:\$p>svg>foreignObject>section[data-template="b"] :is(h1, marp-h1) {
  font-size: 2rem !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  max-width: 92% !important;
}

#\:\$p>svg>foreignObject>section[data-template="b"] :is(h2, marp-h2) {
  font-size: 1rem !important;
  letter-spacing: -0.015em !important;
  line-height: 1.35 !important;
  margin-top: -0.14em !important;
  margin-bottom: 0.68em !important;
  max-width: 88% !important;
}

/* template-b + dense のカード余白を共通化 */
#\:\$p>svg>foreignObject>section[data-template="b"].dense .card {
  padding: 8px 10px !important;
  margin-bottom: 0.22em !important;
}

/* メンバー紹介用コンポーネント */
#\:\$p>svg>foreignObject>section .category-label {
  display: inline-block;
  background: #3c3d40;
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 4px 12px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

#\:\$p>svg>foreignObject>section .member-flex {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
  margin-top: 10px;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 6px;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 6px;
}

#\:\$p>svg>foreignObject>section .member-flex .card {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  width: 100% !important;
  height: auto !important;
  border: 1px solid #d0d0d0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card {
  border-radius: 10px !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card {
  border-radius: 10px !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card.is-placeholder {
  visibility: hidden !important;
  pointer-events: none !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card.is-placeholder {
  visibility: hidden !important;
  pointer-events: none !important;
}

#\:\$p>svg>foreignObject>section .member-flex .card img {
  width: 100% !important;
  height: 140px !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  display: block !important;
  border-radius: 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card img {
  height: 140px !important;
  object-position: center 16% !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card img {
  height: 138px !important;
  object-position: center 16% !important;
}

#\:\$p>svg>foreignObject>section .member-flex .card .member-info {
  padding: 14px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card .member-info {
  padding: 10px 10px 12px !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card .member-info {
  padding: 10px 9px 12px !important;
}

#\:\$p>svg>foreignObject>section .member-flex .card h3 {
  margin: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  color: #111 !important;
  text-align: left !important;
  line-height: 1.2 !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card h3 {
  font-size: 0.86rem !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card h3 {
  font-size: 0.84rem !important;
}

#\:\$p>svg>foreignObject>section .member-flex .card .tags {
  font-size: 0.75rem !important;
  color: #666 !important;
  font-weight: 800 !important;
  margin: 4px 0 10px !important;
  text-align: left !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card .tags {
  font-size: 0.62rem !important;
  line-height: 1.25 !important;
  margin: 2px 0 6px !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card .tags {
  font-size: 0.61rem !important;
  line-height: 1.22 !important;
  margin: 2px 0 6px !important;
}

#\:\$p>svg>foreignObject>section .member-flex .card .desc {
  font-size: 0.72rem !important;
  line-height: 1.5 !important;
  color: #333 !important;
  margin: 0 !important;
  text-align: left !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-5 .card .desc {
  font-size: 0.6rem !important;
  line-height: 1.35 !important;
}

#\:\$p>svg>foreignObject>section .member-flex.member-flex-6 .card .desc {
  font-size: 0.6rem !important;
  line-height: 1.34 !important;
}

#\:\$p>svg>foreignObject>section h1 {
  margin-bottom: 0.36em;
}

#\:\$p>svg>foreignObject>section h2 {
  margin-bottom: 0.48em;
}

/* FAQコンポーネント */
#\:\$p>svg>foreignObject>section .faq-item {
  margin-bottom: 20px;
}

#\:\$p>svg>foreignObject>section .faq-q {
  font-weight: 900;
  color: var(--accent-color) !important;
  margin-bottom: 5px;
}

#\:\$p>svg>foreignObject>section .faq-a {
  font-size: 1rem;
  padding-left: 20px;
  border-left: 2px solid #ddd;
}

/* Step (導入フロー) コンポーネント */
#\:\$p>svg>foreignObject>section .step-container {
  display: flex !important;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
}

#\:\$p>svg>foreignObject>section .step-box {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  width: 40%;
  text-align: center;
  position: relative;
}

#\:\$p>svg>foreignObject>section .step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

#\:\$p>svg>foreignObject>section .step-arrow {
  font-size: 2rem;
  color: var(--accent-color);
}


/* --- Final overrides (beat base.css specificity) --- */
div#\:\$p>svg>foreignObject>section {
  --accent-color: #3f8092 !important;
  background: #ededed !important;
  color: #111 !important;
}

div#\:\$p>svg>foreignObject>section.lead {
  background: #ededed !important;
  color: #111 !important;
}

div#\:\$p>svg>foreignObject>section :is(h1, marp-h1) {
  color: #111 !important;
  text-shadow: none !important;
  background: linear-gradient(to right, var(--accent-color) 40px, transparent 40px) bottom left / 100% 3px no-repeat !important;
}

div#\:\$p>svg>foreignObject>section :is(h2, marp-h2) {
  color: #4a4d53 !important;
}

div#\:\$p>svg>foreignObject>section :is(h3, marp-h3) {
  color: #111 !important;
}

div#\:\$p>svg>foreignObject>section.lead :is(h1, marp-h1) {
  color: #111 !important;
  background: linear-gradient(to right,
      transparent calc(50% - 24px),
      var(--accent-color) calc(50% - 24px),
      var(--accent-color) calc(50% + 24px),
      transparent calc(50% + 24px)) bottom / 100% 3px no-repeat !important;
}

div#\:\$p>svg>foreignObject>section.lead :is(h2, marp-h2) {
  color: #4a4d53 !important;
}

div#\:\$p>svg>foreignObject>section.lead :is(h3, marp-h3) {
  color: #4a4d53 !important;
}

div#\:\$p>svg>foreignObject>section .card {
  background: #fff !important;
  border: 1px solid #d0d0d0 !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08) !important;
}

div#\:\$p>svg>foreignObject>section blockquote {
  background: #fff !important;
  border-left-color: var(--accent-color) !important;
  color: #111 !important;
}

div#\:\$p>svg>foreignObject>section blockquote strong {
  color: var(--accent-color) !important;
}

div#\:\$p>svg>foreignObject>section .chip {
  border-color: var(--accent-color);
  color: #fff !important;
  background-color: var(--accent-color) !important;
}

div#\:\$p>svg>foreignObject>section :is(.accent, .entry-label) {
  color: var(--accent-color) !important;
}

div#\:\$p>svg>foreignObject>section .header-logo {
  filter: none !important;
}

/* --- 活動報告リンクリスト .slide-links --- */
#\:\$p>svg>foreignObject>section .slide-links {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

#\:\$p>svg>foreignObject>section .slide-links a {
  color: var(--accent-color) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.45;
}

#\:\$p>svg>foreignObject>section .slide-links a:hover {
  text-decoration: underline;
}

/* --- SNSアイコン行 .sns-row --- */
#\:\$p>svg>foreignObject>section .sns-row {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  align-items: center;
}

#\:\$p>svg>foreignObject>section .sns-row img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 8px;
}

/* --- AS-IS / TO-BE コンポーネント --- */
#\:\$p>svg>foreignObject>section .asis-tobe {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 20px;
  align-items: stretch;
  margin-top: 24px;
  flex: 1;
}

#\:\$p>svg>foreignObject>section .asis-box,
#\:\$p>svg>foreignObject>section .tobe-box {
  background: #f4f4f4;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d0d0d0;
}

#\:\$p>svg>foreignObject>section .service-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--accent-color);
  box-shadow: 0 8px 24px rgba(31, 98, 184, 0.12);
}

#\:\$p>svg>foreignObject>section .asis-label {
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

#\:\$p>svg>foreignObject>section .tobe-label {
  font-size: 0.72rem !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
}

#\:\$p>svg>foreignObject>section .asis-tobe-arrow {
  font-size: 1.8rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#\:\$p>svg>foreignObject>section :is(.asis-box, .tobe-box, .service-box) :is(p, li) {
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
}

#\:\$p>svg>foreignObject>section .asis-box strong {
  color: #666 !important;
}

#\:\$p>svg>foreignObject>section .tobe-box strong {
  color: var(--accent-color) !important;
  font-weight: 700 !important;
}
