/* Full-width grey band, cards constrained inside */
.podstranky-block {
	background-color: var(--wp--preset--color--svetloseda);
	padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--40);
	box-sizing: border-box;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.podstranky-block.wp-block-dku-abuba-podstranky {
	margin-bottom: 50px;
}

.podstranky-block__inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(303px, 1fr));
	gap: var(--wp--preset--spacing--30);
	max-width: var(--wp--style--global--wide-size);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.podstranky-block__card {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);
	border-radius: 10px;
	border: 2px solid transparent;
	background-color: var(--wp--preset--color--base);
	box-shadow: var(--wp--preset--shadow--jemny);
	color: var(--wp--preset--color--tmavoseda);
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.podstranky-block__card h3 {
	font-size: var(--wp--preset--font-size--medium);
	line-height: 1.6em;
	margin: 0;
}

.podstranky-block__card:hover,
.podstranky-block__card:focus-visible,
.podstranky-block__card--current {
	border-color: var(--wp--preset--color--zlata);
	outline: none;
}

/* Editor placeholder */
.podstranky-block-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 24px;
	border: 2px dashed var(--wp--preset--color--bledoseda);
	border-radius: 10px;
	color: var(--wp--preset--color--stredneseda);
}

.podstranky-block-placeholder .dashicons {
	font-size: 32px;
	width: 32px;
	height: 32px;
}
