.tn-offer-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.112);
  padding: 16px;
  z-index: 99;
}
.tn-offer {
  position: relative;
  max-width: 720px;
  width: min(92vw, 720px);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: hidden;
  background: #fff;
}
.tn-offer-body {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px 28px;
}
.tn-offer-content {
  width: 100%;
  max-width: 520px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  border: 0;
}
.tn-offer-text img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 12px;
  border-radius: 12px;
}

.tn-offer-content h3 { margin: 0 0 6px; font-size: 1.25rem; }
.tn-offer-text p { margin: 0 0 10px; }

.tn-offer-cta {
  align-self: center !important;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  background: #7EB940;
  color: #fff;
}

.tn-offer-close {
  position: absolute;
  top: 8px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #7EB940; color: #fff;
  font-size: 20px; cursor: pointer;
}
.tn-offer-close:hover,.tn-offer-cta:hover{
  background: #65A833; color:#fff !important;
}

@media (max-width: 720px) {
  .tn-offer-text img { max-height: 40vh; object-fit: cover; }
}
