.cta-block {
	text-align: center;
	padding: 2rem 1.5rem;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;

	background-color: var(--wp--preset--color--custom-accent-2-mustard-gold);

    background-image: url('../../images/dragon_pattern01.png');
	background-repeat: repeat;
	background-position: top left;
	background-size:cover;
	
	color: var(--wp--preset--color--custom-surface);
}


/* White buttons */
.cta-button {
    display: inline-block;
	padding: 0.6rem 1rem;
	text-decoration: none;
	border: none;
	border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(36, 36, 36, 0.2);
}

.cta-button::before {
    background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.10),
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.04)
  );
}

.cta-button:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 12px 30px rgba(36, 36, 36, 0.4);
}

