.ctb { width: 100%; }
.ctb__inner {
  	display: inline-flex;
  	align-items: center;
  	gap: .6rem;
  	flex-wrap: wrap;
	padding: 12px 16px;
}

.ctb__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
}

.ctb__text {
  line-height: 1.4;
  font-weight: 500;
}

/* Button base */
.ctb__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  font-weight: 600;
}

/* Variants */
.ctb--glassy {
	border: 1px solid rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.2);
	border-radius: 100px;
}

.ctb--gray {
  	background: #F3F3F3;
  	color: #08193D;
	border-radius: 100px;
}

.ctb--blue {
	background: #B8DBFF;
	border-color: #B8DBFF;
	border-radius: 100px;
}