#page_news_detail p {
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	font-smoothing: antialiased;
	letter-spacing: var(--body-letter-spacing,.05em);
	line-height: 1.8;
	word-break: break-word;
	overflow-wrap: break-word;
    margin-block-start: 1.5em;
    margin-block-end: 0;
}

#page_news_detail h2 {
    counter-reset: sub-chapter;
	padding-left: .5em;
	padding-top: .3em;
	padding-bottom: .3em;
	margin-bottom: .5em;
	border-left: 5px solid #1bc4ad;
	color: #1bc4ad;
}

#page_news_detail h3 {
    counter-reset: section;
	margin-bottom: 0.3em;
	margin-top: 0.5em;
}

#page_news_detail h4 {
	margin-bottom: 0.3em;
	margin-top: 0.5em;
}

#page_news_detail h3::before {
    counter-increment: sub-chapter;
    content: "#" counter(sub-chapter) ". ";
    color: #ff6893;
}

#page_news_detail .usage-nav h3::before,
#page_news_detail .ingredient-nav h3::before {
    content: none;
    counter-increment: none;
}

#page_news_detail h4::before {
    counter-increment: section;
    content: "(" counter(section) ") ";
	color: #999;
}

#page_news_detail table.article_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
}

#page_news_detail table.article_table th, #page_news_detail table.article_table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

#page_news_detail table.article_table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

#page_news_detail table.article_table tr:nth-child(even) {
  background-color: #f9f9f9;
}

#page_news_detail table.article_table tr:hover {
  background-color: #f1f1f1;
}

#page_news_detail table.article_table a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

#page_news_detail table.article_table a:hover {
  text-decoration: underline;
}

/* ===== Article Blockquote (ベース) ===== */
#page_news_detail blockquote.article-quote {
  position: relative;
  margin: 1.5em 0;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-left: 6px solid var(--color-primary);
  background: var(--neo-bg-mint);
  color: var(--neo-text-dark);
  border-radius: var(--border-radius-md);
  box-shadow: 0 2px 8px var(--shadow-dark);
  transition: var(--transition-normal);
}
#page_news_detail blockquote.article-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-dark);
}
#page_news_detail blockquote.article-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 64px;
  line-height: 1;
  color: rgba(27,196,173,.15); /* color-primary の淡色 */
  font-weight: var(--font-weight-black);
  pointer-events: none;
}
#page_news_detail blockquote.article-quote p {
  margin: .4em 0;
}
#page_news_detail blockquote.article-quote footer,
#page_news_detail blockquote.article-quote cite {
  display: block;
  margin-top: var(--spacing-sm);
  color: var(--neo-text-gray);
  font-size: var(--font-size-sm);
  text-align: right;
}
#page_news_detail blockquote.article-quote cite::before {
  content: "— ";
  color: var(--color-gray);
}

/* ===== 情報／注意 バリエーション ===== */
#page_news_detail blockquote.article-quote--info {
  border-left-color: var(--neo-blue);
  background: var(--neo-bg-blue);
}
#page_news_detail blockquote.article-quote--warning {
  border-left-color: var(--neo-purple);
  background: var(--bg-light-pink);
}

/* ===== プルクォート（本文途中に差し込む強調引用） ===== */
#page_news_detail .pull-quote {
  position: relative;
  margin: 2em auto;
  padding: var(--spacing-lg) var(--spacing-xl);
  max-width: 740px;
  background: var(--color-white);
  border: 3px solid var(--color-primary-dark);
  box-shadow: 8px 8px 0 var(--neo-pink);
  border-radius: var(--border-radius-lg);
}
#page_news_detail .pull-quote p {
  margin: 0;
}
#page_news_detail .pull-quote::after {
  position: absolute;
  left: 18px;
  bottom: -10px;
  width: 26px; height: 26px;
  background: var(--color-white);
  border-left: 3px solid var(--color-primary-dark);
  border-bottom: 3px solid var(--color-primary-dark);
  transform: rotate(45deg);
}

/* ===== スマホ調整 ===== */
@media (max-width: 640px) {
  #page_news_detail blockquote.article-quote,
  #page_news_detail .pull-quote {
    padding: var(--spacing-md) var(--spacing-lg);
  }
  #page_news_detail blockquote.article-quote p {
    font-size: var(--font-size-md);
  }
  #page_news_detail .pull-quote p {
    font-size: var(--font-size-lg);
  }
}

/* ========================================
   コードブロック用CSS
   ======================================== */

/* コードブロック全体のスタイル */
#page_news_detail pre {
  background-color: #f6f8fa;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  padding: 16px;
  overflow-x: auto;
  margin: 1.5em 0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* コードブロック内のテキスト */
