/**
 * Glass Effect Button Big Styles
 */

/* Prevent paragraph wrapping */
p > .big-blue-button,
div > .big-blue-button {
  display: block;
}

.big-blue-button {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 24px;
  overflow: hidden;
  margin: 28px 0;
}

.big-blue-button .contentSectionBottom {
  position: relative;
  background: rgba(214, 214, 214, 0.3);
  background-clip: padding-box;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid transparent;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

.big-blue-button .contentSectionBottom::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, #f2f2f2 0%, #818181 40%, #ffffff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.big-blue-button .contentBottom {
  flex: 1;
}

.big-blue-button .contentBottom h2.findout {
  margin: 0 0 8px 0;
  font-size: var(--t3-size);
  line-height: var(--t3-height);
  font-weight: 700;
}

.big-blue-button .contentBottom p {
  margin: 0;
  font-size: var(--bt1-size);
  line-height: var(--bt1-height);
}

/* Glass Effect Button with Chevron */
.big-blue-button .button-chevron {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background-clip: padding-box;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.big-blue-button .button-chevron::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, #f2f2f2 0%, #818181 40%, #ffffff 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.big-blue-button .button-chevron svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .big-blue-button .contentBottom h2.findout {
    font-size: var(--t3-size-tablet);
    line-height: var(--t3-height-tablet);
  }

  .big-blue-button .contentBottom p {
    font-size: var(--bt1-size-tablet);
    line-height: var(--bt1-height-tablet);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .big-blue-button .contentSectionBottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .big-blue-button .button-chevron {
    align-self: flex-end;
    width: 50px;
    height: 50px;
  }

  .big-blue-button .contentBottom h2.findout {
    font-size: var(--t3-size-mobile);
    line-height: var(--t3-height-mobile);
  }

  .big-blue-button .contentBottom p {
    font-size: var(--bt1-size-mobile);
    line-height: var(--bt1-height-mobile);
  }
}
