.kreeya-callout {
  width: 100%;
  margin: 32px 0;
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* TL;DR */
.kreeya-callout--success {
  color: #308970;
  background-color: #edf9f6;
  border-color: #edf9f6;
}

/* Pro Tip */
.kreeya-callout--primary {
  color: #2c549d;
  background-color: #edf2fc;
  border-color: #edf2fc;
}

/* Quick Hack and Word of Caution */
.kreeya-callout--warning {
  color: #af803e;
  background-color: #fff8ee;
  border-color: #fff8ee;
}

.kreeya-callout__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  padding: 0;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.kreeya-callout__emoji {
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji",
    "Noto Color Emoji", sans-serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
}

.kreeya-callout__text {
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  line-height: inherit;
}

.kreeya-callout__text > :first-child {
  margin-top: 0;
}

.kreeya-callout__text > :last-child {
  margin-bottom: 0;
}

.kreeya-callout__text p {
  margin-top: 0;
  color: inherit;
  font: inherit;
}

.kreeya-callout__text ul,
.kreeya-callout__text ol {
  margin: 8px 0 0;
  padding-left: 1.35em;
  color: inherit;
}

.kreeya-callout__text ul {
  list-style: disc;
}

.kreeya-callout__text ol {
  list-style: decimal;
}

.kreeya-callout__text li {
  margin: 0 0 6px;
  padding: 0;
  color: inherit;
  font: inherit;
}

.kreeya-callout__text li:last-child {
  margin-bottom: 0;
}

.kreeya-callout__text li::marker {
  color: inherit;
}

.kreeya-callout__text a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767px) {
  .kreeya-callout {
    margin: 24px 0;
    padding: 16px;
  }
}