#page_news_detail pre code {
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: inherit;
  color: #24292e;
  white-space: pre;
  word-break: normal;
  word-wrap: normal;
}

/* インラインコード（文章中のコード） */
#page_news_detail code {
  background-color: #f6f8fa;
  border: 1px solid #e1e4e8;
  border-radius: 3px;
  padding: 0.2em 0.4em;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 85%;
  color: #e83e8c;
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  #page_news_detail pre {
    background-color: #161b22;
    border-color: #30363d;
  }

  #page_news_detail pre code {
    color: #c9d1d9;
  }

  #page_news_detail code {
    background-color: #161b22;
    border-color: #30363d;
    color: #ff7b72;
  }
}

/* ========================================
   女性向けブログ用の柔らかいスタイル
   ======================================== */

/* パステルカラーのコードブロック */
#page_news_detail pre.soft-style {
  background: linear-gradient(135deg, #ffeef8 0%, #f3e5f5 100%);
  border: 2px solid #e1bee7;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
}

#page_news_detail pre.soft-style code {
  color: #6a1b9a;
}

/* ========================================
   プロフェッショナルスタイル
   ======================================== */

/* GitHub風スタイル */
#page_news_detail pre.github-style {
  background-color: #f6f8fa;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  padding: 16px;
  font-size: 13.6px;
  line-height: 1.45;
}

/* VS Code風スタイル */
#page_news_detail pre.vscode-style {
  background-color: #1e1e1e;
  color: #d4d4d4;
  border: none;
  border-radius: 4px;
  padding: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

#page_news_detail pre.vscode-style code {
  color: #d4d4d4;
}

/* ========================================
   コピーボタン付きコードブロック
   ======================================== */

#page_news_detail .code-block-container {
  position: relative;
  margin: 1.5em 0;
}

#page_news_detail .code-block-container pre {
  margin: 0;
}

#page_news_detail .copy-button {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 6px 12px;
  background-color: #2c5282;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

#page_news_detail .copy-button:hover {
  background-color: #1a365d;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#page_news_detail .copy-button:active {
  transform: translateY(0);
}

#page_news_detail .copy-button.copied {
  background-color: #48bb78;
}

/* ========================================
   行番号付きコードブロック
   ======================================== */

#page_news_detail pre.line-numbers {
  counter-reset: line;
  padding-left: 3.5em;
}

#page_news_detail pre.line-numbers code {
  display: block;
}

#page_news_detail pre.line-numbers code::before {
  counter-increment: line;
  content: counter(line);
  display: inline-block;
  width: 2.5em;
  margin-left: -3.5em;
  padding-right: 1em;
  text-align: right;
  color: #999;
  border-right: 1px solid #e1e4e8;
  margin-right: 1em;
}

/* ========================================
   スクロールバーのカスタマイズ
   ======================================== */

#page_news_detail pre::-webkit-scrollbar {
  height: 8px;
}

#page_news_detail pre::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#page_news_detail pre::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

#page_news_detail pre::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

@media (max-width: 768px) {
  #page_news_detail pre {
    padding: 12px;
    font-size: 13px;
    border-radius: 4px;
  }

  #page_news_detail pre.template-style {
    padding: 16px;
    font-size: 14px;
  }

  #page_news_detail .copy-button {
    padding: 4px 8px;
    font-size: 11px;
  }
}


/* 引用マーク */
.news-384 .quote-container::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: Arial, sans-serif;
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: rotate(-10deg);
}



/*2025/01/27*/
/* Grid System (Bootstrap 3.3.7互換) */
.news-384 .luxury-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
.news-384 h1,
.news-384 h2,
.news-384 h3,
.news-384 h4,
.news-384 h5 {
    font-family: "Shippori Mincho", serif;
    line-height: 1.4;
    margin-bottom: 1.5rem;
	border-left: none !important;
	padding-left: 0px !important;
}

.news-384 h4::before {
  content: none !important;
}

.news-384 h4 {
  margin-top: 10px;
  margin-bottom: 0.5rem;
}

.news-384 .section-title {
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: #2D3047 !important;
}

.news-384 .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FF595E;
}

