/*
 * Weekly Giving Calculator
 * ------------------------
 * Everything is scoped under .hosgc so the widget survives an opinionated
 * theme (Divi included) without leaking styles back out.
 */

.hosgc {
	--hosgc-navy: #062653;
	--hosgc-navy-ink: #082b54;
	--hosgc-teal: #1fb7b5;
	--hosgc-teal-bright: #3ec7bd;
	--hosgc-teal-solid: #108080;
	--hosgc-teal-deep: #0f6a6c;
	--hosgc-teal-ink: #12706b;
	--hosgc-blue: #1473d4;
	--hosgc-blue-ink: #1160c4;
	--hosgc-gold: #c08a17;
	--hosgc-gold-ink: #92680c;
	--hosgc-ink: #33455c;
	--hosgc-muted: #647285;
	--hosgc-on-navy: #ffffff;
	--hosgc-on-navy-muted: #bccde2;
	--hosgc-hairline: rgba(255, 255, 255, 0.13);
	--hosgc-tile-annual: #edf5f2;
	--hosgc-tile-families: #eef4fd;
	--hosgc-tile-tax: #fdf6ea;
	--hosgc-cta-bg: #e9f4f1;
	--hosgc-radius-lg: 18px;
	--hosgc-radius-md: 14px;
	--hosgc-radius-sm: 10px;
	--hosgc-focus: #3ec7bd;
	--hosgc-font: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, sans-serif;
	--hosgc-font-script: "Segoe Script", "Bradley Hand", "Brush Script MT", "Snell Roundhand", cursive;

	font-family: var(--hosgc-font);
	color: var(--hosgc-ink);
	line-height: 1.45;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	container-type: inline-size;
	-webkit-font-smoothing: antialiased;
}

/* Reset just enough that theme styles cannot reshape the widget. */
.hosgc *,
.hosgc *::before,
.hosgc *::after {
	box-sizing: border-box;
}

.hosgc p,
.hosgc h2,
.hosgc h3,
.hosgc fieldset,
.hosgc legend {
	margin: 0;
	padding: 0;
	border: 0;
	text-transform: none;
}

.hosgc button,
.hosgc input,
.hosgc select {
	font: inherit;
	color: inherit;
	margin: 0;
	max-width: 100%;
}

.hosgc button {
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	text-align: inherit;
}

.hosgc .hosgc-icon {
	flex: none;
	display: block;
}

.hosgc .hosgc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.hosgc :focus-visible {
	outline: 3px solid var(--hosgc-focus);
	outline-offset: 3px;
	border-radius: 4px;
}

/*
 * The teal ring only has the contrast it needs against the navy hero. On the
 * white controls and the light call-to-action strip, ring in navy instead —
 * inset where the control's own background is what the ring must show against.
 */
.hosgc .hosgc-amount__step:focus-visible,
.hosgc .hosgc-select__input:focus-visible {
	outline: 3px solid var(--hosgc-navy);
	outline-offset: -3px;
}

.hosgc .hosgc-cta__button:focus-visible {
	outline: 3px solid var(--hosgc-navy);
	outline-offset: 3px;
}

/* ---------------------------------------------------------------- Hero -- */

.hosgc .hosgc__hero {
	display: grid;
	grid-template-columns: minmax(0, 2fr) max-content minmax(0, 1.35fr) minmax(0, 1.55fr);
	background: var(--hosgc-navy);
	border-radius: var(--hosgc-radius-lg);
	padding: 38px 40px;
	color: var(--hosgc-on-navy);
}

.hosgc .hosgc__intro {
	padding-right: 28px;
}

.hosgc .hosgc__title {
	font-size: 1.95rem;
	font-size: clamp(1.4rem, 2.2cqi, 2.05rem);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.015em;
	color: var(--hosgc-on-navy);
}

.hosgc .hosgc__title-em {
	display: block;
	font-size: 1.33em;
	font-weight: 700;
	line-height: 1.08;
	margin-top: 0.1em;
}

.hosgc .hosgc__accent {
	color: var(--hosgc-teal-bright);
}

.hosgc .hosgc__lede {
	margin-top: 1.15em;
	font-size: 1.15rem;
	font-size: clamp(1rem, 1.5cqi, 1.2rem);
	font-weight: 600;
	line-height: 1.4;
	color: var(--hosgc-on-navy);
}

