.gwo-alt-wrap,
.gwo-alt-wrap * {
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

.gwo-alt-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 22px;
	background: linear-gradient(135deg, #ffffff 0%, #f6fbf7 100%);
	border: 1px solid rgba(5, 121, 62, 0.10);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
	padding: 28px;
	margin-bottom: 20px;
}

.gwo-alt-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('https://file.greenwoodsdental.com/winnipeg/Branch (5).svg') no-repeat center center;
	background-size: cover;
	opacity: 0.035;
	pointer-events: none;
}

.gwo-alt-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
}

.gwo-alt-title {
	grid-column: 1 / -1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
	margin-bottom: 8px;
}

.gwo-alt-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.gwo-alt-kicker {
	display: inline-block;
	color: #63b149;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: 600;
}

.gwo-alt-date-note {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(99, 177, 73, 0.12);
	border: 1px solid rgba(99, 177, 73, 0.25);
	color: #2d7e46;
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.gwo-alt-heading {
	color: #05793e;
	line-height: 1.2;
	font-size: 1.25rem;
	font-weight: 600;
}

.gwo-alt-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
	min-width: 0;
}

@media (min-width: 768px) and (max-width: 994px) {
	.gwo-alt-grid { grid-template-columns: repeat(4, 1fr); }
}

.gwo-alt-card {
	background: #ffffff;
	border: 1px solid rgba(5, 121, 62, 0.08);
	border-radius: 8px;
	padding: 10px;
	text-align: left;
	box-shadow: 0 4px 12px rgba(5, 121, 62, 0.03);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gwo-alt-card:hover {
	transform: translateY(-2px);
	border-color: rgba(99, 177, 73, 0.3);
	box-shadow: 0 8px 16px rgba(5, 121, 62, 0.08);
}

.gwo-alt-day {
	display: block;
	color: #63b149;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 4px;
	font-size: 0.65rem;
	font-weight: 600;
}

.gwo-alt-time {
	display: block;
	color: #05793e;
	line-height: 1.25;
	font-size: 0.7rem;
	font-weight: 500;
}

.gwo-alt-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 8px;
	background: linear-gradient(135deg, #05793e 0%, #0b8f4b 100%);
	color: #ffffff !important;
	text-decoration: none !important;
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(5, 121, 62, 0.22);
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.gwo-alt-cta:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 12px 24px rgba(5, 121, 62, 0.3);
}

.gwo-alt-unavailable {
	color: #555;
	margin: 0;
	font-size: 0.85rem;
	grid-column: 1 / -1;
}

/* Current day highlight */
.gwo-alt-current-day {
	border: 1.5px solid #61b24782 !important;
	box-shadow: 0 4px 12px rgba(5, 121, 62, 0.1) !important;
}
.gwo-alt-current-day .gwo-alt-day {
	color: #61b247 !important;
}
.gwo-alt-current-day .gwo-alt-time {
	font-weight: 700 !important;
}
.gwo-alt-current-day:hover {
	border-color: #05793e !important;
}

/* Closed state */
.gwo-alt-closed {
	color: #cd7474;
	/* font-style: italic; */
	text-transform: uppercase;
}
.gwo-alt-closed-day {
	color: grey !important;
	/* font-style: italic; */
}

/* Holiday Pill */
.gwo-alt-holiday-pill {
	display: inline-block;
	background-color: #f9680a0d;
	color: #f9680a;
	font-size: 0.55rem;
	/* font-weight: 700; */
	padding: 2px 4px;
	border-radius: 4px;
	margin-right: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	font-style: normal;
	line-height: 1.2;
	vertical-align: middle;
}

.gwo-alt-holiday-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px;
    border-radius: 5px;
    background: rgba(99, 177, 73, 0.12);
    border: 1px solid rgba(99, 177, 73, 0.25);
    color: #2d7e46;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gwo-alt-closed {
	display: inline-flex;
	align-items: center;
	/* justify-content: flex-end; */
	flex-wrap: wrap;
	gap: 4px;
}

/* Responsive */
@media (max-width: 1150px) {
	.gwo-alt-inner { grid-template-columns: 1fr; }
	.gwo-alt-cta {
		justify-self: center;
		width: 100%;
		max-width: 300px;
	}
}

@media (max-width: 768px) {
	.gwo-alt-wrap {
		padding: 14px;
		border-radius: 16px;
	}
	.gwo-alt-inner { gap: 14px; }
	.gwo-alt-title { gap: 4px; margin-bottom: 4px; }
	.gwo-alt-kicker { letter-spacing: 1.5px; }
	.gwo-alt-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	.gwo-alt-card { padding: 10px; border-radius: 8px; box-shadow: none; }
	.gwo-alt-day { margin-bottom: 3px; letter-spacing: 0.5px; line-height: 1.2; }
	.gwo-alt-time { line-height: 1.2; }
	.gwo-alt-cta { max-width: none; padding: 12px 16px; border-radius: 8px; box-shadow: none; }
}

@media (max-width: 480px) {
	.gwo-alt-wrap { padding: 14px; }
	.gwo-alt-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
	.gwo-alt-card { padding: 8px; }
	.gwo-alt-kicker { letter-spacing: 1.2px; }
	.gwo-alt-cta { padding: 11px 14px; }
}

@media (min-width: 1200px) {
	.gwo-alt-time { font-size: 12px; }
}