/* ============================================================================
   Instant Provisioning sub-hero strip
   Auto-loaded by Propshaft. Do NOT @import in application.css.
   ============================================================================ */

.mk-instant-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.65); /* token-ok */
  color: #ffffff; /* token-ok */
  padding: var(--arp-space-4);
}

.mk-instant-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--arp-space-4);
  text-align: center;
}

.mk-instant-strip-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--arp-space-3);
  font-size: var(--bulma-size-6);
}

.mk-instant-strip-item {
  display: flex;
  align-items: center;
  gap: var(--arp-space-2);
}

.mk-instant-strip-item strong {
  color: inherit;
}

.mk-instant-strip-sep {
  display: none;
  opacity: 0.45;
}

.mk-instant-strip-btn {
  background: #ffffff; /* token-ok */
  color: var(--arp-blue-900);
  border: none;
  font-weight: 600;
  white-space: nowrap;
}

.mk-instant-strip-btn:hover,
.mk-instant-strip-btn:focus {
  background: var(--arp-gray-100);
  color: var(--arp-blue-900);
}

@media (max-width: 768px) {
  /* The strip is absolutely positioned and does not reserve layout space,
     so reserve room beneath the hero text to keep it clear of the strip. */
  .mk-page-hero .hero-body {
    padding-bottom: 7rem; /* token-ok -- approximates the stacked mobile strip height */
  }
}

@media (min-width: 769px) {
  .mk-instant-strip-inner {
    flex-direction: row;
    justify-content: center;
    gap: var(--arp-space-6);
    text-align: left;
  }

  .mk-instant-strip-items {
    flex-direction: row;
    align-items: center;
    gap: var(--arp-space-5);
  }

  .mk-instant-strip-sep {
    display: inline;
  }
}