/* Hero Section */
.news-384 .hero {
    background: linear-gradient(45deg, #2D3047 0%, #393B53 100%);
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.news-384 .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(255, 89, 94, 0.1) 0%, transparent 100%),
        url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

/* Cards */
.news-384 .luxury-card {
    background: #fff;
    border: 3px solid #2D3047;
    box-shadow: 8px 8px 0 #FF595E;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.news-384 .luxury-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #FF595E;
}

/* Expert Interview Section */
.news-384 .section-expert {
    background: #2D3047;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.news-384 .section-expert h2{
    color: #fff !important;
}

.news-384 .cta-button-area a.cta-button {
	margin-bottom: 10px;
}

.news-384 .expert-profile {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
    margin-bottom: 4rem;
}

.news-384 .interview-qa {
    background: #fff;
    color: #2D3047;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 6px solid #FF595E;
}

.news-384 .interview-qa h3::before{
    content: none !important;
}

.news-384 .interview-question {
    font-size: 1.25rem;
    color: #FF595E;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Images */
.news-384 .meditation-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid #2D3047;
    box-shadow: 8px 8px 0 #FF595E;
}

.news-384 .portrait-image {
    width: 100%;
    height: auto;
    border: 3px solid #fff;
    box-shadow: 8px 8px 0 rgba(255, 89, 94, 0.5);
}

/* Contact Info */
.news-384 .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 2px solid #2D3047;
    margin-bottom: 1rem;
}

.news-384 .contact-icon {
    color: #FF595E;
}

/* CTA Button */
.news-384 .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #FF595E;
    color: #fff;
    text-decoration: none;
    border: 3px solid #2D3047;
    box-shadow: 4px 4px 0 #2D3047;
    transition: all 0.3s ease;
}

.news-384 .cta-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #2D3047;
    color: #fff;
    text-decoration: none;
}

/* Section Backgrounds */
.news-384 .section-gradient {
    background: linear-gradient(45deg, #F6F3ED 0%, #fff 100%);
    padding: 10px 0;
}

/* Media Queries */
@media (min-width: 768px) {
    .news-384 .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Expert Profile Layout */
.news-384 .expert-profile {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 4px;
    margin-bottom: 4rem;
}

.news-384 .portrait-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
}

.news-384 .portrait-image {
    width: 100%;
    height: auto;
    border: 3px solid #fff;
    box-shadow: 8px 8px 0 rgba(255, 89, 94, 0.5);
}

@media (min-width: 768px) {
    .news-384 .expert-profile {
        display: flex;
        align-items: flex-start;
        gap: 3rem;
    }

    .portrait-container {
        flex: 0 0 300px;
        margin: 0;
    }

    .expert-profile-content {
        flex: 1;
    }
}

/* Message Section */
.news-384 .message-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    margin: 4rem 0;
    border-radius: 4px;
}

.news-384 .message-section h3::before{
	content: none !important;
}

.news-384 .special-message {
    background: #fff;
    color: #2D3047;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 6px solid #FF595E;
}

.news-384 .quote-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0;
}

/* Action Steps Grid */
.news-384 .action-steps {
    margin-top: 3rem;
}

.news-384 .step-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.news-384 .action-card {
    background: #fff;
    color: #2D3047;
    padding: 2rem;
    border: 3px solid #2D3047;
    box-shadow: 8px 8px 0 #FF595E;
    position: relative;
}

.news-384 .action-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: #FF595E;
    color: #fff;
    border: 2px solid #2D3047;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media (min-width: 768px) {
    .news-384 .step-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Clinic Information Section */
.news-384 .section-infomation {
    background: #F6F3ED;
    padding: 4rem 0;
}

.news-384 .section-infomation .content-block {
    max-width: 800px;
    margin: 0 auto;
}

.news-384 .section-infomation h3 {
    color: #2D3047;
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 4px solid #FF595E;
}

.news-384 .section-infomation p {
    margin-bottom: 1.5rem;
}

/* Contact Items */
.news-384 .contact-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 2px solid #2D3047;
}

.news-384 .contact-icon {
    flex-shrink: 0;
    width: 24px;
    margin-right: 1rem;
    color: #FF595E;
}

.news-384 .contact-item p {
    margin: 0;
    line-height: 1.6;
}

/* Information Badges */
.news-384 .info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.news-384 .info-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #2D3047;
    color: #fff;
    border-radius: 4px;
}

.news-384 .info-badge i {
    margin-right: 0.5rem;
}

/* CTA Button */
.news-384 .section-infomation {
    margin-top: 2rem;
    display: block;
}

@media (max-width: 768px) {
    .news-384 .contact-item {
        flex-direction: column;
    }

    .news-384 .contact-icon {
        margin-bottom: 0.5rem;
    }

    .news-384 .info-badges {
        flex-direction: column;
    }

    .news-384 .info-badge {
        width: 100%;
    }
}

/* Typography Hierarchy */
.news-384 h5 {
    font-size: 1.125rem;
    /* 18px */
    font-weight: 700;
    color: #2D3047;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #FF595E;
}

/* Action Cards内のh5 */
.news-384 .action-card h5 {
    font-size: 1.25rem;
    /* 20px */
    margin-top: 1.5rem;
    padding-left: 0.5rem;
    border-bottom: none;
    border-left: 4px solid #FF595E;
}

