/* Blog Premium CTA: scoped styles that work with Woodmart and standard WordPress themes. */
.bpcta {
  --bpcta-navy: #082d5c;
  --bpcta-deep: #041b39;
  --bpcta-gold: #d9ad62;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
  margin: 34px 0;
  padding: 25px 28px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(225, 183, 105, .75);
  border-radius: 20px;
  background: linear-gradient(115deg, rgba(5, 27, 57, .98), rgba(11, 57, 111, .95));
  box-shadow: 0 16px 36px rgba(5, 29, 61, .2), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.bpcta::before,
.bpcta::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}
.bpcta::before {
  width: 240px;
  height: 240px;
  top: -154px;
  right: -42px;
  border: 1px solid rgba(235, 196, 120, .42);
  box-shadow: 0 0 0 22px rgba(235, 196, 120, .06), 0 0 0 50px rgba(235, 196, 120, .035);
}
.bpcta::after {
  width: 180px;
  height: 180px;
  bottom: -143px;
  left: 26%;
  background: rgba(255, 255, 255, .055);
  filter: blur(3px);
}
.bpcta__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #f4ce86;
  border: 1px solid rgba(242, 204, 133, .62);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.bpcta__icon svg { width: 42px; height: 42px; }
.bpcta__copy { min-width: 0; }
.bpcta__kicker {
  display: block;
  margin-bottom: 5px;
  color: #f1c77c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.bpcta__heading {
  margin: 0 !important;
  color: #fff !important;
  font-family: inherit;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-weight: 700 !important;
  line-height: 1.16 !important;
}
.bpcta__text {
  max-width: 720px;
  margin: 8px 0 0 !important;
  color: rgba(255, 255, 255, .84) !important;
  font-size: 15px;
  line-height: 1.55;
}
.bpcta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.bpcta__button {
  display: inline-flex;
  min-height: 48px;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  color: #fff !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.bpcta__button:hover { transform: translateY(-2px); color: #fff !important; }
.bpcta__button--call {
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.bpcta__button--call small { margin-top: 3px; font-size: 10px; font-weight: 500; opacity: .85; }
.bpcta__button--whatsapp {
  border: 1px solid #e8c170;
  background: linear-gradient(135deg, #e7c06e, #bc8b40);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}
.bpcta__button--whatsapp:hover { background: linear-gradient(135deg, #f1d38e, #c7954a); }
@media (max-width: 900px) {
  .bpcta { grid-template-columns: 62px minmax(0, 1fr); gap: 18px; }
  .bpcta__icon { width: 62px; height: 62px; border-radius: 15px; }
  .bpcta__icon svg { width: 36px; height: 36px; }
  .bpcta__actions { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 540px) {
  .bpcta { display: flex; flex-wrap: wrap; gap: 14px; margin: 25px 0; padding: 21px 18px; border-radius: 16px; }
  .bpcta__copy { flex: 1 1 190px; }
  .bpcta__heading { font-size: 21px !important; }
  .bpcta__text { font-size: 14px; }
  .bpcta__actions { width: 100%; }
  .bpcta__button { flex: 1 1 145px; }
}
