.gdw-wrap {
  max-width: 340px;
  border-radius: 18px;
  border: 1px solid #E2DDD6;
  background: #FBF9F2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Hanken Grotesk', 'Inter', sans-serif;
}
.gdw-cover {
  border-radius: 12px;
  overflow: hidden;
  background: #1E4034;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gdw-cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 75% 20%, rgba(200,152,58,0.2), transparent 70%),
              radial-gradient(50% 50% at 10% 85%, rgba(46,94,78,0.25), transparent 72%);
}
.gdw-cover-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.gdw-cover-eyebrow {
  color: #E7C988;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.gdw-cover-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
  font-family: 'Fraunces', Georgia, serif;
}
.gdw-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.gdw-badge {
  background: rgba(200,152,58,0.12);
  color: #C8983A;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.gdw-pages {
  color: #6B5F52;
  font-size: 11px;
}
.gdw-heading {
  color: #1E4034;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-wrap: balance;
  margin: 0 0 4px;
  font-family: 'Fraunces', Georgia, serif;
}
.gdw-sub {
  color: #6B5F52;
  font-size: 13px;
  line-height: 1.5;
  text-wrap: balance;
  margin: 0;
}
.gdw-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #1E4034;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: inherit;
}
.gdw-btn:hover { background: #2E5E4E; }
.gdw-btn:disabled { opacity: 0.55; cursor: default; }

/* Wide / full-width banner variant */
.gdw-wrap.gdw-wide {
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
}
.gdw-wrap.gdw-wide .gdw-cover {
  width: 140px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
}
.gdw-wrap.gdw-wide .gdw-body {
  flex: 1;
  min-width: 0;
}
.gdw-wrap.gdw-wide .gdw-meta { margin-bottom: 2px; }
.gdw-wrap.gdw-wide .gdw-heading { font-size: 14px; margin: 0 0 2px; }
.gdw-wrap.gdw-wide .gdw-sub { font-size: 12px; }
.gdw-wrap.gdw-wide .gdw-btn {
  width: auto;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
}

/* Modal */
.gdw-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.gdw-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  width: 100%;
  max-width: 400px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gdw-modal-title {
  color: #1E4034;
  font-size: 17px;
  font-weight: 600;
  text-wrap: balance;
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
}
.gdw-modal-desc {
  color: #6B5F52;
  font-size: 13px;
  margin: 4px 0 0;
}
.gdw-form { display: flex; flex-direction: column; gap: 10px; }
.gdw-label { font-size: 11px; font-weight: 600; color: #3D3328; margin-bottom: 2px; display: block; }
.gdw-input {
  width: 100%;
  border: 1px solid #D9D2C8;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
  transition: border 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  font-family: inherit;
}
.gdw-input:focus { border-color: #1E4034; box-shadow: 0 0 0 3px rgba(30,64,52,0.08); }
.gdw-error { color: #dc2626; font-size: 11px; margin: 0; }
.gdw-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #8C7E70;
  cursor: pointer;
  padding: 2px 6px;
}
.gdw-close:hover { color: #3D3328; }
