/*
Theme Name: BlankSlate
Theme URI: https://github.com/tidythemes/blankslate
Author: Tidy Themes
Author URI: https://tidythemes.com
Description: Wander in France — custom BlankSlate build
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blankslate
*/

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bleu:       #1B3C74;
  --bleu-deep:  #122B56;
  --rouge:      #CC2936;
  --rouge-lt:   #D9404C;
  --blanc:      #FFFFFF;
  --off-white:  #F9F7F4;
  --pale-blue:  #EDF0F7;
  --border:     #C6CEDF;
  --text:       #0F1F3D;
  --muted:      #5B6A88;
  --rule:       #D8DDE8;
}

/* ── Base reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--off-white);
  color: var(--text);
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* ── Archive post title links ──────────────────────────── */
.post-item-title a,
.post-item-title a:link,
.post-item-title a:visited { color: #0F1F3D !important; text-decoration: none; }
.post-item-title a:hover   { color: #1B3C74 !important; }

/* ── Full-width override ───────────────────────────────── */
/* Ensures Custom HTML blocks render edge-to-edge           */
.wp-block-html,
.entry-content,
.wp-block-post-content,
.site-main,
article.page,
.wp-site-blocks > * {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
