/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 31 2025 | 15:22:44 */
.entry-title {
  position: relative; /* szükséges a ::after pozícionálásához */
  display: inline-block; /* a címsor szélességét vegye figyelembe */
}

/* Színátmenetes címek */
h1, h2, h3 {
  background: linear-gradient(90deg, rgb(25, 32, 52) 0%, rgb(40, 67, 139) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Modern ipari stílus minden img-re az .ast-container-ben,
   kivéve a .custom-logo képeket */
.ast-container img:not(.custom-logo) {
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  border: 1px solid rgba(200, 200, 200, 0.6);
  filter: contrast(1.05) saturate(1.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ast-container img:not(.custom-logo):hover {
  transform: translateY(-4px) translateX(-4px);
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.35);
}


  .cta-wrapper {
  text-align: left; /* balra igazítás */
  margin: 2em 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  color: #fff; /* hover állapotban fehér betűszín */
}



.hk-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 15px 0;
  }

  .hk-col {
    box-sizing: border-box;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .hk-col.w-40 { flex: 0 0 40%; max-width: 40%; }
  .hk-col.w-50 { flex: 0 0 50%; max-width: 50%; }
  .hk-col.w-60 { flex: 0 0 60%; max-width: 60%; }

  @media (max-width: 768px) {
    .hk-col, .hk-col.w-40, .hk-col.w-50, .hk-col.w-60 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }




.cta-wrapper {
      margin: 2em 0;
    }

    .cta-separator {
      border: none;
      height: 1px;
      background: linear-gradient(135deg, rgb(25, 32, 52) 0%, rgb(40, 67, 139) 100%);
      margin: 0 0 1.5em 0;
    }

    .cta-buttons-row {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .cta-phone-button {
      display: inline-block;
      background: linear-gradient(135deg, rgb(25, 32, 52) 0%, rgb(40, 67, 139) 100%);
      color: #fff;
      font-size: 0.9em;
      font-weight: bold;
      padding: 16px 32px;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 6px 14px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      flex: 0 0 auto;
    }

    .cta-phone-button:hover {
      background: linear-gradient(135deg, rgb(35, 42, 62) 0%, rgb(50, 77, 149) 100%);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      transform: translateY(-2px);
      color: #fff;
      text-decoration: none;
    }

    .cta-contact-button {
      display: inline-block;
      background: transparent;
      color: rgb(40, 67, 139);
      font-size: 1em;
      font-weight: normal;
      padding: 14px 28px;
      border: 2px solid rgb(40, 67, 139);
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.3s ease;
      flex: 0 0 auto;
    }

    .cta-contact-button:hover {
      background: rgb(40, 67, 139);
      color: #fff;
      text-decoration: none;
      transform: translateY(-1px);
    }

    @media (max-width: 768px) {
      .cta-buttons-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
      }
      
      .cta-phone-button,
      .cta-contact-button {
        text-align: center;
        flex: 1 1 auto;
      }
    }