@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,400;0,700;1,400&family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html {
  font-size: unset;
}

body {
  min-height: 100vh;
  font-family: Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgb(36, 42, 51);
  background-color: rgb(255, 255, 255);
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
p a:any-link:hover, p a:any-link:active, p a:any-link:focus {
  text-decoration: underline;
}

p + ul,
p + ol {
  margin-top: -1rem;
}

h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.625rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 46.25em) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 46.25em) {
  h2 {
    font-size: 1.625rem;
  }
}

h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

h5 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-style: italic;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

blockquote {
  border-left: 0.5rem solid rgb(207, 216, 220);
  margin-left: 1.5rem;
  padding-left: 1rem;
}

pre {
  overflow-x: scroll;
}

ul {
  margin-top: 0;
}

li {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a:any-link {
  color: rgb(206, 72, 26);
  text-decoration: none;
}
a:any-link:hover, a:any-link:active, a:any-link:focus {
  color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}

a[href]:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline-style: none;
  box-shadow: 0 0 0 3px rgb(245, 218, 209);
}
a[href]:focus,
button:focus,
input:focus,
textarea:focus {
  outline-style: none;
  box-shadow: 0 0 0 3px rgb(245, 218, 209);
}
a[href]:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  box-shadow: none;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border: 1px solid rgb(207, 216, 220);
  border-radius: 6px;
}

