/* ==========================================
   1. ALAP ÉS TIPOGRÁFIAI BEÁLLÍTÁSOK
   ========================================== */
.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;
  border-bottom: 3px solid #d4a017;
  padding-bottom: 20px;
  margin-bottom: 40px;
  display: block;
  width: 100%;
}

.blog-post h2 {
  color: #1a1a1a;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.6em;
  text-align: center;
}

/* ==========================================
   2. SZEKCIÓK ÉS CÍMKÉK
   ========================================== */
.csikung-article section {
  width: 100%;
  padding: 60px 30px;
  box-sizing: border-box;
  margin-bottom: 30px;
  border-radius: 12px;
}

/* Váltakozó szekció hátterek */
.csikung-article section:nth-child(odd) {
  background-color: #ffffff;
}

.csikung-article section:nth-child(even) {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.section-label {
  color: #d4a017;
  font-weight: 600;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
}

/* Pötty kikapcsolása a sorszámozott (ol) listáknál */
.csikung-article ol li::before {
  content: none !important;
}

/* Sorszámozott lista letisztult igazítása */
.csikung-article ol {
  padding-left: 20px;
  margin: 25px 0;
}

.csikung-article ol li {
  padding-left: 5px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.csikung-article ol li::marker {
  color: #d4a017; /* A számok arany színűek lesznek */
  font-weight: 700;
}
/* ==========================================
   LETISZTULT HÁROM PILLÉR KÁRTYÁK
   ========================================== */
.csikung-article .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.csikung-article .pillar-card {
  background-color: #ffffff;
  border: 1px solid #eef1f5;
  border-top: 3px solid #d4a017;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.csikung-article .pillar-card strong {
  display: block;
  font-size: 1.1em;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.csikung-article .pillar-card span {
  font-size: 0.9em;
  color: #7f8c8d;
}

/* Mobil nézet igazítása */
@media (max-width: 768px) {
  .csikung-article .pillars-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .csikung-article .pillar-card {
    padding: 15px;
  }
}
/* ==========================================
   3. LISTÁK CSINOSÍTÁSA (ÜZLETI / PRÉMIUM CSIPET)
   ========================================== */
.csikung-article section ul {
  list-style: none; /* Alapértelmezett fekete pöttyök törlése */
  padding-left: 0;
  margin-top: 25px;
}

.csikung-article section li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Egyedi arany pöttyök a listához */
.csikung-article section li::before {
  content: "•";
  color: #d4a017;
  font-weight: bold;
  font-size: 1.4em;
  position: absolute;
  left: 5px;
  top: -2px;
}

/* ==========================================
   4. LINKEK ÉS KÉPEK
   ========================================== */
.custom-link {
  color: #467d9c !important;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.custom-link strong {
  font-weight: 700;
}

.custom-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.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);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  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.2);
}



.article-featured-image2 {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 1.5rem auto 2.5rem auto;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-featured-image2:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 160, 23, 0.2);
}







/* ==========================================
   5. PRÉMIUM CTA DOBOZ ÉS MOBIL NÉZET
   ========================================== */
.csikung-article .cikk-cta-wrapper {
  max-width: 100%;
  background-color: #ffffff;
  padding: 5rem 20px;
}

.csikung-article .cikk-cta-box {
  background-color: #ebf0f5;
  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.08);
}

.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;
  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);
}

/* ==========================================
   KORNSZAKOK GRID ÉS KÁRTYÁK STÍLUSA
   ========================================== */
.korszakok-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.korszak-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-top: 4px solid #d4a017; /* Arany akcentus a kártyák tetején */
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.korszak-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(212, 160, 23, 0.15);
}

.korszak-card h3 {
  color: #1a1a1a;
  font-size: 1.25em;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.korszak-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

/* Kiemelt záró bekezdés (Callout Box) */
.highlight-summary {
  background-color: #fcfaf2;
  border-left: 4px solid #d4a017;
  padding: 25px 30px;
  border-radius: 0 12px 12px 0;
  margin-top: 35px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #2c3e50;
}
/* ==========================================
   INTERAKTÍV LISTA STÍLUS
   ========================================== */
/* ==========================================
   INTERAKTÍV LISTA STÍLUS (PÖTTY NÉLKÜL)
   ========================================== */
.csikung-article ul.feature-list {
  list-style: none !important; /* Pöttyök teljes kikapcsolása */
  padding-left: 0 !important;  /* Bal oldali behúzás törlése */
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.csikung-article ul.feature-list li {
  background-color: #ffffff;
  border: 1px solid #eef1f5;
  border-left: 4px solid #d4a017; /* Arany bal oldali szegély */
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Teljesen kikapcsoljuk az egyedi ::before pöttyöt */
.csikung-article ul.feature-list li::before {
  content: none !important;
}

.csikung-article ul.feature-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(212, 160, 23, 0.12);
}

.csikung-article ul.feature-list li strong {
  color: #1a1a1a;
  display: inline-block;
  font-size: 1.05em;
  margin-right: 4px;
}

/* ==========================================
   ANALÓGIA ÉS PEKDLÁZAT DOBOZ (CALLOUT)
   ========================================== */

/* ==========================================
   LETISZTULT SZEKCIÓ ÉS KIEMELÉS
   ========================================== */
.csikung-article .simple-lead {
  font-size: 1.1em;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* Egyetlen finom, elegáns kiemelő vonal a bal oldalon */
.csikung-article .clean-quote {
  border-left: 3px solid #d4a017;
  padding-left: 20px;
  margin: 25px 0;
  color: #2c3e50;
}

.csikung-article .clean-quote p {
  margin: 0;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .csikung-article .timeline-highlight {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .csikung-article .timeline-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
}


/* Mobil nézet finomhangolása */
@media (max-width: 900px) {
  .korszakok-grid {
    grid-template-columns: 1fr; /* Mobilon és táblagépen egymás alá kerülnek */
    gap: 20px;
  }

  .korszak-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .csikung-article section {
    padding: 40px 15px;
  }

  .csikung-article .cikk-cta-box {
    padding: 2.5rem 1.2rem !important;
  }

  .csikung-article .cikk-cta-box h3 {
    font-size: 1.4rem !important;
    margin-bottom: 1.2rem !important;
  }

  .csikung-article .cikk-cta-box p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2rem !important;
  }

  .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;
    white-space: normal !important;
    text-align: center !important;
  }
}

