/*
Theme Name: Brand Speak Human Theme
Theme URI: https://example.com/
Author: agenzia perdonà
Author URI: https://example.com/
Description: Tema WordPress minimale per Brand Speak Human.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brand-speak-human-theme
*/

:root {
  --bsh-bg: #ffffff;
  --bsh-fg: #111111;
  --bsh-muted: rgba(17, 17, 17, 0.6);
  --bsh-max: 1440px;
  --bsh-gap: 18px;
  --bsh-pad: 18px;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bsh-bg);
  color: var(--bsh-fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bsh-wrap {
  max-width: var(--bsh-max);
  margin: 0 auto;
  padding: var(--bsh-pad);
}

.bsh-header {
  padding: 56px 0 36px;
  text-align: center;
}

.bsh-logo a {
  display: inline-block;
  line-height: 0;
}

.bsh-logo img {
  max-width: 220px;
  height: auto;
}

.bsh-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--bsh-gap);
}

@media (max-width: 1000px) {
  .bsh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  :root {
    --bsh-pad: 24px;
  }

  .bsh-grid {
    grid-template-columns: 1fr;
  }
}

.bsh-footer {
  padding: 48px 0;
  text-align: center;
}

.bsh-footercredit {
  margin: 0;
  font-size: 14px;
  color: var(--bsh-muted);
}

.bsh-footerlink {
  color: inherit;
  text-decoration: none;
}

.bsh-footerlink:hover,
.bsh-footerlink:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bsh-placeholder {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.02);
  border-radius: 10px;
  padding: 18px;
  color: var(--bsh-muted);
  font-size: 14px;
}
