.budi-service-selector {
  --bss-radius: 30px;
  --bss-red: #b0161d;
  --bss-red-2: #f04b4b;
  --bss-text: #06353c;
  --bss-muted: rgba(6, 53, 60, 0.7);
  --bss-card-bg: #ffffff;
  --bss-tab-bg: #F6F6F6;
  --bss-tab-bg-active: linear-gradient(45deg, #E30612, #FF4540);
  --bss-tab-border: rgba(6, 53, 60, 0.1);
  --bss-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  color: var(--bss-text);
}

.budi-service-selector__top {
  display: grid;
  gap: 50px;
  align-items: start;
}

.budi-service-selector__headline-subtitle {
  margin: 0 0 10px 0;
  color: var(--bss-red);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.budi-service-selector__headline .budi-headline__title {
  margin-bottom: 0;
}

.budi-service-selector__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.budi-service-selector__tab {
  display: grid;
  position: relative;
  z-index: 0;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: 15px;
  padding: 30px 15px !important;
  width: 100%;
  border-radius: 20px !important;
  background: var(--bss-tab-bg) !important;
  color: var(--bss-text) !important;
  box-shadow: none;
  overflow: hidden;
  cursor: pointer !important;
  transition: all 0.3s ease;
}

.budi-service-selector__tab::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  background: var(--bss-tab-bg-active);
  z-index: 0;
  transition: all 0.3s ease;
}

.budi-service-selector__tab>* {
  position: relative;
  z-index: 1;
}

.budi-service-selector__tab:hover {
  /* transform: translateY(-1px); */
}

.budi-service-selector__tab:hover::before {
  opacity: 1;
}

.budi-service-selector__tab.is-active {
  background: transparent !important;
}

.budi-service-selector__tab.is-active::before {
  opacity: 1;
}

.budi-service-selector__tab-icon {
  display: inline-flex;
  width: fit-content;
  height: 65px;
  align-items: center;
  justify-content: center;
  color: var(--color-heavy) !important;
  transition: all 0.3s ease;
}

.budi-service-selector__tab-icon svg {
  display: block;
  width: fit-content;
  height: 65px;
  color: var(--color-heavy);
  transition: all 0.3s ease;
}

.budi-service-selector__tab-icon svg path {
  fill: Var(--color-heavy);
  transition: all 0.3s ease;
}

.budi-service-selector__tab.is-active .budi-service-selector__tab-icon,
.budi-service-selector__tab:hover .budi-service-selector__tab-icon {
  color: #FFF !important;
}

.budi-service-selector__tab.is-active .budi-service-selector__tab-icon svg,
.budi-service-selector__tab:hover .budi-service-selector__tab-icon svg,
.budi-service-selector__tab.is-active .budi-service-selector__tab-icon svg path,
.budi-service-selector__tab:hover .budi-service-selector__tab-icon svg path {
  fill: #FFF;
}

.budi-service-selector__tab-title {
  font-family: 'SourceSansPro', sans-serif;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2em;
  color: var(--color-heavy) !important;
}

.budi-service-selector__tab.is-active .budi-service-selector__tab-title,
.budi-service-selector__tab:hover .budi-service-selector__tab-title {
  color: #FFF !important;
}

.budi-service-selector__bottom {
  margin-top: 60px;
}

.budi-service-selector__content-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--bss-radius);
  box-shadow: var(--bss-shadow);
  min-height: auto;
}

.budi-service-selector__content-item-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: scale(1.02);
}

.budi-service-selector__content-item-media-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bss-red), var(--bss-red-2));
}

.budi-service-selector__content-item-media.has-image .budi-service-selector__content-item-media-fallback {
  opacity: 0;
}

.budi-service-selector__content-item-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.budi-service-selector__content-item-image--mobile {
  display: none;
}

.budi-service-selector__content-item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(45deg,
      rgba(227, 6, 18, 0.9),
      /* E30612, 90% */
      rgba(255, 69, 64, 0.8)
      /* FF4540, 80% */
    );
}

.budi-service-selector__content-item-inner {
  position: relative;
  z-index: 2;
  padding: 60px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 750px;
}

.budi-service-selector__content-item-kicker {
  font-family: 'Urbanist', sans-serif;
  margin: 0 0 20px 0;
  font-weight: 500;
  font-size: 26px;
  line-height: normal;
  color: #FFF;
}

.budi-service-selector__content-item-title-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 50px;
  line-height: normal;
  margin-bottom: 20px !important;
  font-weight: 800;
  color: #fff;
}

.budi-service-selector__content-item-description {
  color: #FFF;
}

.budi-service-selector__content-item-description p {
  margin: 0;
}

.budi-service-selector__content-item-actions {
  margin-top: 20px;
}

.budi-service-selector__content-item-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bss-red);
  font-weight: 700;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease;
}

.budi-service-selector__content-item-button:hover {
  /* transform: translateY(-1px); */
  background: #fff;
}

.budi-service-selector__content-item-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.budi-service-selector__below {
  text-align: center;
  margin-top: 50px;
}

.budi-service-selector__desc {
  max-width: 1050px;
  margin: 0 auto 35px auto;
  color: var(--color-heavy);
}

.budi-service-selector__desc p {
  margin: 0;
}

.budi-service-selector__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bss-red), var(--bss-red-2));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease;
}

@media (max-width: 767px) {
  .budi-service-selector__content-item-image--desktop {
    display: none;
  }

  .budi-service-selector__content-item-image--mobile {
    display: block;
  }

  .budi-service-selector__tab {
    gap: 15px;
  }

  .budi-service-selector__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .budi-service-selector__content-item-inner {
    padding: 30px 20px;
  }

  .budi-service-selector__tab {
    padding: 25px 15px !important;
  }

  .budi-service-selector__tab-icon,
  .budi-service-selector__tab-icon svg {
    height: 45px;
  }

  .budi-service-selector__tab-title {
    font-size: 16px;
  }

  .budi-service-selector__content-item-kicker {
    margin-bottom: 5px;
    text-align: center;
    font-size: 18px;
  }

  .budi-service-selector__content-item-title {
    margin-bottom: 50vw;
  }

  .budi-service-selector__content-item-title-text {
    text-align: center;
    margin-bottom: 0;
    font-size: 30px;
  }

  .budi-service-selector__content-item-description {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }

  .budi-service-selector__content-item-actions {
    display: flex;
    justify-content: center;
  }

  div.budi-service-selector__content-item-actions a.budi-service-selector__content-item-button {
    font-size: 16px !important;
    width: fit-content !important;
  }
}