/* Adapted from https://www.joshwcomeau.com/css/custom-css-reset/
 * Preserve content margins until the site's spacing is designed.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 4vw, 2.75rem);
}

blockquote {
  margin-inline: 0;
  border-left: 0.25rem solid #ccc;
  padding-left: 1rem;
}

:focus-visible {
  outline: 0.1875rem solid currentColor;
  outline-offset: 0.1875rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:root {
  --container-width: 72.75rem;
  --content-width: 45rem;
  --page-padding: clamp(1rem, 4vw, 3rem);
  --section-spacing: clamp(3rem, 8vw, 7.5rem);
  --page-start-spacing: clamp(1rem, 2vw, 2rem);
}

.container {
  width: min(
    calc(100% - (var(--page-padding) * 2)),
    var(--container-width)
  );
  margin-inline: auto;
}

.readable-content {
  max-width: var(--content-width);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

.article-layout > * {
  min-width: 0;
}

.article-author {
  max-width: var(--content-width);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.article-author h2 {
  margin-block-start: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 64rem) {
  .article-layout {
    grid-template-columns: minmax(0, 45rem) minmax(16rem, 18rem);
    justify-content: space-between;
    column-gap: clamp(2rem, 6vw, 6rem);
  }
}

.section {
  padding-block: var(--section-spacing);
}

main > .section:first-child {
  padding-block-start: var(--page-start-spacing);
}

main > .section:first-child h1 {
  margin-block-start: 0;
}
.skip-link {
  position: fixed;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  z-index: 1000;
  padding: 0.5rem 0.75rem;
  color: CanvasText;
  background: Canvas;
  border: 0.125rem solid currentColor;
  transform: translateY(-200%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-inline-end: 0.5rem;
}

.article-list,
.subcategory-articles ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-list li + li {
  margin-block-start: 2rem;
}

.article-category-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.article-category h2 {
  margin-block: 0;
  padding-block-end: 0.75rem;
  font-size: 1.25rem;
}

.article-category h2 a {
  color: inherit;
  text-decoration: none;
}

.article-category h2 a:hover {
  text-decoration: underline;
}

.article-category ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-category li a {
  display: flex;
  align-items: center;
  min-height: 3.625rem;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.35;
  text-decoration: none;
}

.subcategory-articles {
  max-width: var(--content-width);
}

.subcategory-articles li a {
  display: flex;
  align-items: center;
  min-height: 3.625rem;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.125rem;
  line-height: 1.35;
  text-decoration: none;
}

.subcategory-articles li a:hover {
  text-decoration: underline;
}

.article-category li a:hover {
  text-decoration: underline;
}

.article-category__more {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 3.5rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-category__more:hover span:first-child {
  text-decoration: underline;
}

@media (min-width: 48rem) {
  .article-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(3rem, 8vw, 8.5rem);
  }
}

.article-body > p:first-child::first-letter {
  float: left;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 0.85;
  margin-block-start: 0.08em;
  margin-inline-end: 0.12em;
}

@media (min-width: 48rem) {
  .article-body > p:first-child::first-letter {
    font-size: 5em;
  }
}

.article-body pre {
  overflow-x: auto;
}

.article-body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.skip-link:focus {
  transform: translateY(0);
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 4rem;
  column-gap: 1rem;
}

.navbar__logo,
.navbar__links a,
.navbar__toggle {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url(/assets/libre-baskerville-latin-400-7466b9a580a3f460d097f28d3fbaa2aa7ff7eed1a94c2e9c536f942374edaf3f.woff2) format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.navbar__logo {
  flex-shrink: 0;
  min-height: 4rem;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}

.navbar__toggle {
  gap: 0.5rem;
  margin-inline-start: auto;
}

/* Explicitly preserve hidden semantics against display rules, including SVGs. */
.navbar [hidden] {
  display: none;
}

.navbar__nav {
  flex-basis: 100%;
}

.navbar__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar__links a[aria-current="page"] {
  font-weight: bold;
}

/* Keep this boundary synchronized with navbar_controller.js. */
@media (width > 48rem) {
  .navbar {
    min-height: 4.5rem;
    column-gap: 2rem;
  }

  .navbar__nav {
    flex-basis: auto;
    margin-inline-start: auto;
  }

  .navbar__links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
  }
}

.site-footer {
  padding-block: clamp(3rem, 7vw, 6rem) 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}

.articles-header {
  display: grid;
  justify-items: center;
  gap: 2rem;
  max-width: 60rem;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 7vw, 5rem) clamp(4rem, 9vw, 7rem);
  text-align: center;
}

.articles-header h1,
.articles-header p {
  margin-block: 0;
}

.articles-header h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.articles-header p {
  max-width: 42rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.article-layout article > header {
  padding-bottom: 1.5rem;
}

.article-meta,
.article-layout article > header .breadcrumbs {
  font-size: 0.875rem;
  color: #666;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 2.25rem;
  min-height: 2.75rem;
}

.article-meta a,
.article-layout article > header .breadcrumbs a {
  color: inherit;
}

.footer__brand {
  max-width: 22rem;
}

.footer__description {
  max-width: 40ch;
}

.footer__navigation {
  display: grid;
  gap: 2rem;
}

.footer__heading {
  margin-block: 0 1rem;
}

.footer__group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__logo,
.footer__navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
}

.footer__navigation a[aria-current="page"] {
  font-weight: bold;
}

.footer__bottom {
  margin-block-start: 3rem;
  padding-block-start: 1.5rem;
}

.footer__bottom nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

@media (width > 48rem) {
  .footer__main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *





 */
