/* =========================================================
   BIZNIS MARKET - SERVICE BASE
   Zajednička osnova za sve stranice usluga
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.bm-service-standard-wrap {
  position: relative;
  width: auto;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
}

.bm-service-standard-content {
  width: min(1500px, 94vw);
  max-width: 1500px;
  margin: 0 auto;
  padding: 44px 0 26px;
}

/* Rich landing page upravlja vlastitim unutrašnjim layoutom. */
.bm-service-standard-content > [class$="-page"] {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 575px) {
  .bm-service-standard-content {
    width: min(100%, 94vw);
    padding: 30px 0 20px;
  }
}

/* =========================================================
   STANDARDNI FAQ ZA BUDUĆE USLUGE
   Koristi klase bm-service-faq-*
   ========================================================= */

.bm-service-faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.bm-service-faq-item {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e3e9ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(13, 25, 33, .035);
}

.bm-service-faq-question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 17px 68px 17px 22px;
  color: #15191c;
  background: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
}

.bm-service-faq-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #eaf8fd;
  color: #078fc3;
  font-size: 20px;
  line-height: 1;
}

.bm-service-faq-answer {
  display: none;
  width: 100%;
  padding: 0 22px 20px;
  background: #f5fafc;
}

.bm-service-faq-item.is-open .bm-service-faq-answer {
  display: block;
}

.bm-service-faq-item.is-open .bm-service-faq-question {
  color: #087fa9;
  background: #f5fafc;
}

.bm-service-faq-item.is-open .bm-service-faq-icon {
  color: #fff;
  background: #12aee8;
}
