/* Blok Gutenberga: CTA — link do gry
   Ładowany bezpośrednio (nie wymaga npm run build). */

.cta-gry {
  margin: 40px 0;
}

.cta-gry-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: solid 1px #ffb900;
  border-radius: 20px;
  background: #ffffff08;
}

.cta-gry-icon {
  flex-shrink: 0;
    max-width: 130px;
}

.cta-gry-icon img {
  height: 48px;
  width: auto;
  display: block;
}

.cta-gry-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cta-gry-text strong {
  color: #fff;
  font-size: 18px;
}

.cta-gry-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.cta-gry-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #ffb900;
  color: #1b1b1b !important;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.25s ease;
}

.cta-gry-btn:hover {
  background: #e6a800;
}

@media (max-width: 575px) {
  .cta-gry-inner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
  }
  .cta-gry-btn {
    width: 100%;
    justify-content: center;
  }
}
