/*
Theme Name: Very Hosting
Theme URI: https://veryhosting.it
Author: Very Hosting
Author URI: https://veryhosting.it
Description: Tema WordPress Ufficiale di Very Hosting.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: very-hosting
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* =========================================================
   Base styles (minimi)
   ========================================================= */

:root{
  --vh-max-width: 1200px;
  --vh-gutter: 24px;
  --vh-font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --vh-text: #111;
  --vh-muted: #666;
  --vh-bg: #fff;
  --vh-link: #0b57d0;
  --vh-border: #e6e6e6;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--vh-font);
  line-height: 1.6;
  color: var(--vh-text);
  background: var(--vh-bg);
}

a{ color: var(--vh-link); text-decoration: none; }
a:hover{ text-decoration: underline; }

.vh-wrap {
    /* width: min(100% - (var(--vh-gutter) * 2), var(--vh-max-width)); */
    /* margin-inline: auto; */
    max-width: 1140px;
    margin: 0 auto;
}

.vh-header, .vh-footer{
  border-bottom: 1px solid var(--vh-border);
  padding: 18px 0;
}
.vh-footer{
  border-top: 1px solid var(--vh-border);
  border-bottom: none;
  margin-top: 40px;
}

.vh-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.vh-brand__title{
  font-size: 18px;
  font-weight: 700;
  margin:0;
}
.vh-brand__tagline{
  margin:0;
  color: var(--vh-muted);
  font-size: 14px;
}

.vh-main{ padding: 28px 0; }

.vh-post{ padding: 18px 0;}
.vh-post:last-child{ border-bottom: none; }

.vh-post__title{ margin: 0 0 8px; font-size: 22px; line-height: 1.25; }
.vh-post__meta{ margin: 0 0 12px; color: var(--vh-muted); font-size: 13px; }

.vh-nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vh-nav a{ font-weight: 600; }

.vh-skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.vh-skip:focus{
  position:static;
  width:auto;
  height:auto;
  padding: 8px 10px;
  display:inline-block;
  background:#000;
  color:#fff;
}

/* Gutenberg base */
.wp-site-blocks{ min-height: 100%; }
.alignwide{ width: min(100% - (var(--vh-gutter) * 2), 1100px); margin-inline: auto; }
.alignfull{ width: 100%; margin-inline: auto; }
