/*
Theme Name: Blog
Theme URI: https://ernestobellei.it/
Author: Ernesto Bellei
Author URI: https://ernestobellei.it/
Description: A WordPress blog theme built for the block editor.
Version: 1.0
Text Domain: blog
*/

:root {
  --color-1: rgb(244, 244, 244);
  --rad-1: 4px;

  --main-pad: 1rem;
}

/* Main */

html,
body {
  font-size: 16px;
}

/* Title */

.wp-block-site-title {
  padding: 0 var(--main-pad);
}

/* Posts list */

.wp-block-post-template {
  padding: 0 var(--main-pad);
}

.wp-block-post {
  max-width: 680px;
  background: var(--color-1);
  border-radius: var(--rad-1);
  padding: var(--main-pad);
  margin: auto;
}

.wp-block-post > *:first-child {
  margin-top: 0;
}

.wp-block-post > *:last-child {
  margin-bottom: 0;
}

.wp-block-post-date {
  font-weight: 700;
}

/* Post page */

.wp-block-group {
  padding: 0 var(--main-pad);
  margin: auto;
}
