

.zsongoda-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  overflow: hidden;
  margin-top: 45px;

  background: #123E68;
  border-radius: 28px;

  box-shadow:
    0 18px 42px rgba(18, 62, 104, 0.16);
}


/* KÉP */

.zsongoda-feature-image {
  position: relative;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
}

.zsongoda-feature-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.zsongoda-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;

  transition:
    transform .4s ease,
    filter .4s ease;
}

.zsongoda-feature-image a:hover img {
  transform: scale(1.025);
  filter: brightness(.88);
}


/* PLAY GOMB */

.zsongoda-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-left: 5px;

  border-radius: 50%;

  background: #F4DC3B;
  color: #123E68;

  font-size: 28px;

  box-shadow:
    0 10px 28px rgba(0,0,0,.25);

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

.zsongoda-feature-image a:hover .zsongoda-play {
  transform:
    translate(-50%, -50%)
    scale(1.08);

  background: #FFF9EF;
}


/* SZÖVEGES OLDAL */

.zsongoda-feature-content {
  padding: 48px;
}

.zsongoda-feature-label {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: 1.8px;

  color: #F4DC3B;

  margin-bottom: 14px;
}

.zsongoda-feature-content h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;

  color: #FFF9EF !important;

  margin: 0 0 18px 0;
  padding: 0;
}

.zsongoda-feature-content p {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;

  color: #EAF1F6;

  margin: 0 0 28px 0;
}


/* CTA */

.zsongoda-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 23px;

  border-radius: 13px;

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

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

  text-decoration: none !important;

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

.zsongoda-feature-button:hover {
  background: #FFF9EF;
  transform: translateY(-2px);
}


/* TABLET */

@media (max-width: 980px) {

  .zsongoda-feature {
    grid-template-columns: 1fr;
  }

  .zsongoda-feature-image {
    min-height: 0;
  }

  .zsongoda-feature-image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

}


/* MOBIL */

@media (max-width: 767px) {

  .zsongoda-feature {
    border-radius: 22px;
  }

  .zsongoda-feature-content {
    padding: 30px 26px 34px;
  }

  .zsongoda-feature-content h3 {
    font-size: 32px;
  }

  .zsongoda-feature-content p {
    font-size: 16px;
  }

  .zsongoda-feature-button {
    width: 100%;
    box-sizing: border-box;
  }

  .zsongoda-play {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }

}