.hosgc .hosgc__sub {
	margin-top: 0.75em;
	font-size: 1.05rem;
	font-size: clamp(0.95rem, 1.38cqi, 1.12rem);
	line-height: 1.45;
	color: var(--hosgc-on-navy-muted);
}

/* -------------------------------------------------------------- Fields -- */

.hosgc .hosgc-field {
	padding: 2px 0 2px 30px;
	border-left: 1px solid var(--hosgc-hairline);
	min-width: 0;
}

.hosgc .hosgc-field + .hosgc-field {
	margin-left: 26px;
}

.hosgc .hosgc-field--frequency {
	padding-right: 4px;
}

.hosgc .hosgc-field__label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--hosgc-on-navy-muted);
	margin-bottom: 14px;
	line-height: 1.3;
}

.hosgc .hosgc-field__help {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 14px;
	font-size: 0.9375rem;
	line-height: 1.4;
	color: var(--hosgc-on-navy-muted);
}

.hosgc .hosgc-field__help .hosgc-icon {
	margin-top: 1px;
	opacity: 0.85;
}

/* Frequency ------------------------------------------------------------- */

/*
 * A <legend> is laid out inside its fieldset's border box, which notches the
 * divider line and swallows the field's padding-top. Floating it makes it an
 * ordinary block box, so the frequency field matches the other two.
 */
.hosgc .hosgc-field--frequency > .hosgc-field__label {
	float: left;
	width: 100%;
}

.hosgc .hosgc-choices {
	display: grid;
	gap: 10px;
	clear: both;
}

.hosgc .hosgc-choice {
	position: relative;
	display: block;
}

.hosgc .hosgc-choice__input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	margin: 0;
	pointer-events: none;
}

.hosgc .hosgc-choice__label {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 52px;
	padding: 8px 12px;
	border: 1.5px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--hosgc-radius-sm);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--hosgc-on-navy);
	cursor: pointer;
	transition: background-color 0.16s ease, border-color 0.16s ease;
}

.hosgc .hosgc-choice__label:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.4);
}

.hosgc .hosgc-choice__text {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* The tick is the non-colour cue for the selected option. */
.hosgc .hosgc-choice__label .hosgc-icon--check {
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.16s ease, transform 0.16s ease;
}

.hosgc .hosgc-choice__input:checked + .hosgc-choice__label {
	background: var(--hosgc-teal-solid);
	border-color: var(--hosgc-teal-solid);
	font-weight: 700;
}

.hosgc .hosgc-choice__input:checked + .hosgc-choice__label .hosgc-icon--check {
	opacity: 1;
	transform: none;
}

.hosgc .hosgc-choice__input:focus-visible + .hosgc-choice__label {
	outline: 3px solid var(--hosgc-focus);
	outline-offset: 3px;
}

/* Amount ---------------------------------------------------------------- */

.hosgc .hosgc-amount {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 52px;
	align-items: stretch;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	min-height: 72px;
}

.hosgc .hosgc-amount__step {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hosgc-navy-ink);
	border-right: 1px solid #e4eaf1;
	transition: background-color 0.15s ease;
}

.hosgc .hosgc-amount__step:last-child {
	border-right: 0;
	border-left: 1px solid #e4eaf1;
}

.hosgc .hosgc-amount__step:hover:not([aria-disabled="true"]) {
	background: #f2f6fa;
}

.hosgc .hosgc-amount__step[aria-disabled="true"] {
	opacity: 0.35;
	cursor: not-allowed;
	background: none;
}

.hosgc .hosgc-amount__value {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1px;
	padding: 4px 6px;
	min-width: 0;
}

