/**
 * PluginCafe Locations — Showcase Card Styles
 */

/* ------------------------------------------------------------------ */
/*  Container                                                          */
/* ------------------------------------------------------------------ */

.plugincafe-showcase {
	width: 100%;
	max-width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
		Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
}

.plugincafe-showcase-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* ------------------------------------------------------------------ */
/*  Card                                                               */
/* ------------------------------------------------------------------ */

.plugincafe-showcase-card {
	background: #1a6ee1;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s;
	padding:10px !important;
}

.plugincafe-showcase-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(26, 110, 225, 0.35);
}

/* ------------------------------------------------------------------ */
/*  Image                                                              */
/* ------------------------------------------------------------------ */

.plugincafe-showcase-img {
	width: 100%;
	padding-top: 65%;
	background-size: cover;
	background-position: center;
	background-color: rgba(255, 255, 255, 0.1);
	position: relative;
}

.plugincafe-showcase-noimg {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
}

/* ------------------------------------------------------------------ */
/*  Body                                                               */
/* ------------------------------------------------------------------ */

.plugincafe-showcase-body {
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.plugincafe-showcase-title {
	font-size: 24px !important;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 4px 0;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.plugincafe-showcase-type {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 0.03em;
	opacity: 0.9;
}

.plugincafe-showcase-address {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
	margin: 0 0 16px 0;
	flex: 1;
}

/* ------------------------------------------------------------------ */
/*  Button                                                             */
/* ------------------------------------------------------------------ */

.plugincafe-showcase-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #1a6ee1;
	background: #fff;
	border: none;
	border-radius: 10px;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	align-self: flex-start;
}

.plugincafe-showcase-btn:hover {
	background: #f0f5ff;
	transform: scale(1.03);
	color: #1a6ee1;
	text-decoration: none;
}

.plugincafe-showcase-btn svg {
	flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/*  Responsive                                                         */
/* ------------------------------------------------------------------ */

@media (max-width: 600px) {
	.plugincafe-showcase-grid {
		grid-template-columns: 1fr;
	}

	.plugincafe-showcase-body {
		padding: 16px;
	}
}
