/* SERVICE CLINIC CLOSURE CALLOUT */
.clinic-callout {
  position: relative;
  overflow: hidden;

  /* layout */
  width: 100%;
  margin: 1.25rem 0;
  padding: 1.25rem;

  /* styling */
  border-left: 6px solid;
  border-right: 6px solid;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

/* Urgent red theme */
.clinic-callout.urgent {
  background-color: #fef2f2;
  border-color: #dc2626;
}

/* Header layout */
.callout-header {
  display: flex;
  align-items: center;
  justify-content: center;
  /* keeps it centered */
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Inline icon */
.callout-icon {
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  line-height: 42px;

  border-radius: 50%;
  background-color: #7f1d1d;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  opacity: 0.7;

  flex-shrink: 0;
}

/* Make heading align icon + text on same row */
.callout-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  margin: 0 0 0.5rem 0;
  font-size: clamp(1.8rem, 5vw, 2.425rem);
  color: #7f1d1d;
}

/* Slightly adjust icon for heading alignment */
.callout-title .callout-icon {
  width: 38px;
  height: 38px;
  line-height: 38px;
  font-size: 1.3rem;
}

/* Ensure text stays above icon */
.callout-content {
  position: relative;
  z-index: 1;

  /* keep content nicely centered and readable */
  max-width: 980px;
  margin: 0 auto;
}

/* heading */
.callout-content h2 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.8rem, 5vw, 2.425rem);
  color: #7f1d1d;
}

/* base paragraph */
.callout-content p {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2937;
}

/* emphasized paragraphs */
.callout-emphasis {
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  color: #7f1d1d !important;
  margin-bottom: 0.75rem;
}

/* CTA button */
.callout-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  background-color: #dc2626;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 8px;
}

.callout-btn:hover,
.callout-btn:focus {
  background-color: #b91c1c;
  color: #fff !important;
  text-decoration: none !important;
}

.callout-btn:focus {
  outline: 3px solid #fecaca;
  outline-offset: 2px;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .clinic-callout {
    padding: 1rem;
  }

  .callout-btn {
    width: 100%;
    text-align: center;
  }
}

/* END SERVICE CLINIC CLOSURE CALLOUT */


/* existing styles you had */
.location-card {
  position: relative;
  overflow: hidden;
}

.closing-ribbon {
  position: absolute;
  top: 2px;
  right: 6px;
  padding: 6px 10px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #d9534f;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.closing-note {
  margin-top: 8px;
  font-size: 12px;
  color: #a94442;
}

.light-red-bg {
  background-color: #fff6f6;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #dc2626;
}