/* Custom Gutenberg callout styles for Help Articles */

.wp-block-warning, .wp-block-note, .wp-block-tip, .wp-block-info {
  border-radius: 8px;
  padding: 1.1em 1.3em 1.1em 3.2em;
  margin: 1.5em 0;
  position: relative;
  font-size: 1.08em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wp-block-warning {
  background: #fff8e1;
  border-left: 6px solid #ffb300;
}
.wp-block-warning:before {
  content: "⚠️";
  position: absolute;
  left: 1em;
  top: 1.1em;
  font-size: 1.3em;
}
.wp-block-note {
  background: #e3f2fd;
  border-left: 6px solid #2196f3;
}
.wp-block-note:before {
  content: "ℹ️";
  position: absolute;
  left: 1em;
  top: 1.1em;
  font-size: 1.3em;
}
.wp-block-tip {
  background: #e8f5e9;
  border-left: 6px solid #43a047;
}
.wp-block-tip:before {
  content: "💡";
  position: absolute;
  left: 1em;
  top: 1.1em;
  font-size: 1.3em;
}
.wp-block-info {
  background: #f3e5f5;
  border-left: 6px solid #8e24aa;
}
.wp-block-info:before {
  content: "🛈";
  position: absolute;
  left: 1em;
  top: 1.1em;
  font-size: 1.3em;
}

/* Large text utility */
.wp-block-large-text {
  font-size: 2.1em;
  font-weight: 700;
  margin: 1.2em 0 0.7em 0;
  line-height: 1.15;
}

/* Code block improvements */
.wp-block-code {
  background: #181f2c;
  color: #e5e7ef;
  border-radius: 7px;
  padding: 1.1em 1.3em;
  font-size: 1.08em;
  font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
  overflow-x: auto;
}

