/* Bubble pack service modal */

.bubble-pack-modal-card {
  max-width: 860px;
}

.bubble-pack-modal-body {
  padding: 0;
}

.bubble-pack-layout {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(280px, 1fr);
  gap: 0;
}

.bubble-pack-image-wrap {
  background: var(--soft);
  border-right: 1px solid var(--line);
  min-height: 360px;
}

.bubble-pack-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bubble-pack-content {
  padding: 24px;
}

.bubble-pack-lead {
  margin: 0 0 18px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 700;
}

.bubble-pack-benefits {
  display: grid;
  gap: 12px;
}

.bubble-pack-benefit {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  padding: 14px 16px;
}

.bubble-pack-benefit strong {
  display: block;
  color: var(--primary);
  font-size: .92rem;
  margin-bottom: 3px;
}

.bubble-pack-benefit span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}

.bubble-pack-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.bubble-pack-call:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .bubble-pack-layout {
    grid-template-columns: 1fr;
  }

  .bubble-pack-image-wrap {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 240px;
    max-height: 320px;
  }

  .bubble-pack-content {
    padding: 20px;
  }

  .bubble-pack-call {
    width: 100%;
  }
}