.hosgc .hosgc-amount__symbol,
.hosgc .hosgc-amount__input {
	font-size: 1.75rem;
	font-size: clamp(1.25rem, 2.05cqi, 1.85rem);
	font-weight: 700;
	color: var(--hosgc-navy-ink);
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.hosgc .hosgc-amount__input {
	width: auto;
	flex: 0 1 auto;
	min-width: 1.5ch;
	max-width: 100%;
	border: 0;
	background: transparent;
	padding: 0;
	text-align: left;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 4px;
}

.hosgc .hosgc-amount__value:focus-within {
	outline: 3px solid var(--hosgc-teal-solid);
	outline-offset: -3px;
	border-radius: 8px;
}

.hosgc .hosgc-amount__input:focus,
.hosgc .hosgc-amount__input:focus-visible {
	outline: none;
}

.hosgc .hosgc-amount__unit {
	margin-top: 11px;
	text-align: center;
	font-size: 1.0625rem;
	color: var(--hosgc-on-navy-muted);
}

.hosgc .hosgc-amount__error {
	margin-top: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	color: #ffd7cf;
	background: rgba(214, 61, 34, 0.28);
	border-left: 3px solid #ff8b6b;
	padding: 8px 10px;
	border-radius: 6px;
}

.hosgc .hosgc-amount__error[hidden] {
	display: none;
}

/* Handwritten nudge towards the amount control. Decorative only. */
.hosgc .hosgc-annotation {
	display: none;
	align-items: flex-end;
	gap: 6px;
	margin-top: 6px;
	color: var(--hosgc-teal-bright);
}

.hosgc .hosgc-annotation__arrow {
	flex: none;
	margin-bottom: 2px;
}

.hosgc .hosgc-annotation__text {
	font-family: var(--hosgc-font-script);
	font-size: 1.1rem;
	line-height: 1.1;
	padding-bottom: 4px;
	white-space: nowrap;
}

/* Tax bracket ----------------------------------------------------------- */

.hosgc .hosgc-select {
	position: relative;
	display: block;
}

.hosgc .hosgc-select__input {
	width: 100%;
	min-height: 62px;
	padding: 12px 30px 12px 12px;
	background: #fff;
	border: 1.5px solid #fff;
	border-radius: 12px;
	color: var(--hosgc-navy-ink);
	font-size: 1rem;
	font-size: clamp(0.875rem, 1.3cqi, 1rem);
	font-weight: 600;
	line-height: 1.3;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	text-overflow: ellipsis;
}

.hosgc .hosgc-select .hosgc-icon--chevron-down {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--hosgc-navy-ink);
	pointer-events: none;
}

/* --------------------------------------------------------------- Tiles -- */

.hosgc .hosgc-tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 18px;
}

.hosgc .hosgc-tile {
	border-radius: var(--hosgc-radius-md);
	padding: 27px 26px 28px;
	display: flex;
	flex-direction: column;
}

.hosgc .hosgc-tile--annual {
	background: var(--hosgc-tile-annual);
}

.hosgc .hosgc-tile--families {
	background: var(--hosgc-tile-families);
}

.hosgc .hosgc-tile--tax {
	background: var(--hosgc-tile-tax);
}

.hosgc .hosgc-tile__head {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 62px;
}

.hosgc .hosgc-tile__badge {
	flex: none;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.hosgc .hosgc-tile--annual .hosgc-tile__badge {
	background: var(--hosgc-teal-ink);
}

.hosgc .hosgc-tile--families .hosgc-tile__badge {
	background: var(--hosgc-blue);
}

.hosgc .hosgc-tile--tax .hosgc-tile__badge {
	background: var(--hosgc-gold);
}

.hosgc .hosgc-tile__heading {
	font-size: 1.15rem;
	font-size: clamp(0.95rem, 1.62cqi, 1.25rem);
	font-weight: 700;
	line-height: 1.24;
	letter-spacing: 0.005em;
	text-transform: uppercase;
}

.hosgc .hosgc-tile--annual .hosgc-tile__heading {
	color: var(--hosgc-teal-ink);
}

.hosgc .hosgc-tile--families .hosgc-tile__heading {
	color: var(--hosgc-blue-ink);
}

.hosgc .hosgc-tile--tax .hosgc-tile__heading {
	color: var(--hosgc-gold-ink);
}

.hosgc .hosgc-figure {
	margin-top: 17px;
	text-align: center;
	font-size: 3.5rem;
	font-size: clamp(2.5rem, 6.1cqi, 4.6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.035em;
	color: var(--hosgc-navy-ink);
	overflow-wrap: anywhere;
}

.hosgc .hosgc-figure__symbol {
	font-size: 0.62em;
	font-weight: 700;
	vertical-align: 0.2em;
	letter-spacing: -0.02em;
}

.hosgc .hosgc-tile__unit {
	margin-top: 10px;
	text-align: center;
	font-size: 1.35rem;
	font-size: clamp(1.1rem, 1.98cqi, 1.5rem);
	font-weight: 600;
	line-height: 1.2;
}

.hosgc .hosgc-tile--annual .hosgc-tile__unit {
	color: var(--hosgc-teal-ink);
}

.hosgc .hosgc-tile--families .hosgc-tile__unit {
	color: var(--hosgc-blue-ink);
}

.hosgc .hosgc-tile--tax .hosgc-tile__unit {
	color: var(--hosgc-gold-ink);
}

.hosgc .hosgc-tile__note {
	margin-top: 19px;
	padding-top: 17px;
	border-top: 1px solid rgba(8, 43, 84, 0.11);
	text-align: center;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--hosgc-ink);
}

/* ----------------------------------------------------------------- CTA -- */

.hosgc .hosgc-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
	flex-wrap: wrap;
	margin-top: 16px;
	padding: 19px 24px;
	background: var(--hosgc-cta-bg);
	border-radius: var(--hosgc-radius-md);
}