button {
  cursor: pointer;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

fieldset {
  border: 1px solid rgb(207, 216, 220);
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

input[type=checkbox] {
  margin-left: 0;
}

input[type=radio] {
  flex-shrink: 0;
  height: 1.375rem;
  width: 1.375rem;
  margin-top: 0;
  margin-bottom: 0;
}

/*
Prevent styling of <a> elements that aren't links
*/
a:not([href]) {
  color: inherit;
  text-decoration: inherit;
}

/*
Use real subscript and superscript characters where possible
*/
@supports (font-variant-position: sub) {
  sub {
    font-size: inherit;
    font-variant-position: sub;
    position: static;
  }
}
@supports (font-variant-position: super) {
  sup {
    font-size: inherit;
    font-variant-position: super;
    position: static;
  }
}
p:last-child {
  margin-bottom: 1rem;
}

table {
  border-top: 1px solid rgb(207, 216, 220);
  border-bottom: 1px solid rgb(207, 216, 220);
  margin-bottom: 1.5rem;
}

td,
th {
  padding: 0.25rem;
  vertical-align: top;
}
td:first-child,
th:first-child {
  padding-left: 0;
}
td:last-child,
th:last-child {
  padding-right: 0;
}
tr:first-child td,
tr:first-child th {
  padding-top: 0;
}
tr:last-child td,
tr:last-child th {
  padding-bottom: 0;
}

address {
  font-style: normal;
  margin-bottom: 1rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

.card-authors {
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}

.card-authors__author {
  display: inline;
}
.card-authors__author::after {
  content: ", ";
}
.card-authors__author:last-child::after {
  content: ".";
}

.article-card {
  position: relative;
  background-color: rgb(255, 255, 255);
  padding-top: 2rem;
  border-bottom: 1px solid rgb(207, 216, 220);
  padding-bottom: 2.5rem;
}

.article-card-content {
  grid-column: 1/9;
}

.article-card__title {
  font-family: Ubuntu, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (min-width: 46.25em) {
  .article-card__title {
    font-size: 1.5rem;
  }
}

.article-card__error_message {
  margin-bottom: 0.5rem;
}

.article-card__reviewing_groups {
  font-weight: bold;
}

.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: calc(1rem + 24px);
}

.article-card__meta {
  color: rgb(75, 96, 106);
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}
.article-card__meta > * {
  margin-right: 0.25rem;
}
.article-card__meta > :nth-child(n+3)::before {
  content: "•";
  margin-right: 0.25rem;
}

.article-card__controls {
  display: flex;
  gap: 1.375rem;
  align-items: center;
  margin-top: 1rem;
}

.article-card-teasers {
  margin-bottom: 1.5rem;
  background-color: rgb(239, 242, 243);
  list-style: none;
  padding-left: 0;
}
.article-card-teasers {
  padding: 1rem;
}

.article-card-teasers__teaser {
  margin-bottom: 3rem;
}
.article-card-teasers__teaser:last-child {
  margin-bottom: 0;
}

.article-card-teasers__teaser_heading {
  font-weight: bold;
}

.article-card-teasers__teaser_quote {
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}
.article-card-teasers__teaser_quote::before, .article-card-teasers__teaser_quote::after {
  position: absolute;
  color: rgb(206, 72, 26);
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  line-height: 1;
}
.article-card-teasers__teaser_quote::before {
  content: "“";
  left: 0;
  top: 0;
}
.article-card-teasers__teaser_quote::after {
  content: "”";
  right: 0;
  bottom: -0.5rem;
}

@media screen and (min-width: 68.75em) {
  .article-card.article-card--with-annotation {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 1.25rem;
    padding-bottom: 0;
    border-bottom-width: 0;
  }
}
@media screen and (min-width: 68.75em) {
  .article-card.article-card--with-annotation .article-card-content {
    border-bottom: 1px solid rgb(207, 216, 220);
    padding-bottom: 2.5rem;
  }
}

.article-card-annotation {
  grid-column: 9/13;
  border: 1px solid rgb(206, 72, 26);
  border-radius: 6px;
  padding: 1rem;
  margin-top: 2.5rem;
  position: relative;
}
.article-card-annotation::before {
  content: "";
  background-image: url("/static/images/annotation-triangle.svg");
  height: 32px;
  width: 32px;
  position: absolute;
  top: -2rem;
  left: 2rem;
}
@media screen and (min-width: 68.75em) {
  .article-card-annotation {
    margin-top: 0;
  }
  .article-card-annotation::before {
    transform: rotate(-90deg);
    top: 3rem;
    left: -2rem;
  }
}
.article-card-annotation p {
  word-wrap: break-word;
}
.article-card-annotation p:last-child {
  margin-bottom: 0;
}

.article-card-annotation__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.article-card-annotation__header h4 {
  margin-bottom: 0;
}

.article-card-annotation__avatar {
  width: 36px;
  height: 36px;
  margin-right: 1rem;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.article-list {
  margin-top: 0;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.article-list > li {
  margin-bottom: 0.5rem;
}
.article-list > li:last-child {
  margin-bottom: 0;
}

.mobile-menu {
  padding-top: 1.5rem;
  height: 100vh;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  background-color: rgb(52, 67, 74);
  text-align: center;
}
@media screen and (min-width: 58.75em) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu__close_link {
  display: block;
  text-align: left;
  padding-left: 1.5rem;
}

.mobile-menu__links {
  list-style: none;
  padding-left: 0;
}

.mobile-menu__link {
  display: inline-block;
  align-items: center;
  border-radius: 6px;
  margin-bottom: 2rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.mobile-menu__link:any-link {
  color: rgb(255, 255, 255);
}
.mobile-menu__link:any-link:hover, .mobile-menu__link:any-link:active {
  color: rgb(234, 122, 83);
}

.mobile-menu__link--user-profile {
  display: inline-flex;
}

.mobile-menu__user_avatar {
  background-color: rgb(255, 255, 255);
  width: 2.25rem;
  height: auto;
  display: inline-block;
  margin-right: 0.75rem;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.mobile-menu__link_primary_button {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.mobile-menu__link_primary_button:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.mobile-menu__link_primary_button:any-link:hover, .mobile-menu__link_primary_button:any-link:active, .mobile-menu__link_primary_button:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.mobile-menu__link_secondary_button {
  border-radius: 6px;
  border: 1px solid rgb(207, 216, 220);
  padding: 0.5rem 0.6875rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.mobile-menu__link_secondary_button:any-link {
  color: rgb(255, 255, 255);
}
.mobile-menu__link_secondary_button:any-link:hover, .mobile-menu__link_secondary_button:any-link:active, .mobile-menu__link_secondary_button:any-link:focus {
  background-color: rgb(207, 216, 220);
  color: rgb(52, 67, 74);
}

.site-header {
  width: 100%;
  height: 3.875rem;
  display: flex;
  --colour-site-header-background: rgb(255, 255, 255);
  --colour-text-primary: rgb(36, 42, 51);
  --colour-text-navigation-link: rgb(52, 67, 74);
  --colour-site-header-border: rgb(207, 216, 220);
}
.site-header {
  background-color: var(--colour-site-header-background);
}
@media screen and (min-width: 58.75em) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto minmax(auto, 57.5rem) 1fr;
  }
}
.site-header::before, .site-header::after {
  content: "";
  display: block;
}

.site-header--dark {
  --colour-site-header-background: rgb(52, 67, 74);
  --colour-text-primary: rgb(255, 255, 255);
  --colour-text-navigation-link: rgb(255, 255, 255);
  --colour-site-header-border: rgb(52, 67, 74);
}

.site-header__left_links {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-bottom: 1px solid var(--colour-site-header-border);
  flex-grow: 1;
}
@media screen and (min-width: 58.75em) {
  .site-header__left_links {
    width: 17.5rem;
  }
}

.site-header__left_links_list {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 58.75em) {
  .site-header__left_links_list {
    justify-content: unset;
  }
}

@media screen and (min-width: 58.75em) {
  .site-header__left_links_list_item--logo {
    line-height: 0;
  }
}

.site-header__logo_link {
  display: block;
}

.site-header__logo {
  height: 2.125rem;
}

.site-header__right_links {
  display: flex;
  align-items: center;
  padding-top: 0;
  border-bottom: 1px solid var(--colour-site-header-border);
}

@media screen and (min-width: 58.75em) {
  .site-header__left_links_list_item--menu {
    display: none;
  }
}

.site-header__menu_icon {
  width: 1.625rem;
  height: 1.625rem;
}

.site-header__menu_link {
  display: flex;
  margin-right: 2.75rem;
}
.site-header__menu_link::before {
  content: "Open the menu";
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  user-select: none;
}

.site-header__search_link {
  display: flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid rgb(207, 216, 220);
  padding: 0.25rem 0.6875rem;
  background-color: rgb(255, 255, 255);
  margin-left: 1.375rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.site-header__search_link:any-link {
  color: var(--colour-text-navigation-link);
}
.site-header__search_link:any-link:hover, .site-header__search_link:any-link:active, .site-header__search_link:any-link:focus {
  background-color: rgb(207, 216, 220);
  color: rgb(52, 67, 74);
}

.site-header__search_icon {
  width: 1.5rem;
  height: 1.5rem;
}

.site-header__search_label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  user-select: none;
}
@media screen and (min-width: 58.75em) {
  .site-header__search_label {
    color: rgb(52, 67, 74);
    clip: auto;
    height: auto;
    margin: 0;
    overflow: unset;
    position: static;
    width: auto;
    user-select: unset;
  }
}

.utility-bar {
  display: flex;
  margin-right: 0;
  flex-grow: 1;
  align-self: center;
  --colour-site-header-background: rgb(255, 255, 255);
  --colour-text-primary: rgb(36, 42, 51);
  --colour-text-navigation-link: rgb(52, 67, 74);
  --colour-site-header-border: rgb(207, 216, 220);
}
@media screen and (min-width: 58.75em) {
  .utility-bar {
    margin-right: 1.25rem;
  }
}

.utility-bar--dark {
  --colour-site-header-background: rgb(52, 67, 74);
  --colour-text-primary: rgb(255, 255, 255);
  --colour-text-navigation-link: rgb(255, 255, 255);
  --colour-site-header-border: rgb(52, 67, 74);
}

.utility-bar__list {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  margin-left: auto;
  list-style: none;
  padding-left: 0;
}

.utility-bar__list_item {
  padding-right: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.utility-bar__list_item:first-child {
  margin-left: auto;
}
.utility-bar__list_item:last-child {
  padding-right: 0;
}

.utility-bar__list_item--navigation {
  display: none;
}
@media screen and (min-width: 58.75em) {
  .utility-bar__list_item--navigation {
    display: flex;
  }
}

.utility-bar__list_nav_link {
  padding-top: 0.375rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  display: block;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.utility-bar__list_nav_link:any-link {
  color: var(--colour-text-navigation-link);
}
.utility-bar__list_nav_link:any-link:hover, .utility-bar__list_nav_link:any-link:active, .utility-bar__list_nav_link:any-link:focus {
  color: var(--colour-text-primary);
  border-color: var(--colour-text-primary);
}

.utility-bar__list_link_primary_button {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.utility-bar__list_link_primary_button:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.utility-bar__list_link_primary_button:any-link:hover, .utility-bar__list_link_primary_button:any-link:active, .utility-bar__list_link_primary_button:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.utility-bar__list_link_secondary_button {
  border-radius: 6px;
  border: 1px solid rgb(207, 216, 220);
  padding: 0.5rem 0.6875rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.utility-bar__list_link_secondary_button:any-link {
  color: var(--colour-text-navigation-link);
}
.utility-bar__list_link_secondary_button:any-link:hover, .utility-bar__list_link_secondary_button:any-link:active, .utility-bar__list_link_secondary_button:any-link:focus {
  background-color: rgb(207, 216, 220);
  color: rgb(52, 67, 74);
}

.utility-bar-user-profile {
  display: flex;
  line-height: 1;
}
.utility-bar-user-profile:any-link {
  color: var(--colour-text-primary);
}
.utility-bar-user-profile:any-link:hover, .utility-bar-user-profile:any-link:active {
  color: var(--colour-text-primary);
}
.utility-bar-user-profile::before {
  content: "Go to profile";
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  user-select: none;
}

.utility-bar-user-profile__avatar {
  background-color: rgb(255, 255, 255);
  width: 2.125rem;
  height: auto;
  margin-right: 1.25rem;
  display: inline-block;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}
@media screen and (min-width: 58.75em) {
  .utility-bar-user-profile__avatar {
    width: 1.5625rem;
    margin-right: 0.375rem;
  }
}

.utility-bar-user-profile__handle {
  padding-top: 0.375rem;
  padding-bottom: 0.25rem;
  display: none;
}
@media screen and (min-width: 58.75em) {
  .utility-bar-user-profile__handle {
    display: unset;
    max-width: 5.5625rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 66.25em) {
  .utility-bar-user-profile__handle {
    max-width: none;
  }
}

.pre-footer {
  margin-bottom: 2rem;
  max-width: 75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgb(207, 216, 220);
  padding-top: 2rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 46.25em) {
  .pre-footer {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 46.25em) {
  .pre-footer {
    margin-left: auto;
    margin-right: auto;
  }
}
.home-page-container .pre-footer {
  border-top-width: 0;
}

.pre-footer__slogan {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 46.25em) {
  .pre-footer__slogan {
    font-size: 1.625rem;
  }
}

.pre-footer__call_to_action {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.pre-footer__call_to_action:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.pre-footer__call_to_action:any-link:hover, .pre-footer__call_to_action:any-link:active, .pre-footer__call_to_action:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.main-footer {
  background-color: rgb(52, 67, 74);
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.main-footer__navigation {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.main-footer__navigation_item {
  margin-left: 1rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
}

.main-footer__link {
  display: block;
  font-weight: bold;
  border-bottom: 2px solid rgb(255, 255, 255);
  padding-bottom: 0.25rem;
}
.main-footer__link {
  font-size: 1.125rem;
  line-height: 1.1111111111;
}
.main-footer__link:any-link {
  color: rgb(255, 255, 255);
}
.main-footer__link:any-link:hover, .main-footer__link:any-link:active, .main-footer__link:any-link:focus {
  color: rgb(234, 122, 83);
  border-color: transparent;
}

.main-footer__small_print {
  color: rgb(255, 255, 255);
}
.main-footer__small_print {
  font-size: 0.875rem;
  line-height: 1.1428571429;
}
.main-footer__small_print a:any-link {
  font-weight: normal;
  text-decoration: underline;
  color: inherit;
}
.main-footer__small_print a:any-link:hover, .main-footer__small_print a:any-link:active, .main-footer__small_print a:any-link:focus {
  color: rgb(234, 122, 83);
}

.group-card {
  display: flex;
  position: relative;
}
.group-card {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .group-card {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}

.group-card__body {
  flex-grow: 1;
}

.group-card__title {
  margin-bottom: 0.25rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: bold;
}

.group-card__link {
  color: rgb(36, 42, 51);
}
.group-card__link:any-link {
  color: rgb(36, 42, 51);
}
.group-card__link:any-link:active, .group-card__link:any-link:hover {
  color: rgb(36, 42, 51);
}
.group-card__link:hover::after {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.group-card__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
}

.group-card__description {
  margin-bottom: 0.5rem;
}

.group-card__avatar {
  margin-left: 2rem;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.group-card__meta {
  color: rgb(75, 96, 106);
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}
.group-card__meta > * {
  margin-right: 0.25rem;
}
.group-card__meta > :nth-child(n+3)::before {
  content: "•";
  margin-right: 0.25rem;
}

.group-link-with-logo {
  display: block;
  width: 200px;
  height: 70px;
}

.group-link-with-logo__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.group-link-with-logo--left-align .group-link-with-logo__logo {
  object-position: 0% 50%;
}
.group-link-with-logo--center-align .group-link-with-logo__logo {
  object-position: 50% 50%;
}

.list-card {
  display: flex;
  height: 100%;
  position: relative;
}
.list-card {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .list-card {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}

.list-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list-card__title {
  margin-bottom: 0.25rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: bold;
}

.list-card__link {
  color: rgb(36, 42, 51);
}
.list-card__link:any-link {
  color: rgb(36, 42, 51);
}
.list-card__link:any-link:active, .list-card__link:any-link:hover {
  color: rgb(36, 42, 51);
}
.list-card__link:hover::after {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.list-card__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
}

.list-card__curator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  margin-left: -0.5rem;
}

.list-card__meta {
  color: rgb(75, 96, 106);
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}
.list-card__meta > * {
  margin-right: 0.25rem;
}
.list-card__meta > :nth-child(n+3)::before {
  content: "•";
  margin-right: 0.25rem;
}

.list-card__image {
  display: none;
}
@media screen and (min-width: 46.25em) {
  .list-card__image {
    display: unset;
    max-width: 150px;
    object-fit: contain;
    margin-left: 0.5rem;
  }
}

.list-card__avatar {
  margin-left: 0.5rem;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.card-list {
  margin-top: 0;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.card-list > li {
  margin-bottom: 0.5rem;
}
.card-list > li:last-child {
  margin-bottom: 0;
}
.card-list {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 46.25em) {
  .card-list {
    margin-left: 0;
    margin-right: 0;
  }
}

.pagination-controls {
  text-align: center;
}

.pagination-controls__next_link {
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.pagination-controls__next_link:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.pagination-controls__next_link:any-link:hover, .pagination-controls__next_link:any-link:active, .pagination-controls__next_link:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.pagination-controls__page_count {
  margin-left: 0.125rem;
  margin-right: 0.125rem;
}

.search-form {
  margin-bottom: 0;
}

.search-form__label {
  display: block;
  margin-bottom: 0.5rem;
}

.search-form__positioning_context {
  position: relative;
}

.search-form__checkbox_label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.search-form__clear {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}

.search-form__clear_icon {
  display: block;
  margin: 0 auto;
}

.search-form__submit {
  display: block;
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.search-form__submit:hover {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}

.standard-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.standard-page-container main {
  flex-grow: 1;
}

.page-content {
  display: flex;
  padding-bottom: 3rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 46.25em) {
  .page-content {
    margin-left: 0;
    margin-right: 0;
  }
}

.supplementary-card {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .supplementary-card {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}

.supplementary-card__title {
  margin-bottom: 0.25rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: bold;
}

.supplementary-card__button_link {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.supplementary-card__button_link:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.supplementary-card__button_link:any-link:hover, .supplementary-card__button_link:any-link:active, .supplementary-card__button_link:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.tab-list {
  border-bottom: 2px solid transparent;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.tab {
  padding: 0;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.tab {
  line-height: 1.4285714286;
}
@media screen and (min-width: 46.25em) {
  .tab {
    display: inline-block;
    margin-bottom: -2px;
    text-align: center;
    padding: 0.8125rem 0.8rem 0.9375rem;
  }
}

.tab__link:any-link {
  color: rgb(206, 72, 26);
}
.tab__link:any-link:hover, .tab__link:any-link:active {
  color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}
@media screen and (min-width: 46.25em) {
  .tab__link:any-link {
    color: rgb(36, 42, 51);
  }
  .tab__link:any-link:hover, .tab__link:any-link:active {
    color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  }
}

@media screen and (min-width: 46.25em) {
  .tab--active {
    border-bottom: 2px solid rgb(206, 72, 26);
  }
}

.error-summary {
  border: 1px solid rgb(159, 0, 0);
  padding: 0.5rem;
  margin-bottom: 3rem;
}
.error-summary p {
  color: rgb(159, 0, 0);
}
.error-summary ul {
  color: rgb(159, 0, 0);
  margin-top: 0;
}

.standard-form {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .standard-form {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}
.standard-form button[type=submit] {
  margin-right: 1rem;
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.standard-form button[type=submit]:hover {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}
.standard-form dl {
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 46.25em) {
  .standard-form dl {
    display: grid;
    grid-template-columns: 2fr 8fr;
    column-gap: 1.25rem;
  }
}
.standard-form dl dt {
  font-weight: bold;
}
.standard-form dl dd {
  margin-left: 0;
  margin-bottom: 0.375rem;
}
.standard-form section {
  margin-bottom: 1.5rem;
}

.standard-form__sub_heading {
  display: block;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.standard-form__sub_heading_secondary_text {
  font-weight: normal;
}

.standard-form__helper_text {
  color: rgb(75, 96, 106);
  margin-bottom: 0.5rem;
}

.standard-form__constraints {
  color: rgb(75, 96, 106);
}

.standard-form__labelled_selectable_control {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.standard-form__cancel {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.standard-form__cancel:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.standard-form__cancel:any-link:hover, .standard-form__cancel:any-link:active, .standard-form__cancel:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.standard-form__full_width_text_input {
  border: 1px solid rgb(207, 216, 220);
  border-radius: 6px;
  height: 3rem;
  width: 100%;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
  padding-left: 0.75rem;
  padding-right: 3rem;
  margin-bottom: 0.5rem;
  color: rgb(36, 42, 51);
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  user-select: none;
}

.sciety-grid-two-columns {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column-gap: 1.25rem;
  grid-auto-rows: min-content;
  grid-auto-flow: column;
}
.sciety-grid-two-columns > * {
  grid-column: 1/-1;
}
@media screen and (min-width: 68.75em) {
  .sciety-grid-two-columns > * {
    grid-column: 1/9;
  }
}

.sciety-grid-two-columns {
  width: 100%;
  max-width: 75rem;
  flex-grow: 1;
}
@media screen and (min-width: 46.25em) {
  .sciety-grid-two-columns {
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

.page-header {
  padding-top: 1rem;
}
@media screen and (min-width: 46.25em) {
  .page-header {
    padding-top: 2.5rem;
  }
}
.page-header {
  margin-bottom: 3rem;
}
.page-header p {
  margin-bottom: 0.5rem;
}
.page-header p:last-child, .page-header h1:last-child {
  margin-bottom: 0;
}

.page-header__identity {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.page-header__identity h1 {
  margin-bottom: 0;
}

.about-page-figure {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 2rem;
}
.about-page-figure img {
  width: 100%;
  margin-bottom: 0.5rem;
}
.about-page-figure figcaption {
  text-align: center;
  font-style: italic;
}

.about-page-call-to-action {
  display: flex;
  justify-content: center;
}
.about-page-call-to-action a {
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.about-page-call-to-action a:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.about-page-call-to-action a:any-link:hover, .about-page-call-to-action a:any-link:active, .about-page-call-to-action a:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.about-page-blog-links {
  list-style: none;
  padding-left: 0;
}
.about-page-blog-links li {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: rgb(207, 216, 220) solid 1px;
}
.about-page-blog-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: rgb(36, 42, 51);
}
.about-page-blog-links li a::after {
  content: "❯";
}

.activity-feed__list {
  margin-top: 0;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.activity-feed__list > li {
  margin-bottom: 0.5rem;
}
.activity-feed__list > li:last-child {
  margin-bottom: 0;
}
.activity-feed__list {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 46.25em) {
  .activity-feed__list {
    margin-left: 0;
    margin-right: 0;
  }
}
.activity-feed__list p:last-child {
  margin-bottom: 0;
}

.activity-feed__item {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .activity-feed__item {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}
.activity-feed__item {
  margin-bottom: 0.5rem;
}
.activity-feed__item:last-child {
  margin-bottom: 0;
}

.activity-feed__item__contents {
  margin-bottom: 1.5rem;
}

.activity-feed__item__header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.activity-feed__item__avatar {
  margin-right: 0.5rem;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.activity-feed__item__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-grow: 1;
}

.activity-feed__item__date {
  color: rgb(75, 96, 106);
}

.activity-feed__item__title,
p.activity-feed__item__title {
  padding-right: 0.5rem;
}

.activity-feed__item__toggle {
  font-weight: inherit;
  background: none;
  cursor: pointer;
  padding: 0;
  border: 0;
  color: rgb(206, 72, 26);
  margin-bottom: 1rem;
}
.activity-feed__item__toggle:hover, .activity-feed__item__toggle:active, .activity-feed__item__toggle:focus {
  text-decoration: underline;
}

.activity-feed__item__read_original_source:any-link:hover, .activity-feed__item__read_original_source:any-link:active, .activity-feed__item__read_original_source:any-link:focus {
  text-decoration: underline;
}

.activity-feed__item__body {
  position: relative;
  width: 100%;
  margin-right: 1.5rem;
}
.activity-feed__item__body h3 {
  font-weight: bold;
}
.activity-feed__item__body h3 {
  font-size: 1rem;
  line-height: 1.5;
}
.activity-feed__item__body ol,
.activity-feed__item__body ul {
  margin-bottom: 1.5rem;
}
.activity-feed__item__body blockquote {
  margin-left: 1rem;
  margin-right: 1rem;
}
.activity-feed__item__body img {
  max-width: 100%;
}
.activity-feed__item__body .hidden {
  display: none;
}

.activity-feed__item__video_link {
  display: block;
  position: relative;
}

.activity-feed__item__play_icon {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}

.activity-feed__item__title a:any-link {
  font-weight: bold;
}
.activity-feed__item__title a:any-link:hover, .activity-feed__item__title a:any-link:active, .activity-feed__item__title a:any-link:focus {
  text-decoration: underline;
}

.article-actions {
  margin-bottom: 4rem;
}
@media screen and (min-width: 68.75em) {
  .article-actions {
    grid-column: 9/13;
    grid-row: 2;
  }
}
@media screen and (min-width: 68.75em) {
  .article-actions {
    padding-left: 2.5rem;
    grid-row: unset;
  }
}

.article-actions-heading {
  font-size: 1.125rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

.article-actions-reviewing-groups {
  margin-bottom: 2rem;
  list-style: none;
  padding-left: 0;
}

.article-actions-reviewing-groups__item {
  margin-bottom: 1rem;
}

.full-article-button {
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.full-article-button:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.full-article-button:any-link:hover, .full-article-button:any-link:active, .full-article-button:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.see-related-articles-button {
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.see-related-articles-button:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.see-related-articles-button:any-link:hover, .see-related-articles-button:any-link:active, .see-related-articles-button:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}
@media screen and (min-width: 68.75em) {
  .see-related-articles-button {
    margin-bottom: 5rem;
  }
}

.bonfire-management {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 68.75em) {
  .bonfire-management {
    margin-bottom: 5rem;
  }
}

.bonfire-management-button {
  align-self: flex-start;
  margin-bottom: 0.5rem;
  border-width: 0;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.bonfire-management-button:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.bonfire-management-button:any-link:hover, .bonfire-management-button:any-link:active, .bonfire-management-button:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.logged-out-call-to-action {
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.logged-out-call-to-action:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.logged-out-call-to-action:any-link:hover, .logged-out-call-to-action:any-link:active, .logged-out-call-to-action:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.saved-to-list {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

.saved-to-list:any-link {
  color: inherit;
}
.saved-to-list:any-link:hover, .saved-to-list:any-link:active {
  color: rgb(206, 72, 26);
}

.saved-to-list__icon {
  margin-right: 0.1875rem;
}

.list-management {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .list-management {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}

.list-management__listed-in {
  margin-bottom: 2rem;
}

.listed-in-list {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.listed-in-list li {
  margin-bottom: 0.5rem;
}

.article-actions__save_article {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.article-actions__save_article:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.article-actions__save_article:any-link:hover, .article-actions__save_article:any-link:active, .article-actions__save_article:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.article-abstract {
  margin-bottom: 3rem;
}
@media screen and (min-width: 46.25em) {
  .article-abstract {
    padding-right: 0;
    padding-left: 0;
  }
}
.article-abstract p {
  hyphens: auto;
}

.article-page-wrapper {
  width: 100%;
}

.article-page-header-wrapper {
  margin-bottom: 4rem;
}

.article-page-header-wrapper--with-curation-statements {
  padding-bottom: 4rem;
  background-color: rgb(239, 242, 243);
  margin-top: calc(-1 * 1px);
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 46.25em) {
  .article-page-header-wrapper--with-curation-statements {
    margin-left: 0;
    margin-right: 0;
  }
}
.article-page-header-wrapper--with-curation-statements {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 46.25em) {
  .article-page-header-wrapper--with-curation-statements {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-header.page-header--article {
  margin-top: 0;
  margin-bottom: 4rem;
  max-width: 75rem;
}
@media screen and (min-width: 46.25em) {
  .page-header.page-header--article {
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.article-author-list {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.article-author-list + * {
  clear: left;
}
@supports (display: flow-root) {
  .article-author-list {
    display: flow-root;
  }
  .article-author-list + * {
    clear: unset;
  }
}

.article-author-list > li {
  float: left;
  font-weight: bold;
}
.article-author-list > li::after {
  content: ", ";
}
.article-author-list > li:last-child::after {
  content: ".";
}

.curation-statements {
  margin-top: 3rem;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.curation-statement {
  margin-bottom: 3rem;
  border-top: 1px solid rgb(207, 216, 220);
  padding-top: 3rem;
}
.curation-statement:last-child {
  margin-bottom: 0;
}

.curation-statement-header {
  display: flex;
  justify-content: space-between;
}
.curation-statement-header img {
  max-height: 2rem;
}

.curation-statement-full-text {
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
.curation-statement-full-text::before, .curation-statement-full-text::after {
  position: absolute;
  color: rgb(206, 72, 26);
  font-family: "Noto Serif", serif;
  font-size: 3rem;
  line-height: 1;
}
.curation-statement-full-text::before {
  content: "“";
  left: 0;
  top: 0;
}
.curation-statement-full-text::after {
  content: "”";
  right: 0;
  bottom: -2rem;
}

.create-user-account-form-page__container {
  background-color: rgb(239, 242, 243);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.create-user-account-form-page__container main {
  flex-grow: 1;
}

.create-user-account-form-page__main {
  margin-bottom: 3rem;
}

@media screen and (min-width: 46.25em) {
  .create-user-account-form-wrapper {
    margin: 0 auto;
  }
}

.create-user-account-form {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 46.25em) {
  .create-user-account-form {
    margin-left: 0;
    margin-right: 0;
  }
}
.create-user-account-form {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .create-user-account-form {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}

.create-user-account-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.create-user-account-form__input {
  display: block;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  border: 1px solid rgb(207, 216, 220);
  border-radius: 6px;
  width: 100%;
}

.create-user-account-form__submit {
  margin-right: 1rem;
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.create-user-account-form__submit:hover {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}

.create-user-account-form__handle {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.create-user-account-form__handle .create-user-account-form__handle-url {
  background-color: rgb(243, 244, 246);
  padding: 0.5rem;
  border-top: 1px solid rgb(207, 216, 220);
  border-left: 1px solid rgb(207, 216, 220);
  border-bottom: 1px solid rgb(207, 216, 220);
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  line-height: normal;
  color: rgb(75, 96, 106);
  text-wrap: nowrap;
}
.create-user-account-form__handle .create-user-account-form__input {
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-header.page-header--edit-list-details-form-page {
  margin-bottom: 1rem;
}
@media screen and (min-width: 46.25em) {
  .page-header.page-header--edit-list-details-form-page {
    margin-bottom: 1.5rem;
  }
}
.page-header.page-header--edit-list-details-form-page h1 {
  margin-bottom: 0;
}

.browse-by-category {
  grid-column: 1/-1;
}

.browse-by-category-list {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

.browse-by-category-list__link {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.browse-by-category-list__link:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.browse-by-category-list__link:any-link:hover, .browse-by-category-list__link:any-link:active, .browse-by-category-list__link:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}
.browse-by-category-list__link {
  font-weight: normal;
}

.group-page-featured-lists {
  margin-bottom: 1.5rem;
}

.group-page-feed {
  margin-bottom: 1.5rem;
}

.follow-button {
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.follow-button:hover {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}

.unfollow-button {
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.unfollow-button:hover {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
}

.group-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.group-page-actions__secondary_button {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.group-page-actions__secondary_button:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.group-page-actions__secondary_button:any-link:hover, .group-page-actions__secondary_button:any-link:active, .group-page-actions__secondary_button:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.group-page-pref {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.375rem;
  font-size: 0.875rem;
  border-top: 1px solid rgb(207, 216, 220);
  border-bottom: 1px solid rgb(207, 216, 220);
  padding: 0.75rem 0;
  margin-bottom: 1.5rem;
}
.group-page-pref dt {
  font-weight: bold;
}
.group-page-pref dd {
  margin-left: 0;
}

.group-page-lists {
  margin-bottom: 1.5rem;
}

.user-card {
  display: flex;
  position: relative;
}
.user-card {
  background-color: rgb(255, 255, 255);
  padding: 1rem 1.25rem;
  border: 1px solid rgb(207, 216, 220);
  border-left-width: 0;
  border-right-width: 0;
}
@media screen and (min-width: 46.25em) {
  .user-card {
    border-radius: 6px;
    border-left-width: 1px;
    border-right-width: 1px;
  }
}

.user-card__body {
  flex-grow: 1;
}

.user-card__title {
  margin-bottom: 0.25rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: bold;
}

.user-card__link {
  color: rgb(36, 42, 51);
}
.user-card__link:any-link {
  color: rgb(36, 42, 51);
}
.user-card__link:any-link:active, .user-card__link:any-link:hover {
  color: rgb(36, 42, 51);
}
.user-card__link:hover::after {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.user-card__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 6px;
}

.user-card__handle {
  margin-bottom: 0.5rem;
}

.user-card__avatar {
  margin-left: 2rem;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.user-card__meta {
  color: rgb(75, 96, 106);
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}
.user-card__meta > * {
  margin-right: 0.25rem;
}
.user-card__meta > :nth-child(n+3)::before {
  content: "•";
  margin-right: 0.25rem;
}

.group-management-of-featured-lists {
  border-top: 1px solid rgb(207, 216, 220);
  padding-top: 3rem;
}

.group-management-of-featured-lists__sub-section {
  margin-bottom: 1rem;
}
.group-management-of-featured-lists__sub-section:last-child {
  margin-bottom: 0;
}

.list-names-with-actions {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.list-names-with-actions li {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.list-names-with-actions li article {
  flex-grow: 1;
}
.list-names-with-actions li button {
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.list-names-with-actions li button:hover {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
}

.page-header__visual_heading {
  width: 100%;
  height: 200px;
}
@media screen and (min-width: 46.25em) {
  .page-header__visual_heading {
    width: 400px;
    height: 200px;
  }
}

.page-header__large_logo {
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 46.25em) {
  .page-header__large_logo {
    object-position: left 50%;
  }
}

.page-header p.group-page-short-description {
  margin-bottom: 1.5rem;
}

.group-sub-page-back-link {
  display: block;
}

.supplementary-info {
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 46.25em) {
  .supplementary-info {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 68.75em) {
  .supplementary-info {
    grid-column: 9/13;
    grid-row: 2;
  }
}

.supplementary-list {
  margin-top: 0;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.supplementary-list > li {
  margin-bottom: 0.5rem;
}
.supplementary-list > li:last-child {
  margin-bottom: 0;
}

.supplementary-list__item {
  margin-bottom: 0.5rem;
}
.supplementary-list__item:last-child {
  margin-bottom: 0;
}

/* stylelint-disable value-no-vendor-prefix */
/* stylelint-enable value-no-vendor-prefix */
.curation-teasers {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6rem;
  padding-top: 6rem;
  max-width: 87.5rem;
  background-color: rgb(245, 246, 250);
}
@media screen and (min-width: 46.25em) {
  .curation-teasers {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (min-width: 60.25em) {
  .curation-teasers {
    position: relative;
  }
  .curation-teasers::before {
    content: "";
    border-left: 9000px solid rgb(245, 246, 250);
    position: absolute;
    bottom: 0;
    left: calc(9000px * -1);
    top: 0;
    right: 0;
    z-index: -1;
  }
  .curation-teasers::after {
    content: "";
    border-left: 9000px solid rgb(245, 246, 250);
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: calc(9000px * -1);
    z-index: -1;
  }
}

.curation-teasers__title {
  margin-bottom: 1.25rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
@media screen and (min-width: 46.25em) {
  .curation-teasers__title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 46.25em) {
  .curation-teasers__title {
    font-size: 1.75rem;
  }
}

.curation-teasers__teasers {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 60.25em) {
  .curation-teasers__teasers {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 60.25em) {
  .curation-teasers__teasers {
    display: flex;
    justify-content: space-evenly;
  }
}

.curation-teasers__teasers li {
  margin-bottom: 0.5rem;
}
.curation-teasers__teasers li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 60.25em) {
  .curation-teasers__teasers li {
    flex: 1 0;
    margin-bottom: 0;
    margin-right: 1.5rem;
    max-width: 24rem;
  }
  .curation-teasers__teasers li:last-child {
    margin-right: 0;
  }
}

.curation-teaser {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
}
@media screen and (min-width: 60.25em) {
  .curation-teaser {
    height: 100%;
  }
}

.curation-teaser__quote_wrapper {
  position: relative;
}
.curation-teaser__quote_wrapper::before, .curation-teaser__quote_wrapper::after {
  position: absolute;
  color: rgb(206, 72, 26);
  font-family: "Noto Serif", serif;
  font-size: 3rem;
  line-height: 1;
}
.curation-teaser__quote_wrapper::before {
  content: "“";
  left: -1.5rem;
  top: -1rem;
}
.curation-teaser__quote_wrapper::after {
  content: "”";
  right: -1.5rem;
  bottom: 0;
}

.curation-teaser__quote {
  margin: 0;
  margin-bottom: 1.5rem;
  padding-left: 0;
  border-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
  text-overflow: ellipsis;
}
.curation-teaser__quote p {
  display: inline;
}

.curation-teaser__strapline {
  font-weight: bold;
}

.home-page-groups {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
  max-width: 87.5rem;
}

.home-page-groups__title {
  margin-bottom: 2rem;
}
@media screen and (min-width: 46.25em) {
  .home-page-groups__title {
    font-size: 1.75rem;
  }
}

.home-page-groups-list {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 3.5rem 3.5rem;
  list-style: none;
  padding-left: 0;
}

.home-page-groups__button_wrapper {
  display: flex;
  justify-content: center;
}

.home-page-groups__button {
  margin: 0 auto;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.home-page-groups__button:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.home-page-groups__button:any-link:hover, .home-page-groups__button:any-link:active, .home-page-groups__button:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.home-page-hero__ctas {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-page-hero-explore-evaluated-preprints-link {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.home-page-hero-explore-evaluated-preprints-link:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.home-page-hero-explore-evaluated-preprints-link:any-link:hover, .home-page-hero-explore-evaluated-preprints-link:any-link:active, .home-page-hero-explore-evaluated-preprints-link:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.home-page-hero-browse-evaluating-groups-link {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.home-page-hero-browse-evaluating-groups-link:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.home-page-hero-browse-evaluating-groups-link:any-link:hover, .home-page-hero-browse-evaluating-groups-link:any-link:active, .home-page-hero-browse-evaluating-groups-link:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.home-page-hero-wrapper {
  background-color: rgb(52, 67, 74);
}
@media screen and (min-width: 58.75em) {
  .home-page-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}

.home-page-hero__left_image {
  justify-self: end;
  display: none;
}
@media screen and (min-width: 58.75em) {
  .home-page-hero__left_image {
    display: unset;
    opacity: 0.4;
    overflow: hidden;
  }
}
@media screen and (min-width: 105em) {
  .home-page-hero__left_image {
    justify-self: start;
  }
}

.home-page-hero__right_image {
  justify-self: start;
  display: none;
}
@media screen and (min-width: 58.75em) {
  .home-page-hero__right_image {
    display: unset;
    opacity: 0.4;
    overflow: hidden;
  }
}
@media screen and (min-width: 105em) {
  .home-page-hero__right_image {
    justify-self: end;
  }
}

.home-page-hero {
  color: rgb(255, 255, 255);
  padding-bottom: 3rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  padding-top: 1.25rem;
}
@media screen and (min-width: 58.75em) {
  .home-page-hero {
    padding-top: 12.0625rem;
  }
}

.home-page-hero__content_title {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.home-page-hero__content_title {
  font-size: 2rem;
  line-height: 1.1875;
}
@media screen and (min-width: 46.25em) {
  .home-page-hero__content_title {
    margin-bottom: 2.5rem;
    margin-top: 0;
  }
  .home-page-hero__content_title {
    font-size: 3.375rem;
    line-height: 1.1481481481;
  }
}

.home-page-hero__content_byline {
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 46.25em) {
  .home-page-hero__content_byline {
    margin-bottom: 2.5rem;
  }
}
.home-page-hero__content_byline {
  font-size: 1.25rem;
  line-height: 1.3;
}
@media screen and (min-width: 46.25em) {
  .home-page-hero__content_byline {
    margin-bottom: 4.75rem;
  }
  .home-page-hero__content_byline {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}

.home-page {
  overflow-x: hidden;
}

.home-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.home-page-container main {
  flex-grow: 1;
}

.home-page-value-statements-wrapper {
  color: rgb(255, 255, 255);
  background-color: rgb(44, 56, 61);
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}

.home-page-value-statements {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 62.25rem;
}

@media screen and (min-width: 46.25em) {
  .home-page-value-statements__title {
    font-size: 1.75rem;
  }
}

.home-page-value-statement {
  margin-bottom: 4rem;
}
@media screen and (min-width: 46.25em) {
  .home-page-value-statement {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 46.25em) {
  .home-page-value-statement.home-page-value-statement--reverse-order {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 46.25em) {
  .home-page-value-statement__copy {
    width: 50ch;
    margin-right: 4rem;
  }
}
@media screen and (min-width: 46.25em) {
  .home-page-value-statement--reverse-order .home-page-value-statement__copy {
    margin-right: 0;
    margin-left: 4rem;
  }
}

@media screen and (min-width: 46.25em) {
  .home-page-value-statement__heading {
    font-size: 1.375rem;
  }
}

.home-page-value-statement__image {
  width: 100%;
  max-width: 490px;
  height: auto;
  max-height: 365px;
}

.success-banner {
  border: 5px solid rgb(0, 112, 60);
  margin-top: 1rem;
}
.sciety-grid-two-columns > .success-banner {
  grid-column: 1/-1;
}
.success-banner p {
  padding: 0.5rem;
}

.success-banner__heading {
  padding: 0.5rem;
  background-color: rgb(0, 112, 60);
  color: rgb(255, 255, 255);
}
.success-banner__heading h2 {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-family: Ubuntu, sans-serif;
  font-weight: bold;
  line-height: 1.2;
}

.page-header.page-header--list {
  margin-bottom: 0;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 68.75em) {
  .page-header.page-header--list {
    flex-direction: row;
    justify-content: space-between;
    grid-column: 1/-1;
  }
}

.page-header--list .page-header__subheading {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
}

.page-header--list .page-header__avatar {
  width: 48px;
  height: 48px;
  margin-right: 0.5rem;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}

.page-header--list .page-header__description {
  margin-bottom: 0.5rem;
}

.page-header--list .page-header__meta {
  margin-bottom: 1rem;
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}
.page-header--list .page-header__meta > * {
  margin-right: 0.25rem;
}
.page-header--list .page-header__meta > :nth-child(n+3)::before {
  content: "•";
  margin-right: 0.25rem;
}

.page-header--list .page-header__list_image {
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 2rem;
}

.list-page-content {
  grid-column: 1/-1;
}

.list-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.375rem;
  margin-bottom: 2rem;
}

.list-page-actions__edit_details_link {
  background-image: url("/static/images/edit-note-icon.svg");
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: 0.5rem 0.25rem;
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.list-page-actions__edit_details_link:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.list-page-actions__edit_details_link:any-link:hover, .list-page-actions__edit_details_link:any-link:active, .list-page-actions__edit_details_link:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.list-page-actions__edit_details_link {
  padding-left: 2rem;
}

.list-page-actions__related_articles {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.list-page-actions__related_articles:any-link {
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.list-page-actions__related_articles:any-link:hover, .list-page-actions__related_articles:any-link:active, .list-page-actions__related_articles:any-link:focus {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
  color: rgb(36, 42, 51);
  text-decoration: none;
}

.list-page-actions__subscribe {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.list-page-actions__subscribe:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.list-page-actions__subscribe:any-link:hover, .list-page-actions__subscribe:any-link:active, .list-page-actions__subscribe:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.articles-page-count {
  margin-bottom: 1rem;
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}

.saved-articles-control--remove {
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(36, 42, 51);
  background-color: rgb(239, 242, 243);
}
.saved-articles-control--remove:hover {
  background-color: rgb(204.0285714286, 213.5857142857, 216.7714285714);
}

.saved-articles-control--annotate {
  display: inline-block;
  padding: 0.5625rem 0.75rem;
  border-radius: 6px;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
.saved-articles-control--annotate:any-link {
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.saved-articles-control--annotate:any-link:hover, .saved-articles-control--annotate:any-link:active, .saved-articles-control--annotate:any-link:focus {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.my-feed-page-numbers {
  margin-bottom: 1rem;
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}

.my-feed__list_item {
  margin-bottom: 0.5rem;
}
.my-feed__list_item:last-child {
  margin-bottom: 0;
}

.search-results-page-search-form {
  margin-bottom: 3rem;
}

@media screen and (min-width: 68.75em) {
  .related-groups {
    grid-column: 9/13;
    grid-row: 2;
  }
}
@media screen and (min-width: 68.75em) {
  .related-groups {
    grid-row: 3;
    padding-left: 2.5rem;
  }
}

.related-groups__list {
  list-style: none;
  padding-left: 0;
}

.related-groups__list_item {
  margin-bottom: 1rem;
}

.search-results {
  margin-bottom: 3rem;
}

.search-results__header {
  margin-bottom: 0.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}

.search-results__page_count {
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  line-height: 1.2;
}

.search-results__header_details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.search-results__header_details_item {
  margin-bottom: 0.5rem;
}
.search-results__header_details_item:first-child {
  margin-right: 1rem;
}

.page-header--user {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.page-header--user .page-header__avatar {
  width: 73px;
  height: 73px;
  flex: 0 0 73px;
  margin-right: 1rem;
  border-radius: 6px;
  border: 3px rgb(207, 216, 220) solid;
}
.page-header--user h1 {
  margin-bottom: 0;
}
.page-header--user .page-header__handle {
  font-size: 1rem;
}
@media screen and (min-width: 46.25em) {
  .page-header--user .page-header__handle {
    font-size: 1.25rem;
  }
}

.static-message {
  padding-top: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media screen and (min-width: 46.25em) {
  .static-message {
    margin-left: 0;
    margin-right: 0;
  }
}

.create-new-list-call-to-action {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-width: 0;
  border-radius: 6px;
  padding: 0.5625rem 0.75rem;
  color: rgb(255, 255, 255);
  background-color: rgb(206, 72, 26);
}
.create-new-list-call-to-action:hover {
  background-color: rgb(151.6586206897, 53.0068965517, 19.1413793103);
}
