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;
}

.cta-section-biguan {
  background-color: #f9f9f9;
  border: 1px solid #d4a017;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 700px;
}

/* CTA gomb stílusa */
.cta-button-biguan {
  display: inline-block;
  background-color: #d4a017;
  color: #ffffff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-button-biguan:hover {
  background-color: #b38612;
}

/* 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;
}

/* Fejléc kép stílusa a cikkekben */
.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);
}

.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;
}

/* 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;
}

.tamo-grid-section {
  display: grid;
  grid-template-columns: 1fr 350px; /* A jobb oldali oszlop szélességét itt tudod szabályozni */
  gap: 40px;
  align-items: start; /* Vagy 'start', ha a tetejéhez akarod igazítani */
}

.tamo-image-container {
  width: 100%;
  height: 100%;
}

.tamo-image-container img {
  width: 100%;
  height: 60%;
  object-fit: cover; /* Biztosítja, hogy a kép torzulás nélkül kitöltse a szélét */
  border-radius: 8px; /* Opcionális kerekítés */
}

.tamo-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tamo-bottom-text {
  margin-top: -270px; /* Negatív margóval tudod mégjebb vagy feljebb húzni */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- A négy üresség szekció stílusa --- */

/* Bevezető és lezáró bekezdések finomhangolása */
.religious-qigong-section p {
  margin-bottom: 22px;
  font-size: 1.07rem;
  color: #4a5568;
  line-height: 1.8;
}

/* A négy elem listájának elrendezése */
.religious-qigong-section ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  gap: 16px;
}

/* Egyedi kártyák a négy üresség elemeihez */
.religious-qigong-section li {
  background: #ffffff;
  padding: 20px 24px;
  border-left: 5px solid #d4a017; /* Az arany/barna hangsúlyos bal szegély */
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-top: 1px solid #f0eee6;
  border-right: 1px solid #f0eee6;
  border-bottom: 1px solid #f0eee6;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  color: #4a5568;
  line-height: 1.7;
}

/* Finom animáció egérrel rámutatáskor */
.religious-qigong-section li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* A lista elemeinek címei (Föld üressége, Víz üressége stb.) */
.religious-qigong-section li strong {
  color: #d4a017;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 4px;
}

/* --- Taoista Csikung Szekció Stílusa --- */
/* --- Taoista gyakorlatok listájának stílusa --- */
.taoist-practice-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.taoist-practice-list li {
  background: #ffffff;
  padding: 20px 24px;
  border-left: 5px solid #d4a017; /* A bal oldali narancssárga vastag sáv */
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border-top: 1px solid #f0eee6;
  border-right: 1px solid #f0eee6;
  border-bottom: 1px solid #f0eee6;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  color: #4a5568;
  line-height: 1.7;
}

.taoist-practice-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.taoist-practice-list li strong {
  color: #d4a017; /* A számozás és a cím kiemelése narancssárgával */
  font-size: 1.05rem;
}

/* --- MOBIL NÉZET JAVÍTÁSA A TAMO SZEKCIÓHOZ --- */
@media (max-width: 768px) {
  /* Ha grid van beállítva, egyoszlopossá tesszük */
  .tamo-grid-section {
    display: flex;
    flex-direction: column;
  }

  /* A kép szépen kitölti a mobil képernyőt */
  .tamo-image-container img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
  }

  /* EZ A LÉNYEG: Eltüntetjük a negatív margót mobilon, hogy ne csússzanak össze a szövegek */
  .tamo-bottom-text {
    margin-top: 0 !important;
    position: static !important;
  }
}

/* Mobilbarát finomhangolás ehhez a blokkhoz */
@media (max-width: 768px) {
  .religious-qigong-section li {
    padding: 15px 18px;
  }
}

@media (max-width: 768px) {
  .tamo-grid-section {
    grid-template-columns: 1fr;
  }
}

/* Mobil nézet finomhangolása */
@media (max-width: 768px) {
  /* 1. Teljes oldal konténer biztonsági margója */
  .blog-post {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
  }

  /* 2. Szekciók belső margójának csökkentése mobilon, hogy ne lógjanak ki */
  .csikung-article section,
  section {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  /* 3. CTA doboz margói mobilon, hogy ne tapadjon a szélhez */
  .csikung-article .cikk-cta-box {
    margin-left: 5px !important;
    margin-right: 5px !important;
    padding: 2.5rem 1.2rem !important;
    box-sizing: border-box !important;
  }

  /* Címsor méretének szelídítése mobilon */
  .csikung-article .cikk-cta-box h3 {
    font-size: 1.4rem !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.3 !important;
  }

  /* Bekezdés szövegmérete mobilon */
  .csikung-article .cikk-cta-box p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
  }

  /* CTA gomb: Egysoros kényszerítés mobilon is */
  .csikung-article .cikk-cta-button {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 24px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.5px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}
