.btn {
  font-size: var(--text-sm);
  height: auto;
  width: auto;
  padding: 0.75rem;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  text-decoration: none;
}
.btn.pri-btn {
  color: var(--primary-foreground);
  background-color: var(--primary);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn.pri-btn:hover {
  background-color: var(--primary-hover);
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn.pri-btn.disabled {
  background: #848484;
  cursor: not-allowed;
}
.btn.btn-bordered {
  color: var(--primary);
  border: 1px solid var(--primary);
  background-color: rgba(0, 0, 0, 0);
}
.btn.btn-bordered:hover {
  color: var(--foreground);
  background-color: var(--primary-hover);
}

.btn.btn-transparent {
  background-color: transparent;
}

.btn.btn-transparent:hover {
  background-color: var(--primary-hover);
  color: white;
}

.see-all-container .btn {
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.main-btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  font-size: var(--text-sm);
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: var(--foreground);
}
.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  gap: 0.5rem;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 1px;
  padding: 0.75rem 0;
  color: var(--primary);
  text-decoration: none;
}
.btn-text::after {
  content: url("/sites/default/files/inline-images/icon/arrow-right-circled-black.svg");
  display: block;
  top: 1px;
  position: relative;
  height: 1.5rem;
  width: 1.5rem;
  object-fit: cover;
}
.btn-text:hover {
  color: var(--primary-hover);
}
.btn-large {
  text-align: center;
  width: auto;
  margin: 2rem 1.5rem 0;
  font-size: 1.25rem;
}

.card-actions-new {
  display: flex;
}

.card-actions-new > * {
  flex: 1;
  border: 2px solid var(--primary);
}

.card-actions-new > *:hover {
  border-color: var(--primary-hover);
}

.btn-text:has([data-lucide="arrow-right"]) {
  position: relative;
  max-width: max-content;
  gap: 1rem;
  font-size: var(--text-lg);
  transition: 350ms var(--ease);
  transition-property: padding, gap, color;
  isolation: isolate;
  span {
    position: relative;
    z-index: 1;
  }
  svg {
    height: 1.25rem;
    width: 1.25rem;
    transition: 350ms var(--ease);
    z-index: 1;
    position: relative;
  }
  &:before {
    content: "";
    transition: 350ms var(--ease);
    transition-property: width, border-radius, height, background-color;
    border: 1.5px solid var(--primary);
    height: 2rem;
    width: 2rem;
    border-radius: 5rem;
    position: absolute;
    right: -0.35rem;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
  }
  &:after {
    display: none;
  }
}

.btn-text:has([data-lucide="arrow-right"]):hover {
  padding-inline: 1.5rem 0.75rem;
  gap: 0.5rem;
  color: white;
  &:before {
    width: 100%;
    height: 2.5rem;
    border-radius: 5rem;
    background-color: var(--primary);
  }
}
