/* =========================================================
   Dotyrich — CTA Banner widget
   Scope: .dr-cta-wrap, .dr-cta
   ========================================================= */

.dr-cta-wrap { background: var(--dr-bg); }

.dr-cta {
	background: var(--dr-accent);
	color: #ffffff;
	padding: 96px 32px;
	position: relative;
	overflow: hidden;
}

.dr-cta__inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	text-align: left;
}

/* === Eyebrow === */
.dr-cta__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 16px;
}

/* === Title === */
.dr-cta__title {
	font-size: 48px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Serif title default */
.dr-cta-font-yes .dr-cta__title {
	font-family: 'Source Serif Pro', 'Playfair Display', Georgia, 'Times New Roman', serif !important;
	font-weight: 700;
	letter-spacing: -0.005em;
}

/* === Subtitle === */
.dr-cta__subtitle {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.6;
	margin: 18px 0 0;
	max-width: 640px;
}

.dr-cta-align-center .dr-cta__subtitle { margin-left: auto; margin-right: auto; }
.dr-cta-align-right  .dr-cta__subtitle { margin-left: auto; margin-right: 0; }

/* === Buttons === */
.dr-cta__buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 36px;
}

.dr-cta-align-center .dr-cta__buttons { justify-content: center; }
.dr-cta-align-right  .dr-cta__buttons { justify-content: flex-end; }

.dr-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	background: #ffffff;
	color: #1f4248 !important;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none !important;
	border: 1.5px solid #ffffff;
	border-radius: 100px;
	transition: var(--dr-transition);
	white-space: nowrap;
	font-family: var(--dr-font);
}

.dr-cta__btn:hover {
	background: #1f4248;
	border-color: #1f4248;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* === Responsive === */
@media (max-width: 1024px) {
	.dr-cta { padding: 80px 32px; }
	.dr-cta__title { font-size: 36px; }
}

@media (max-width: 640px) {
	.dr-cta { padding: 56px 20px; }
	.dr-cta__title { font-size: 28px; }
	.dr-cta__buttons { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 28px; }
	.dr-cta__btn { width: 100%; padding: 14px 24px; }
}
