

/* TELJES BLOKK */

.zsongoda-package {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0;
}


/* FEJLÉC */

.zsongoda-package-header {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.zsongoda-package-label {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #195A96;
  margin-bottom: 15px;
}

.zsongoda-package h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #123E68 !important;
  margin: 0 0 20px 0;
  padding: 0;
}

.zsongoda-package-header p {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #39474C;
  margin: 0;
}


/* KÁRTYÁK */

.zsongoda-package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zsongoda-package-card {
  background: #FFFFFF;
  border: 1px solid #DCE7EC;
  border-radius: 24px;
  padding: 30px;

  box-sizing: border-box;
  min-height: 290px;

  box-shadow:
    0 12px 28px rgba(18, 62, 104, 0.07);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.zsongoda-package-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 36px rgba(18, 62, 104, 0.12);
}


/* SZÁM */

.zsongoda-package-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #F4DC3B;
  color: #123E68;

  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;

  margin-bottom: 20px;
}


/* KÁRTYACÍM */

.zsongoda-package-card h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.15;

  color: #123E68 !important;

  margin: 0 0 15px 0;
  padding: 0;
}


/* KÁRTYASZÖVEG */

.zsongoda-package-card p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;

  color: #4E5B60;

  margin: 0;
}

.zsongoda-package-card strong {
  color: #123E68;
  font-weight: 700;
}


/* CTA */

.zsongoda-package-cta {
  text-align: center;
  margin-top: 42px;
}

.zsongoda-package-cta p {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #4E5B60;
  margin: 0 0 18px 0;
}

.zsongoda-package-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 28px;

  border-radius: 14px;

  background: #123E68;
  color: #FFFFFF !important;

  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;

  text-decoration: none !important;

  transition:
    background .25s ease,
    transform .25s ease;
}

.zsongoda-package-cta a:hover {
  background: #195A96;
  transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 1100px) {

  .zsongoda-package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* MOBIL */

@media (max-width: 767px) {

  .zsongoda-package {
    padding: 10px 0;
  }

  .zsongoda-package-header {
    margin-bottom: 30px;
  }

  .zsongoda-package-label {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .zsongoda-package h2 {
    font-size: 36px;
  }

  .zsongoda-package-header p {
    font-size: 16px;
  }

  .zsongoda-package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zsongoda-package-card {
    min-height: 0;
    padding: 26px;
  }

  .zsongoda-package-card h3 {
    font-size: 25px;
  }

  .zsongoda-package-cta {
    margin-top: 32px;
  }

  .zsongoda-package-cta a {
    width: 100%;
    box-sizing: border-box;
  }

}

