@charset "utf-8";

/* PACKAGE */
	.package-step {
		display: grid;
		grid-gap: 2rem;
		margin: var(--margin-normal) auto;
		}
	.package-step-label {
		background-color: var(--hue-highlight);
		border-radius: var(--radius);
		color: var(--hue-highlight-text);
		}
	.package-step-title {
		font-size: var(--head-6);
		font-weight: 700;
		line-height: 1;
		padding: 0.5em;
		}
	.package-step-title > em {
		color: var(--hue-highlight-bright);
		font-weight: 300;
		}
	.package-step-object > *:first-child,
	.package-step-object > .boxes + .flowers-included {
		margin-top: 0;
		}
	.package-step-object > .boxes:first-child,
	.package-step-object .products-included {
		margin-bottom: 0;
		}
	.package-step-object > .boxes + .flowers-included > .flowers-included-item {
		margin-top: var(--margin-block);
		}
	.package-step-object > .boxes + .flowers-included > .flowers-included-item:empty {
		display: none;
		}
	.package-step-object > *:last-child {
		margin-bottom: 0;
		}
	@media (min-width: 30em) {
		.package-step {
			grid-template-columns: min-content 1fr;
			}
		.package-step-label {
			text-align: right;
			text-orientation: mixed;
			writing-mode: vertical-rl;
			}
		.package-step-title {
			transform: rotate(-180deg);
			}
	}