:root {
  --l: 50%;
  --white: #fff;
  --black: #000;
  --rm-green: #44e5b9;
  --rm-blue-light: #528bfc;
  --rm-blue: #0156fc;
  --rm-red: #e0152b;
  --rm-yellow: #fad442;
  --rm-black: #151215;
  --rm-gray: #edf0f3;
  --rm-gray-neutral: #dbdbdb;
  --rm-gray--100: #8b8f92;
  --rm-gray--200: #8b9ba0;
  --rm-gray--300: #607075;
  --rm-gray--dark: #252b2d;
  --rm-accent--lime: #6bebb6;
  --rm-accent--yellow: #fad442;
  --rm-accent--ramsalt: #00507e;
  --rm-accent: var(--rm-accent--lime);
  --rm-accent--secondary: var(--rm-green);
  --primary: #151215;
  --primary-accent: #2e2e2e;
  --primary-100: hsl(var(--primary), calc(var(--l) + 30%));
  --primary-900: hsl(var(--primary), calc(var(--l) - 30%));
  --secondary: #6bebb6;
  --rm-footer-bg: #151215;
  --rm-footer-text: #ffffff; }

:root {
  --l: 50%;
  --white: #fff;
  --black: #000;
  --rm-green: #44e5b9;
  --rm-blue-light: #528bfc;
  --rm-blue: #0156fc;
  --rm-red: #e0152b;
  --rm-yellow: #fad442;
  --rm-black: #151215;
  --rm-gray: #edf0f3;
  --rm-gray-neutral: #dbdbdb;
  --rm-gray--100: #8b8f92;
  --rm-gray--200: #8b9ba0;
  --rm-gray--300: #607075;
  --rm-gray--dark: #252b2d;
  --rm-accent--lime: #6bebb6;
  --rm-accent--yellow: #fad442;
  --rm-accent--ramsalt: #00507e;
  --rm-accent: var(--rm-accent--lime);
  --rm-accent--secondary: var(--rm-green);
  --primary: #151215;
  --primary-accent: #2e2e2e;
  --primary-100: hsl(var(--primary), calc(var(--l) + 30%));
  --primary-900: hsl(var(--primary), calc(var(--l) - 30%));
  --secondary: #6bebb6;
  --rm-footer-bg: #151215;
  --rm-footer-text: #ffffff; }

::-moz-selection {
  color: var(--rm-black);
  background: var(--rm-accent); }

::selection {
  color: var(--rm-black);
  background: var(--rm-accent); }

.font-heading {
  font-family: "Playfair Display", serif; }

/* Focusing the button with a keyboard will show a dashed black line. */
button:focus-visible {
  outline: 1px dashed var(--rm-accent); }

/* Focusing the button with a mouse, touch, or stylus will show a subtle drop shadow. */
button:focus:not(:focus-visible) {
  outline: none; }

.container-sm {
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container-sm {
      max-width: 720px; } }

.view-issues .view-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  .view-issues .view-content .issues-year-wrapper {
    margin-bottom: 2rem; }
    .view-issues .view-content .issues-year-wrapper > h3 {
      font-weight: 700;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
      border-bottom: 1px solid var(--primary); }
    .view-issues .view-content .issues-year-wrapper .issues-year-rows {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .view-issues .view-content .issues-year-wrapper .issues-year-rows .views-row {
        width: 200px;
        margin: 0.5rem 1rem; }

.view-issues .node__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .view-issues .node__content .issue-download {
    border: 1px solid var(--primary);
    padding: 5px 2rem;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .view-issues .node__content .issue-download path {
      fill: var(--primary);
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    .view-issues .node__content .issue-download:hover {
      background-color: var(--primary);
      color: var(--white);
      text-decoration: none; }
      .view-issues .node__content .issue-download:hover path {
        fill: var(--white); }

.block-views-blockissues-block-latest-issue {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem; }
  @media screen and (min-width: 768px) {
    .block-views-blockissues-block-latest-issue {
      border-right: 1px solid var(--primary); } }
  .block-views-blockissues-block-latest-issue > h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 2rem; }
