.section-book {
	&.hide-bgimage {
		.bg-image {
			display: none;
		}
	}

	.container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: var(--item-gap);
		text-align: center;
		position: relative;
		z-index: 2;

		@media (min-width: 1024px) {
			flex-direction: row;
			justify-content: space-between;
			text-align: left;

			&:has(> .book-actions:only-child) {
				justify-content: center;
				text-align: center;
			}
		}
	}

	.h2 {
		margin-bottom: 0;
	}
}

.book-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--item-gap);
	justify-content: center;

	@media (min-width: 1024px) {
		flex-shrink: 0;
	}
}

.section-book .container > .book-actions:only-child {
	width: 100%;
	align-items: center;
}
