/*
Theme Name: Shhh
Theme URI: https://wordpress.com/themes/shhh/
Description: Silence.
Version: 1.0.6
Author: Automattic
Author URI: https://automattic.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shhh
*/

/*
* Control the hover stylings of outline block style.
*/
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background):hover {
	background-color: var(--wp--preset--color--primary);
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
}

/*
* Control the hover stylings of the pseudo element in post title block.
* For some reason, this does not work if the style is added to the theme.json.
*/
.wp-block-post-title:hover::before {
	color:var(--wp--preset--color--primary);
}

/*
* Custom: Excerpt kursiv und kleiner für bessere Lesbarkeit
*/
.wp-block-post-excerpt__excerpt {
	font-style: italic;
	color: var(--wp--preset--color--tertiary);
	font-size: var(--wp--preset--font-size--medium);
}

/*
* Custom: Kategorien im Header horizontal anzeigen
*/
.wp-block-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	list-style: none;
	padding: 0;
	margin: 0;
}

.wp-block-categories li {
	margin: 0;
}

.wp-block-categories a {
	text-decoration: none;
}

.wp-block-categories a:hover {
	color: var(--wp--preset--color--primary);
}