h1 {
  text-align: center;
  color: #d4a017; /* Ha a főcímet is aranyra szeretnéd */
}

/* H2 címek középre igazítása */
h2 {
  text-align: center;
  /* A csillag eltüntetéséhez töröld ki a HTML-ből a ✦ karaktert, 
       vagy ha ragaszkodsz a CSS-hez, használj ::before { content: none; } */
}

.gold-label {
  color: #d4a017;
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 3px;
   margin-top: 35px !important;
  margin-bottom: 15px;
  text-align: center;
}
section {
  width: 100%;
  padding: 60px 20px; /* A 60px-ről 80px-re emelés több levegőt ad a tartalomnak */
  box-sizing: border-box;
  background-color: #ffffff;
  margin-bottom: 20px; /* Hozzáadva, hogy a szekciók ne "ragadjanak" össze */
}

.section-label {
  text-align: center;
}

.section-label {
  color: #d4a017;
  font-weight: 600;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 30px;
  margin-bottom: 5px;
}
.blog-post {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  line-height: 1.8;
  color: #2c3e50;
  font-family: "Montserrat", sans-serif;
}
.blog-post h1 {
  font-size: 2.5em;
  text-align: center !important;
  color: #1a1a1a !important; /* Fekete szín */
  border-bottom: 3px solid #d4a017;
  padding-bottom: 20px;
  margin-bottom: 40px;
  display: block;
  width: 100%;
}
.blog-post h2 {
  color: #1a1a1a;
  margin-top: 0;
  font-size: 1.6em;
  text-align: center; /* H2 középre */
}
.custom-link {
  color: #467d9c !important;
  font-weight: 600;
  text-decoration: none;
}

/* Opcionális: Ha szeretnéd, hogy ráhúzáskor (hover) is történjen valami: */
.custom-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}
/* Mobilbarát Morzsamenü Stílus */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.85rem;
  margin-top: 0px;          /* Eltünteti a felső rést */
  margin-bottom: 15px;    /* Szorosabb távolság a címkétől */
  padding-top: 0;         /* Nullázza a felső belső margót */
  color: #777777;
  line-height: 1.4;
}

.breadcrumb a {
  color: #1e5a8a;
  text-decoration: none;
  white-space: nowrap; /* A hivatkozás szavai ne törjenek ketté */
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #ccc;
  user-select: none;
}

.breadcrumb-current {
  color: #444444;
  font-weight: 500;
  /* Mobilon, ha nagyon hosszú az aloldal címe, kíméletesen kezeli */
  word-break: break-word; 
}

main.blog-post,
main.blog-post article {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.article-featured-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 1.5rem auto 2.5rem auto;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.3); /* Finom arany keret */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-featured-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 160, 23, 0.15);
}

/* --- 4. PRÉMIUM SÖTÉTKÉK CTA DOBOZ --- */
.csikung-article .cikk-cta-wrapper {
    max-width: 100%;
    background-color: #ffffff;
    padding: 5rem 20px;
}

.csikung-article .cikk-cta-box {
    background-color: #ebf0f5; /* Pontos mély sötétkék a beküldött fotó alapján */
    max-width: 850px;
    margin: 0 auto;
    padding: 4.5rem 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(11, 28, 44, 0.18);
}

.csikung-article .cta-arany-alcim {
    color: #cca43b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.csikung-article .cikk-cta-box h3 {
    font-size: 1.6rem;
    color: #1a1818;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.csikung-article .cikk-cta-box p {
    font-size: 1.05rem;
    color: #202124;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.csikung-article .cikk-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #cca43b !important;
    color: #ffffff !important;
    padding: 18px 45px;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px; /* Tökéletesen lekerekített kapszula forma */
    letter-spacing: 1px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(204, 164, 59, 0.3);
}

.csikung-article .cikk-cta-button:hover {
    background-color: #b58f32 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 164, 59, 0.4);
}
/* Szekciók alapvető elrendezése */
.csikung-article section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  margin-bottom: 20px;
  border-radius: 8px; /* Finom kerekítés a szekciók sarkain */
}

/* Páratlan szekciók (1., 3., 5...): Tiszta fehér háttér */
.csikung-article section:nth-child(odd) {
  background-color: #ffffff;
}

/* Páros szekciók (2., 4., 6...): Finom, prémium törtfehér/világosszürke háttér */
.csikung-article section:nth-child(even) {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}


.csikung-article ul {
  list-style: none; /* Eltüntetjük az alapértelmezett pöttyöket */
  padding-left: 0;
  margin: 1.5rem 0;
}

