:host {
  --pt-color-link: #248739;
  --pt-color-sylver: #8c9091;
  --pt-color-gray-600: #616161;
  --pt-color-gray-300: #ddd;
  --pt-color-white: #ffffff;
  --pt-color-black: #000000;

  --pt-font-family-base: "Helvetica Neue", Arial, sans-serif;
  --pt-font-family-heading: Gilroy, Arial, sans-serif;
}

.pt-btn {
  --pt-button-color-resolved: var(--pt-button-color, var(--pt-color-link, #248739));
  --pt-button-rgb-resolved: var(--pt-button-rgb, 36, 135, 57);
  --pt-button-hover-text-resolved: var(--pt-button-hover-text, #ffffff);

  z-index: 1;
  border: 1px solid var(--pt-button-color-resolved);
  color: var(--pt-button-color-resolved);
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
  padding: 1rem 1.75rem;
  font-family: var(--pt-font-family-base, "Helvetica Neue", Arial, sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 130%;
  text-decoration: none;
  display: inline-flex;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease,
    filter 0.2s ease;
  box-shadow: 0 0 0 rgba(var(--pt-button-rgb-resolved), 0);
}

.pt-btn:hover,
.pt-btn:focus-visible {
  color: var(--pt-button-hover-text-resolved);
  border-color: var(--pt-button-color-resolved);
  background-color: var(--pt-button-color-resolved);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(var(--pt-button-rgb-resolved), 0.28);
  filter: saturate(1.05);
}

.pt-btn:focus-visible {
  outline: 2px solid var(--pt-button-color-resolved);
  outline-offset: 3px;
}

.pt-btn.pt-btn--solid {
  color: var(--pt-button-hover-text-resolved);
  background-color: var(--pt-button-color-resolved);
}

.pt-btn.pt-btn--solid:hover,
.pt-btn.pt-btn--solid:focus-visible {
  filter: brightness(0.95);
}

.pt-btn.pt-btn--sm {
  padding: 0.625rem 1rem;
  font-size: 0.95rem;
}

.pt-btn.pt-btn--md {
  padding: 1rem 1.75rem;
  font-size: 1.125rem;
}

.pt-btn.pt-btn--lg {
  padding: 1.125rem 2rem;
  font-size: 1.25rem;
}

.pt-btn.pt-btn--block {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .pt-btn {
    transition: none;
  }
}

.pt-headline {
  --pt-headline-bar-width: calc(1.5em);
  --pt-headline-bar-height: calc(0.4em);
  --pt-headline-bar-gap: 0.2em;

  margin: 0;
  color: var(--pt-headline-color, var(--sylver, #8c9091));
  text-transform: uppercase;
  font-family: Gilroy, Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  white-space: pre-line;
  position: relative;
  display: inline-block;
}

.pt-headline[data-pt-headline-tag="h1"] {
  font-size: clamp(45px, 5vw, 95px);
}

.pt-headline[data-pt-headline-tag="h2"] {
  font-size: clamp(33px, 5vw, 60px);
}

.pt-headline[data-pt-headline-tag="h3"] {
  font-size: clamp(22px, 1vw, 30px);
}

.pt-headline[data-pt-headline-tag="h4"] {
  font-size: clamp(18px, 1vw, 22px);
}

.pt-headline[data-pt-headline-tag="h5"] {
  font-size: var(--desktop--text-sm, clamp(14px, 0.9vw, 16px));
  line-height: var(--desktop--text-sm, clamp(14px, 0.9vw, 16px));
}

.pt-headline[data-pt-headline-tag="h6"] {
  font-size: var(--desktop--text-xs, clamp(12px, 0.75vw, 14px));
  line-height: var(--desktop--text-xs, clamp(12px, 0.75vw, 14px));
}

.pt-headline.pt-headline--with-bar {
  position: relative;
  padding-top: calc(var(--pt-headline-bar-height) + var(--pt-headline-bar-gap));
}

.pt-headline.pt-headline--with-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--pt-headline-bar-width);
  height: var(--pt-headline-bar-height);
  background-color: var(--pt-headline-color, var(--sylver, #8c9091));
}

