:root {
  --pbgb-a: #4fea9f;
  --pbgb-a2: #22b877;
}

.pbgb_hidden {
  display: none !important;
}

.pbgb_hero {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: linear-gradient(1deg, #25252e 30%, #292932 100%);
  box-shadow: 0 5px 10px #13151a4f;
  overflow: hidden;
}

.pbgb_hero_track {
  display: flex;
  transition: transform .45s cubic-bezier(.22, .9, .32, 1);
}

.pbgb_slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 340px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pbgb_slide_scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14, 14, 19, .95) 0%, rgba(14, 14, 19, .78) 45%, rgba(14, 14, 19, .35) 100%);
}

.pbgb_slide_body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  min-height: 340px;
  max-width: 62%;
  padding: 34px 38px 110px;
}

.pbgb_slide_badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid color-mix(in srgb, var(--pbgb-a) 40%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--pbgb-a) 14%, transparent);
  color: var(--pbgb-a);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.pbgb_slide_title {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .3px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .7);
}

.pbgb_slide_sub {
  max-width: 560px;
  margin: 0;
  color: #d6d8e6;
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
}

.pbgb_slide_btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  margin-top: 4px;
  padding: 0 24px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--pbgb-a), var(--pbgb-a2));
  color: #07271a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: filter .16s ease, transform .16s ease;
}

.pbgb_slide_btn:hover,
.pbgb_slide_btn:focus {
  color: #07271a;
  text-decoration: none;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.pbgb_slide_btn i {
  font-size: 18px;
}

.pbgb_arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(14, 14, 19, .6);
  color: #d6d8e6;
  font-size: 22px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.pbgb_arrow:hover {
  border-color: color-mix(in srgb, var(--pbgb-a) 45%, transparent);
  background: color-mix(in srgb, var(--pbgb-a) 18%, rgba(14, 14, 19, .8));
  color: #fff;
}

.pbgb_arrow--prev {
  left: 16px;
}

.pbgb_arrow--next {
  right: 16px;
}

.pbgb_dots {
  position: absolute;
  right: 26px;
  bottom: 96px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.pbgb_dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .16s ease, width .16s ease;
}

.pbgb_dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--pbgb-a);
}

.pbgb_seo_h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.pbgb_block {
  margin-bottom: 24px;
}

.pbgb_hero_dl {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  padding: 22px 26px 26px;
  background: linear-gradient(180deg, rgba(14, 14, 19, 0) 0%, rgba(14, 14, 19, .82) 45%, rgba(14, 14, 19, .96) 100%);
}

.pbgb_dl_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pbgb_dl {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(20, 20, 27, .72);
  color: #d6d8e6;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: pbgb_dl_in .45s cubic-bezier(.22, .9, .32, 1) both;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

@keyframes pbgb_dl_in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pbgb_dl:nth-child(1) { animation-delay: .05s; }
.pbgb_dl:nth-child(2) { animation-delay: .12s; }
.pbgb_dl:nth-child(3) { animation-delay: .19s; }
.pbgb_dl:nth-child(4) { animation-delay: .26s; }
.pbgb_dl:nth-child(5) { animation-delay: .33s; }

.pbgb_dl:hover,
.pbgb_dl:focus {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--pbgb-a) 55%, transparent);
  background: rgba(24, 24, 32, .88);
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .9);
  color: #fff;
  text-decoration: none;
}

.pbgb_dl_glow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  z-index: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.pbgb_dl:hover .pbgb_dl_glow {
  animation: pbgb_shine .75s ease;
}

@keyframes pbgb_shine {
  to { left: 130%; }
}

.pbgb_dl_icon {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #a9acc0;
  font-size: 20px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.pbgb_dl:hover .pbgb_dl_icon {
  background: color-mix(in srgb, var(--pbgb-a) 18%, transparent);
  color: var(--pbgb-a);
  transform: scale(1.06);
}

.pbgb_dl:hover .pbgb_dl_icon i {
  animation: pbgb_bounce .55s ease;
}

@keyframes pbgb_bounce {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(3px); }
}

