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-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;
}


/* --- 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);
}


/* 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);
}

.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;
}

/* Mobil nézet finomhangolása */
@media (max-width: 768px) {
  /* CTA doboz belső margóinak csökkentése mobilon */
  .csikung-article .cikk-cta-box {
    padding: 2.5rem 1.2rem !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;
  }

  /* Mobilra optimalizált, többsorosra is engedélyezett gomb */
  .csikung-article .cikk-cta-button {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1rem 1.2rem !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    border-radius: 50px !important;
    white-space: normal !important; /* Engedélyezi a sortörést, ha nem fér el egy sorban */
    text-align: center !important;
  }
}