/* Important info callout - solid border highlight box */
.callout {
  padding: 1.25rem 1.35rem;
  background: #fff8f5;
  border: 2px solid #f97b5f;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(249, 123, 95, 0.08);
}

.callout-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: #2a2a2a;
}

.callout-body {
  color: #525252;
  line-height: 1.55;
}

.callout-body > *:last-child {
  margin-bottom: 0;
}

.callout-body p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #525252;
}

.callout-body strong {
  color: #2a2a2a;
}

.callout-body a {
  color: #f97b5f;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callout-body a:hover {
  color: #fd6e4d;
}

.callout-actions {
  margin-top: 1rem;
}

.callout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  background: #f97b5f;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.callout-btn:hover {
  background: #fd6e4d;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 123, 95, 0.28);
}

.callout-btn:focus-visible {
  outline: 3px solid rgba(249, 123, 95, 0.45);
  outline-offset: 2px;
}

.callout-btn i {
  font-size: 0.9rem;
}

@media (max-width: 575.98px) {
  .callout {
    padding: 1.15rem 1.1rem;
  }

  .callout-title {
    font-size: 1.05rem;
  }

  .callout-btn {
    width: 100%;
  }
}
