/* =========================================================
   TC Design System — custom block styling
   ========================================================= */

.tc-hotel-callout,
.tc-tour-widget {
	background-color: #ffffff;
	border: 1px solid var(--tc-color-accent-2, #c9a86a);
	border-radius: var(--tc-radius-image, 8px);
	box-shadow: var(--tc-shadow-soft, 0 4px 20px rgba(0,0,0,0.05));
	padding: 1.5rem;
	margin: 1.5rem 0;
	font-family: var(--tc-font-body, "DM Sans", sans-serif);
	color: var(--tc-color-text, #333333);
}

/* ---- Book This Hotel callout ---- */
.tc-hotel-callout__name {
	font-family: var(--tc-font-heading, "Playfair Display", serif);
	font-size: 1.4rem;
	margin: 0 0 0.75rem;
	color: var(--tc-color-text, #333333);
}

.tc-hotel-callout__lists {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
}

.tc-hotel-callout__pros,
.tc-hotel-callout__cons {
	flex: 1 1 220px;
	margin: 0;
	padding-left: 1.2rem;
}

.tc-hotel-callout__pros-title,
.tc-hotel-callout__cons-title {
	font-weight: 700;
	display: block;
	margin-bottom: 0.4rem;
}

.tc-hotel-callout__pros-title {
	color: #2f7d4f;
}

.tc-hotel-callout__cons-title {
	color: #b3401d;
}

/* ---- Tour Widget ---- */
.tc-tour-widget__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.tc-tour-widget__name {
	font-family: var(--tc-font-heading, "Playfair Display", serif);
	font-size: 1.3rem;
	margin: 0;
}

.tc-tour-widget__price {
	background-color: color-mix(in oklch, var(--tc-color-accent-2, #c9a86a) 18%, white);
	border: 1px solid var(--tc-color-accent-2, #c9a86a);
	border-radius: 4px;
	padding: 0.2em 0.7em;
	font-weight: 700;
	font-size: 0.95rem;
	white-space: nowrap;
}

.tc-tour-widget__description {
	margin: 0 0 1.25rem;
	line-height: 1.6;
}

@media (max-width: 600px) {
	.tc-hotel-callout__lists {
		flex-direction: column;
	}
}
