.pt2026-popup {
  position: fixed;
  z-index: 9999;
  left: 0.7rem;
  bottom: 1.1rem;
  width: calc(100vw - 1.4rem);
  height: var(--h-slide-tallest, auto);
  min-height: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 4px 20px 0 rgb(0 0 0 / 0.25);
  color: #000000;
  user-select: none;
  transform: translateY(130%);
  transition: opacity 0.5s ease;
}

.pt2026-popup,
.pt2026-popup * {
  box-sizing: border-box;
}

.pt2026-popup__slide {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  height: var(--h, auto);
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 1.3125rem 1.125rem;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease;
}

.pt2026-popup__slide:first-of-type {
  position: relative;
}

.pt2026-popup__slide[data-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.pt2026-popup__body {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.pt2026-popup__title {
  grid-column: span 10;
  margin-bottom: 0.5rem;
  color: var(--c);
}

.pt2026-popup__title h1,
.pt2026-popup__title h2,
.pt2026-popup__title h3,
.pt2026-popup__title h4,
.pt2026-popup__title h5,
.pt2026-popup__title h6,
.pt2026-popup__title p {
  margin: 0;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

.pt2026-popup__text {
  grid-column: span 12;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--c);
}

.pt2026-popup__text p {
  margin: 0;
}

.pt2026-popup__text p + p {
  margin-top: 0.5rem;
}

.pt2026-popup__text a {
  cursor: pointer;
  border-bottom: 1px solid var(--pt2026-popup-highlight, #008ce6);
}
.pt2026-popup__text a:hover {
  color: var(--pt2026-popup-highlight, #008ce6);
}

.pt2026-popup__footer {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.pt2026-popup .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.pt2026-popup .btn > div:first-child {
  display: none;
}

.pt2026-popup .btn > div:last-child,
.pt2026-popup .pt2026-popup__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.pt2026-popup .btn:hover > div:last-child,
.pt2026-popup .btn:focus-visible > div:last-child {
  background: #008ce6;
  border-color: #008ce6;
  outline: none;
}

.pt2026-popup__close-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.pt2026-popup__close-button:hover,
.pt2026-popup__close-button:focus-visible {
  background: var(--pt2026-popup-highlight, #008ce6);
  border-color: var(--pt2026-popup-highlight, #008ce6);
  outline: none;
}

.pt2026-popup__close-button svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5px;
  transition: transform 0.3s ease;
}

.pt2026-popup__close-button[data-active="true"] svg {
  transform: rotate(45deg);
}

.pt2026-popup__pagination {
  position: absolute;
  right: 1.125rem;
  bottom: 1.125rem;
  z-index: 1;
  display: flex;
  gap: 0.3125rem;
}

.pt2026-popup__pagination-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #000000;
  cursor: pointer;
}

.pt2026-popup__pagination-dot-inner {
  display: block;
  width: 40%;
  height: 40%;
  border-radius: 999px;
  background: #ffffff;
}

.pt2026-popup__pagination-dot[data-active="false"] .pt2026-popup__pagination-dot-inner {
  display: none;
}

@media (min-width: 1000px) {
  .pt2026-popup {
    left: 3rem;
    bottom: 3rem;
    width: var(--w-desk-lg);
    min-height: 150px;
  }
}