.pbgb_dl_body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.pbgb_dl_name {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pbgb_dl_hint {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: #8f92aa;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pbgb_dl_meta {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8f92aa;
  font-size: 12px;
  font-weight: 700;
}

.pbgb_dl_size {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.pbgb_dl_arrow {
  font-size: 19px;
  transition: transform .2s ease, color .2s ease;
}

.pbgb_dl:hover .pbgb_dl_arrow {
  color: var(--pbgb-a);
  transform: translateX(4px);
}

.pbgb_dl.is-accent {
  border-color: color-mix(in srgb, var(--pbgb-a) 60%, transparent);
  background: linear-gradient(135deg, var(--pbgb-a), var(--pbgb-a2));
  color: #07271a;
}

.pbgb_dl.is-accent .pbgb_dl_name {
  color: #07271a;
}

.pbgb_dl.is-accent .pbgb_dl_hint,
.pbgb_dl.is-accent .pbgb_dl_meta {
  color: rgba(7, 39, 26, .72);
}

.pbgb_dl.is-accent .pbgb_dl_size {
  background: rgba(7, 39, 26, .14);
}

.pbgb_dl.is-accent .pbgb_dl_icon {
  background: rgba(7, 39, 26, .16);
  color: #07271a;
}

.pbgb_dl.is-accent:hover {
  color: #07271a;
  filter: brightness(1.07);
}

.pbgb_dl.is-accent:hover .pbgb_dl_icon,
.pbgb_dl.is-accent:hover .pbgb_dl_arrow {
  color: #07271a;
}

@media (prefers-reduced-motion: reduce) {
  .pbgb_dl,
  .pbgb_dl_glow,
  .pbgb_dl_icon i {
    animation: none !important;
  }
}

.pbgb_split {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.pbgb_col {
  min-width: 0;
}

.pbgb_panel {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: linear-gradient(1deg, #25252e 30%, #292932 100%);
  box-shadow: 0 5px 10px #13151a4f;
}

.pbgb_panel_head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.pbgb_panel_icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--pbgb-a) 16%, transparent);
  color: var(--pbgb-a);
  font-size: 20px;
}

.pbgb_panel_title {
  margin: 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.pbgb_feat_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pbgb_feat_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .06);
  color: #c9cbdb;
  font-size: 13.5px;
  line-height: 1.5;
  transition: color .16s ease, transform .16s ease;
}

.pbgb_feat_item:last-child {
  border-bottom: 0;
}

.pbgb_feat_item:hover {
  color: #fff;
  transform: translateX(3px);
}

.pbgb_feat_item i {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--pbgb-a) 16%, transparent);
  color: var(--pbgb-a);
  font-size: 14px;
}

.pbgb_shots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.pbgb_shot {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: #1b1b22;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pbgb_shot:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--pbgb-a) 50%, transparent);
  box-shadow: 0 16px 34px -18px rgba(0, 0, 0, .9);
}

.pbgb_shot img {
  display: block;
  width: 100%;
  height: 108px;
  object-fit: cover;
  transition: transform .35s ease, filter .2s ease;
}

.pbgb_shot:hover img {
  transform: scale(1.07);
  filter: brightness(.72);
}

.pbgb_shot_zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--pbgb-a) 88%, transparent);
  color: #07271a;
  font-size: 20px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.8);
  transition: opacity .2s ease, transform .2s ease;
}

.pbgb_shot:hover .pbgb_shot_zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.pbgb_shot_cap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 16px 10px 8px;
  background: linear-gradient(180deg, transparent, rgba(14, 14, 19, .92));
  color: #d6d8e6;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
}

.pbgb_article {
  color: #c9cbdb;
  font-size: 14px;
  line-height: 1.75;
}

.pbgb_article h2,
.pbgb_article h3,
.pbgb_article h4 {
  margin: 22px 0 10px;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
}

.pbgb_article h2 { font-size: 20px; }
.pbgb_article h3 { font-size: 17px; }
.pbgb_article h4 { font-size: 15px; }

.pbgb_article h2:first-child,
.pbgb_article h3:first-child,
.pbgb_article h4:first-child {
  margin-top: 0;
}

.pbgb_article p {
  margin: 0 0 12px;
}

.pbgb_article ul,
.pbgb_article ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.pbgb_article li {
  margin-bottom: 6px;
}

.pbgb_article a {
  color: var(--pbgb-a);
  text-decoration: none;
}

.pbgb_article a:hover {
  text-decoration: underline;
}

.pbgb_article img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.pbgb_article table {
  width: 100%;
  margin-bottom: 14px;
  border-collapse: collapse;
}

.pbgb_article th,
.pbgb_article td {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
}

.pbgb_article th {
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991px) {
  .pbgb_slide,
  .pbgb_slide_body {
    min-height: 300px;
  }
  .pbgb_slide_body {
    max-width: 78%;
    padding: 28px 30px 104px;
  }
  .pbgb_slide_title {
    font-size: 25px;
  }
  .pbgb_split {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .pbgb_slide,
  .pbgb_slide_body {
    min-height: 260px;
  }
  .pbgb_slide_body {
    max-width: 100%;
    padding: 22px 20px;
  }
  .pbgb_slide_scrim {
    background: linear-gradient(180deg, rgba(14, 14, 19, .6) 0%, rgba(14, 14, 19, .9) 100%);
  }
  .pbgb_slide_title {
    font-size: 21px;
  }
  .pbgb_slide_sub {
    font-size: 13px;
  }
  .pbgb_arrow {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .pbgb_arrow--prev { left: 10px; }
  .pbgb_arrow--next { right: 10px; }

  .pbgb_slide_body {
    padding: 22px 20px 96px;
  }
  .pbgb_hero_dl {
    padding: 18px 14px 16px;
  }
  .pbgb_dl_grid {
    flex-direction: column;
  }
  .pbgb_dl {
    width: 100%;
  }
  .pbgb_dots {
    right: 14px;
    bottom: auto;
    top: 14px;
  }
  .pbgb_panel {
    padding: 16px 18px;
  }
  .pbgb_panel_title {
    font-size: 15.5px;
  }
  .pbgb_shots {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  .pbgb_shot img {
    height: 92px;
  }
}
