:root {
  --font-heading:
    "Playfair Display", system-ui, -apple-system, "Segoe UI", Roboto, Arial,
    sans-serif;
  --font-body:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --primary: #861118;
  --primary-05: #b7273c05;
  --primary-15: #b7273c15;
  --primary-25: #b7273c25;
  --primary-50: #b7273c50;
  --primary-75: #b7273c75;
  --cream: #f5efe650;
  --beige: #efe6d875;
  --black: #440e0e;
  --white: #ffffff;
  --background: #faf9f6;

  --picture-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.18);
  --card-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 8px 12px;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
}

.entry-content > * {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.entry-content > .alignwide {
  max-width: var(--wp--style--global--wide-size);
}

.entry-content .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}

.entry-content > * + * {
  margin-top: var(--wp--style--block-gap, 20px);
}

.entry-content > :first-child {
  margin-top: var(--wp--preset--spacing--l, 48px);
}

.entry-content > :last-child {
  margin-bottom: var(--wp--preset--spacing--l, 48px);
}

.entry-content > :where(.wp-block-image.alignright, figure.alignright, img.alignright) {
  margin-left: 24px;
  margin-bottom: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
}

h1 {
  font-size: 40px;
  letter-spacing: 1.25px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

.aligncenter,
.wp-block-image.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image.aligncenter {
  align-self: center;
}

.wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: var(--black);
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn--secondary {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--primary-50);
}

.btn--icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn--icon > svg {
  width: 18px;
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  min-height: 18px;
  max-height: 18px;
}

a,
p,
li {
  color: inherit;
  text-decoration: none;
  color: var(--black);
}

p,
li {
  font-size: 18px;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.wp-block-button__link {
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
}

.wp-block-button__link.btn--secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--primary-50);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--black);
  border-color: var(--primary-50);
}