.csikung-article ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Egyedi, stílusos "pötty" vagy jelölő a lista elejére (pl. arany színben) */
.csikung-article ul li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #c5a059; /* Arany szín, igazodva a gold-labelhez */
  font-size: 1.2rem;
  line-height: 1;
}

.csikung-article ul li strong {
  color: #2c3e50; /* Kicsit kiemeljük a címszavakat */
}

.csikung-article p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: #333333;
  font-size: 1.05rem; /* Picit nagyobb, kényelmesebben olvasható betűméret */
}



/* --- Bevezető szekció egyedi stílusai --- */

/* Kicsit nagyobb, figyelemfelkeltőbb kezdőbekezdés */
.csikung-intro-section .intro-lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: #1a1a1a;
  border-left: 3px solid #d4a017;
  padding-left: 15px;
  margin-bottom: 2rem;
}

/* Az 8 féle érzést tömörítő rész finom belső elrendezése */
.csikung-intro-section .sensations-grid p {
  margin-bottom: 1.5rem;
  text-align: justify; /* Opcionális: szép sorkizárás a hosszabb szövegekhez, ha szereted */
}

/* Külön doboz a Harmadik szem / látomások részre, hogy ne folyjon egybe a sima szöveggel */
.csikung-intro-section .vision-note-box {
  background-color: #fcfbfa;
  border: 1px dashed rgba(212, 160, 23, 0.4);
  padding: 25px 30px;
  border-radius: 8px;
  margin: 2rem 0;
}

.csikung-intro-section .vision-note-box p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #444444;
}

/* A szekciót lezáró mondat kiemelése */
.csikung-intro-section .section-outro {
  font-weight: 500;
  color: #2c3e50;
  margin-top: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

/* --- Speciális fizikai reakciók szekció stílusai --- */

.csikung-special-section .special-reaction-block {
  margin-bottom: 2rem;
}

.csikung-special-section .special-reaction-block:last-child {
  margin-bottom: 0;
}

/* Az első bekezdés enyhe kiemelése */
.csikung-special-section .special-lead {
  font-size: 1.075rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Külön kis figyelemfelkeltő doboz a Zsencsung / elsősegély jellegű infónak */
.csikung-special-section .tip-box {
  background-color: #f7f9fa;
  border-left: 3px solid #d4a017;
  padding: 15px 20px;
  border-radius: 0 6px 6px 0;
  margin-top: 1rem;
}

.csikung-special-section .tip-box p {
  margin-bottom: 0;
  font-size: 0.975rem;
  color: #333333;
}

/* --- Dinamikus tisztulás szekció stílusai --- */

.csikung-dynamic-section .dynamic-block {
  margin-bottom: 1.5rem;
}

/* Az első bekezdés finom kiemelése */
.csikung-dynamic-section .dynamic-lead {
  font-size: 1.075rem;
  color: #1a1a1a;
  line-height: 1.8;
}

/* Különleges, elegáns doboz a hangoknak és a spontán érzelmi kiáramlásnak */
.csikung-dynamic-section .sound-highlight-box {
  background-color: #faf8f5; /* Enyhe, meleg tónusú törtfehér */
  border-left: 3px solid #d4a017;
  padding: 25px 30px;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.csikung-dynamic-section .sound-highlight-box p {
  margin-bottom: 1rem;
  color: #333333;
}

.csikung-dynamic-section .sound-highlight-box p:last-child {
  margin-bottom: 0;
}

/* A magyarázóbb alsó rész finomabb betűmérete */
.csikung-dynamic-section .sound-subtext {
  font-size: 0.975rem;
  color: #555555;
  border-top: 1px solid rgba(212, 160, 23, 0.2);
  padding-top: 15px;
  margin-top: 15px;
}

/* --- Margók biztosítása mobilon a fő konténernél és a szekcióknál --- */
@media screen and (max-width: 768px) {
  .blog-post {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }

  .csikung-article section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }
  .csikung-article .cikk-cta-wrapper {
      padding: 2rem 12px; /* Kisebb külső margó mobilon */
  }
  
  .csikung-article .cikk-cta-box {
      padding: 2.5rem 1.25rem; /* Itt veszi vissza a belső margót, hogy ne legyen túl szűk */
  }
  .csikung-article .cikk-cta-button {
      font-size: 0.8rem !important;      /* Kicsit kisebb betűméret mobilon */
      padding: 14px 20px !important;     /* Kisebb belső margó, hogy ne legyen túl széles */
      white-space: nowrap !important;    /* Megakadályozza, hogy a szavak törjenek */
      letter-spacing: 0.5px !important;  /* Enyhén sűrítve, hogy biztosan elférjen */
  }
}