/* Message Section内のh5 */
.news-384 .message-section h5 {
    font-size: 1.25rem;
    color: #2D3047;
    margin: 1.5rem 0 1rem;
    padding-left: 1rem;
    border-bottom: none;
    border-left: 4px solid #FF595E;
    background: rgba(255, 89, 94, 0.1);
    padding: 0.75rem 1rem;
}

/* Changes Section */
.news-384 .section-change {
    padding: 4rem 0;
    background: #F6F3ED;
}

/* Image Grid Layout */
.news-384 .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.news-384 .meditation-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #2D3047;
    box-shadow: 8px 8px 0 #FF595E;
}

.news-384 .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Benefit List */
.news-384 .benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-384 .benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.news-384 .benefit-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #FF595E;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .news-384 .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-384 .meditation-image {
        height: 200px;
    }
}

.news-384 .action-card h4, .news-384 .action-card h5 {
  background: rgba(255, 89, 94, 0.1);
  font-weight: bold;
}


/* ヴェイパーウェイヴ 引用スタイル */
.news-384 .quote-container {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(
        135deg,
        #FF6B8E,  /* ネオンピンク */
        #8A4FFF,  /* ディープパープル */
        #4FACFE   /* ブライトブルー */
    );
    border-radius: 15px;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
    box-shadow:
        0 20px 50px rgba(138, 79, 255, 0.3),
        0 15px 30px rgba(255, 107, 142, 0.2);
    border: 3px solid #FF6B8E;
}
/* デジタルグリッチエフェクト */
.news-384 .quote-container::before,
.news-384 .quote-container::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
}

.news-384 .quote-container::before {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        );
    background-size: 30px 30px;
    opacity: 0.2;
}

.news-384 .quote-container::after {
    background:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.05) 0px,
            rgba(0, 0, 0, 0.05) 1px,
            transparent 1px,
            transparent 2px
        );
    opacity: 0.3;
}


/* 引用テキストスタイル */
.news-384 .quote-container .quote-text {
    position: relative;
    z-index: 2;
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    /* グリッチエフェクト */
    text-shadow:
        2px 2px 0 rgba(255, 107, 142, 0.5),
        -2px -2px 0 rgba(138, 79, 255, 0.5);

    /* デジタルノイズアニメーション */
    animation:
        text-glitch 2s infinite alternate,
}

/* グリッチアニメーション */
@keyframes text-glitch {
    0% {
        transform: translate(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    5% {
        transform: translate(-2px, 2px);
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 90%);
    }
    10% {
        transform: translate(-2px, -2px);
        clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
    }
    15% {
        transform: translate(2px, 2px);
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 80%);
    }
    20% {
        transform: translate(2px, -2px);
        clip-path: polygon(0 0, 100% 20%, 100% 80%, 0% 100%);
    }
    25% {
        transform: translate(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-384 .quote-container {
        margin: 2rem 1rem;
        padding: 2rem;
    }

    .news-384 .quote-container .quote-text {
        font-size: 1.4rem;
    }

    .news-384 .quote-container::before {
        font-size: 6rem;
        top: -20px;
        left: -10px;
    }
}

/* ホバーエフェクト */
.news-384 .quote-container:hover {
    transform:
        perspective(1000px)
        rotateX(5deg)
        rotateY(10deg)
        scale(1.02);
    transition: all 0.5s ease;
    box-shadow:
        0 30px 60px rgba(138, 79, 255, 0.4),
        0 20px 40px rgba(255, 107, 142, 0.3);
}

.news-384 .cta-button-area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.news-384 .cta-button-area .cta-butto{
	margin: 0 auto;
	width: 300px;
}


.news-detail {
    line-height: var(--line-height-loose);
}

.news-detail h1 {
    position: relative;
    font-size: var(--font-size-mega);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-xl);
    margin-bottom: 1em;
}

.news-detail h1::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100px;
    height: 10px;
    background: var(--color-primary-dark);
    z-index: 1;
}

.news-detail h1::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: var(--bg-cream);
}

.news-detail h2 {
    font-size: var(--font-size-huge);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-lg) var(--spacing-xl);
    margin-bottom: 1em;
    color: var(--color-white);
    background: var(--color-primary-dark);
}

.news-detail h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-sm) var(--spacing-xl);
    margin-bottom: 1em;
    border-radius: var(--border-radius-lg);
    border: 3px solid var(--color-primary-dark);
}

.news-detail h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: 1em;
    border-bottom: 3px solid var(--color-primary-dark);
}

.news-detail h5 {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-sm) var(--spacing-lg);
    margin-bottom: 1em;
    border-bottom: 3px dotted var(--color-primary-dark);
}

.news-detail h6 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-xs) var(--spacing-lg);
    margin-bottom: 1em;
    border-left: 8px solid var(--color-primary-dark);
}



