/* Load Inter (500) just for this module */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

.a-button {
  text-decoration: none;
  display: block;
}

/* Arrow image should animate smoothly */
.vector-img {
  transition: transform 0.5s ease;
  will-change: transform;
}

/* On hover/focus, slide the arrow 8px to the right */
.glass-button:hover .vector-img,
.glass-button:focus-within .vector-img {
  transform: translateX(8px);
}


.glass-button {
  display: inline-block;
  justify-content: center;
  border-radius: 14px;
  padding: 9px 25px 9px 30px;
  border: 1px solid #52DAFF; /* retained per original */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(6px)
  cursor: pointer;
}

.button-flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 29px;
}

.vector-img {
  width: 16.8px;
  height: 17.4px;
  /* No hover animation per request */
}

.button-text {
  color: #144268;
  text-align: right;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
  height: 22px;
}

.glassy-button-wrapper {
  display: flex;
  max-width: 1350px;
  margin: auto;
  width: 100%;
}

.glassy-button-wrapper.left {
  justify-content: flex-start;
}

.glassy-button-wrapper.center {
  justify-content: center;
}

.glassy-button-wrapper.right {
  justify-content: flex-end;
}