.hosgc .hosgc-cta__message {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
	flex: 1 1 380px;
}

.hosgc .hosgc-cta__badge {
	flex: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--hosgc-teal-ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hosgc .hosgc-cta__title {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--hosgc-teal-ink);
}

.hosgc .hosgc-cta__text {
	margin-top: 2px;
	font-size: 1rem;
	line-height: 1.4;
	color: var(--hosgc-ink);
}

.hosgc .hosgc-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex: 0 1 auto;
	min-height: 60px;
	padding: 16px 34px;
	background: var(--hosgc-teal-deep);
	color: #fff;
	border-radius: var(--hosgc-radius-sm);
	font-size: 1.1rem;
	font-size: clamp(1rem, 1.5cqi, 1.1875rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(15, 106, 108, 0.22);
	transition: background-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.hosgc .hosgc-cta__button:hover,
.hosgc .hosgc-cta__button:focus {
	background: #0c5a5c;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(15, 106, 108, 0.28);
}

.hosgc .hosgc-cta__button:active {
	transform: none;
}

/* ---------------------------------------------------------- Disclaimer -- */

.hosgc .hosgc-disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 13px;
	padding: 0 4px;
	color: var(--hosgc-muted);
	font-size: 0.8125rem;
	line-height: 1.5;
}

.hosgc .hosgc-disclaimer .hosgc-icon {
	margin-top: 2px;
	opacity: 0.75;
}

.hosgc .hosgc-disclaimer p + p {
	margin-top: 5px;
}

/* -------------------------------------------------------- Wide screens -- */

@container (min-width: 1240px) {
	.hosgc .hosgc-annotation {
		display: flex;
	}
}

/* ------------------------------------------------------------- Tablet -- */

@container (max-width: 1239px) {
	.hosgc .hosgc__hero {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 1.5fr);
		row-gap: 30px;
		padding: 34px 30px;
	}

	.hosgc .hosgc__intro {
		grid-column: 1 / -1;
		padding-right: 0;
	}

	.hosgc .hosgc__intro .hosgc__lede,
	.hosgc .hosgc__intro .hosgc__sub {
		max-width: 62ch;
	}

	.hosgc .hosgc-field {
		padding-left: 24px;
	}

	.hosgc .hosgc-field + .hosgc-field {
		margin-left: 20px;
	}

	.hosgc .hosgc__intro + .hosgc-field {
		padding-left: 0;
		border-left: 0;
	}

	.hosgc .hosgc-tile {
		padding: 26px 22px 28px;
	}

	.hosgc .hosgc-tile__badge {
		width: 52px;
		height: 52px;
	}
}

@container (max-width: 979px) {
	.hosgc .hosgc-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hosgc .hosgc-tile--tax {
		grid-column: 1 / -1;
	}
}

/* ------------------------------------------------------------- Mobile -- */

