/* Aksi cepat global */

.showcase-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.showcase-quick-actions a {
  min-width: 0;
  min-height: 88px;
  display: grid;
  align-content: center;
  justify-items: center;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border: 1px solid var(--ui-line);
  border-radius: 6px;
  color: #263c63;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.showcase-quick-actions a:hover {
  border-color: #bdd0ea;
  background: #eef4ff;
  color: var(--ui-primary);
}

.showcase-quick-actions button:hover {
  border-color: #bdd0ea;
  background: #eef4ff;
  color: var(--ui-primary);
}

.showcase-quick-actions i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f4f7fb;
  color: var(--ui-primary);
  font-size: 19px;
}

.showcase-quick-actions a,
.showcase-quick-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60px;
  border: 1px solid var(--ui-line);
  border-radius: 6px;
  color: #263c63;
  font-weight: 700;
  text-decoration: none;
}

.showcase-quick-actions form {
  margin: 0;
}

.showcase-quick-actions button {
  width: 100%;
  background: #ffffff;
}

.showcase-quick-actions a.danger {
  border-color: #fecaca;
  color: #dc2626;
}

.showcase-quick-actions span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px;
  border: 1px solid var(--ui-line);
  border-radius: 6px;
  color: #263c63;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.showcase-quick-actions .is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

@media (max-width: 960px) {
  .showcase-quick-actions {
    grid-template-columns: 1fr;
  }

  .showcase-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 640px) {

  .showcase-quick-actions a {
    min-height: 78px;
    padding: 10px 8px;
  }

  .showcase-quick-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


/* isi pesan */

.pesan-main {
  min-width: 0;
}

/* layanan */
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  /* 2. Memposisikan teks multi-baris agar rata tengah */
  text-align: center;
  /* justify-content: center; */
  /* Tengah horizontal (sumbu utama) */
  align-items: center;
  /* Tengah vertikal (sumbu silang) */
}

.number-services {
  flex-shrink: 0;

  width: 30px;
  height: 30px;

  background: linear-gradient(180deg, #2d7fff, #1757d8);
  color: #fff;

  border-radius: 12px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  font-weight: 700;

  box-shadow: 0 5px 15px rgba(34, 95, 255, 0.3);
}

.card-header h3 {
  margin: 0;
  line-height: 1.05;
  font-size: 22px;
  font-weight: 800;
  color: #081a44;
  text-transform: uppercase;
}

.desc {
  color: #4d5b75;
  line-height: 1.7;
  font-size: 15px;
  min-height: 90px;
  /* agar semua card sejajar */
}

.feature-list {
  margin-top: 10px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.feature-item-service {
  text-align: center;
  border: 1px solid var(--tj-color-border-2);
  padding: 10px 15px;
  background-color: var(--tj-color-common-white);
}

.icon-services {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #d8e4ff;
  /* background: #f8fbff; */

  font-size: 24px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: auto auto 10px;
}

.icon-services i {
  color: #1f64ff;
}

.card-grid {
  margin-bottom: 20px;
}

.card-image {
  min-height: 230px;
  /* posisi gambar rata */
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-image img {
  width: 100%;
  object-fit: contain;
}


