/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
*/

/* =========================================================
   Root variables
========================================================= */

:root {
  --wp--style--global--content-size: 768px;
  --wp--style--global--wide-size: 1200px;

  --readable-font-size: 1.08rem;
  --readable-line-height: 1.92;
  --readable-heading-line-height: 1.12;

  --text-color: #161616;
  --muted-color: #555555;
}

/* =========================================================
   Base
========================================================= */

body {
  font-family: "Manrope", sans-serif;
  color: var(--text-color);

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   Main content width
========================================================= */

.wp-site-blocks {
  overflow-wrap: break-word;
  padding-inline: 1.25rem;
}

/* =========================================================
   Typography
========================================================= */

p,
li {
  font-size: var(--readable-font-size);
  line-height: var(--readable-line-height);
  letter-spacing: 0.005em;
  font-weight: 450;
}

/* Paragraph rhythm */

p {
  margin-top: 0;
  margin-bottom: 1.6rem;

  text-align: start;
}

/* =========================================================
   Headings
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: var(--readable-heading-line-height);
  letter-spacing: -0.02em;

  text-wrap: balance;

  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: clamp(2.2rem, 2.5vw + 1rem, 3.6rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.6rem, 1.3vw + 1rem, 2.2rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.3rem, 1vw + 0.8rem, 1.7rem);
  line-height: 1.12;
}

.wp-block-group.is-layout-constrained > h1 + * {
    margin-block-start: 2.2rem !important;
}

.wp-block-group.is-layout-constrained > h2 + * {
    margin-block-start: 1.6rem !important;
}

.wp-block-group.is-layout-constrained > h3 + * {
    margin-block-start: 1.1rem !important;
}

/* =========================================================
   Vertical rhythm
========================================================= */

.wp-block-post-content p + p,
.wp-block-post-content ul + p,
.wp-block-post-content ol + p,
.wp-block-post-content p + ul,
.wp-block-post-content p + ol,
.wp-block-post-content h2 + p,
.wp-block-post-content h3 + p {
  margin-top: 1.5rem;
}

/* =========================================================
   Lists
========================================================= */

ul,
ol {
  padding-left: 1.4rem;
}

.wp-block-post-content ul:not(.is-layout-flex) li + li,
.wp-block-post-content ol:not(.is-layout-flex) li + li {
  margin-top: 0.35rem;
}

/* =========================================================
   Links
========================================================= */

a {
  text-underline-offset: 0.14em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  text-decoration-thickness: 0.12em;
}

/* =========================================================
   Quotes
========================================================= */

blockquote {
  border-left: 3px solid currentColor;

  padding-left: 1rem;

  opacity: 0.9;
  font-style: italic;
}

/* =========================================================
   Code
========================================================= */

code,
pre {
  font-size: 0.95em;
}

/* =========================================================
   Header
========================================================= */

.wp-block-site-title {
  flex: 0 0 auto;
}

.navigation-language-selector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navigation-language-selector li + li {
  margin-left: 1rem;
}

.navigation-language-selector a {
  text-decoration: none;
}

/* =========================================================
   Footer
========================================================= */

.custom-footer-copyright {
  text-align: center;
}

/* =========================================================
   Mobile tuning
========================================================= */

@media (max-width: 768px) {
  :root {
    --readable-font-size: 1.03rem;
    --readable-line-height: 1.82;
  }

  .wp-site-blocks {
    padding-inline: 1rem;
  }

  p {
    max-width: 100%;
  }

  h1 {
    line-height: 1.08;
  }
}