@container (max-width: 859px) {
	.hosgc .hosgc__hero {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 26px;
		padding: 28px 22px 30px;
		border-radius: var(--hosgc-radius-md);
	}

	.hosgc .hosgc-field,
	.hosgc .hosgc__intro + .hosgc-field {
		padding: 24px 0 0;
		border-left: 0;
		border-top: 1px solid var(--hosgc-hairline);
	}

	.hosgc .hosgc-field + .hosgc-field {
		margin-left: 0;
	}

	.hosgc .hosgc-choices {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.hosgc .hosgc-choice__label {
		justify-content: center;
		gap: 6px;
		padding: 8px 8px;
		font-size: 0.875rem;
		/* Three side-by-side buttons at 320px leave "Fortnightly" ~70px. */
		font-size: clamp(0.72rem, 3.3cqi, 0.9375rem);
		text-align: center;
	}

	.hosgc .hosgc-choice__label .hosgc-icon--calendar {
		display: none;
	}

	.hosgc .hosgc-choice__text {
		flex: 0 1 auto;
	}

	.hosgc .hosgc-choice__label .hosgc-icon--check {
		display: none;
	}

	/* Colour is not the only cue: the selected option also gains a ring. */
	.hosgc .hosgc-choice__input:checked + .hosgc-choice__label {
		box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
	}

	.hosgc .hosgc-amount {
		grid-template-columns: 64px minmax(0, 1fr) 64px;
		min-height: 64px;
	}

	.hosgc .hosgc-amount__value {
		justify-content: center;
	}

	.hosgc .hosgc-tiles {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
		margin-top: 16px;
	}

	.hosgc .hosgc-tile--tax {
		grid-column: auto;
	}

	.hosgc .hosgc-tile {
		padding: 24px 22px 26px;
	}

	.hosgc .hosgc-figure {
		font-size: clamp(3rem, 15cqi, 4.25rem);
		margin-top: 16px;
	}

	.hosgc .hosgc-tile__unit {
		font-size: clamp(1.15rem, 5cqi, 1.4rem);
	}

	.hosgc .hosgc-tile__note {
		margin-top: 18px;
		padding-top: 16px;
	}

	.hosgc .hosgc-cta {
		flex-direction: column;
		align-items: stretch;
		gap: 18px;
		padding: 22px 20px;
	}

	.hosgc .hosgc-cta__message {
		flex: 1 1 auto;
	}

	.hosgc .hosgc-cta__button {
		width: 100%;
		padding: 16px 20px;
	}
}

@container (max-width: 420px) {
	/* Font size is left to the clamp above, which already scales the label
	   down far enough for three buttons at 320px. */
	.hosgc .hosgc-choice__label {
		padding: 8px 4px;
	}

	.hosgc .hosgc-cta__button {
		font-size: 1rem;
		letter-spacing: 0.01em;
	}
}

/* ------------------------------------------------------- Preferences -- */

@media (prefers-reduced-motion: reduce) {
	.hosgc *,
	.hosgc *::before,
	.hosgc *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.hosgc .hosgc-cta__button:hover,
	.hosgc .hosgc-cta__button:focus {
		transform: none;
	}
}

@media (forced-colors: active) {
	.hosgc .hosgc-choice__input:checked + .hosgc-choice__label {
		border-width: 3px;
	}

	/*
	 * Forced colours replace the teal fill and strip the box-shadow ring, so
	 * the tick becomes the only selection cue — show it for the checked
	 * option at every width, and only for that one.
	 */
	.hosgc .hosgc-choice__input:checked + .hosgc-choice__label .hosgc-icon--check {
		display: block;
		opacity: 1;
	}
}

/*
 * Container queries are how this widget adapts to the space it is actually
 * given. On a browser without them (before Chrome 105 / Safari 16 /
 * Firefox 110) none of the blocks above apply, which would leave the
 * four-column hero on a phone. Fall back to viewport media queries there.
 */
@supports not (container-type: inline-size) {
	@media (max-width: 1239px) {
		.hosgc .hosgc__hero {
			grid-template-columns: minmax(0, 1fr);
			row-gap: 26px;
			padding: 28px 22px 30px;
		}

		.hosgc .hosgc-field,
		.hosgc .hosgc__intro + .hosgc-field {
			padding: 24px 0 0;
			margin-left: 0;
			border-left: 0;
			border-top: 1px solid var(--hosgc-hairline);
		}

		.hosgc .hosgc__intro {
			padding-right: 0;
		}

		.hosgc .hosgc-choices {
			grid-template-columns: repeat(3, minmax(0, 1fr));
			gap: 8px;
		}

		.hosgc .hosgc-choice__label {
			justify-content: center;
			padding: 8px;
			font-size: 0.875rem;
		}

		.hosgc .hosgc-choice__label .hosgc-icon--calendar,
		.hosgc .hosgc-choice__label .hosgc-icon--check {
			display: none;
		}

		.hosgc .hosgc-choice__input:checked + .hosgc-choice__label {
			box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
		}

		.hosgc .hosgc-tiles {
			grid-template-columns: minmax(0, 1fr);
		}

		.hosgc .hosgc-tile--tax {
			grid-column: auto;
		}

		.hosgc .hosgc-cta {
			flex-direction: column;
			align-items: stretch;
		}

		.hosgc .hosgc-cta__button {
			width: 100%;
		}

		.hosgc .hosgc-annotation {
			display: none;
		}
	}
}
