@charset "UTF-8";
.footer {
  font-size: 0.69444rem;
  line-height: 1rem;
  background-color: #f5f5f5;
  color: #292929;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "PT Sans", sans-serif; }
  .footer__top {
    min-height: 8rem;
    display: flex;
    justify-content: center; }
  .footer__top__center {
    background-image: url("/static/images/farmastron.svg");
    background-position: right bottom;
    background-repeat: no-repeat;
    width: 1024px;
    max-width: 100%;
    display: flex;
    flex-direction: column; }
    @media only screen and (min-width: 768px) {
      .footer__top__center {
        display: grid;
        grid-template-columns: 3fr 3fr 2fr;
        grid-column-gap: 1rem; } }
    @media only screen and (min-width: 1024px) {
      .footer__top__center {
        display: grid;
        grid-template-columns: 20rem 20rem auto;
        grid-column-gap: 1rem; } }
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    flex-direction: column; }
  .footer__nav__link {
    position: relative;
    color: #292929;
    padding: 0 0.5rem 0 1.5rem;
    font-size: 0.83333rem;
    line-height: 2rem;
    white-space: nowrap;
    text-decoration: none; }
    @media only screen and (min-width: 568px) {
      .footer__nav__link:before {
        position: absolute;
        top: -1px;
        left: 0.5rem;
        display: inline;
        content: "\2B26";
        font-size: 0.69444rem;
        color: #292929; } }
    .footer__nav__link:active {
      color: #292929; }
    @media only screen and (min-width: 1024px) {
      .footer__nav__link:hover {
        color: #292929; } }
  .footer__text {
    padding: 0 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem; }
  .footer__header {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.83333rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    line-height: 1rem; }
  .footer__copy {
    padding: 1rem 0.5rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
    line-height: 1.5rem;
    font-size: 0.83333rem; }

.header__title {
  position: absolute;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  margin: 0;
  display: flex;
  justify-content: flex-start; }
  @media only screen and (max-width: 460px) {
    .header__title {
      max-width: 240px; } }
  @media only screen and (min-width: 1024px) {
    .header__title {
      z-index: 1000; } }

.header__title__logo {
  height: 3rem;
  width: 3rem;
  border-radius: 5px;
  flex: 0 0 auto;
  box-shadow: -1px 0px 1px 2px #f5f5f5; }
  @media only screen and (min-width: 1024px) {
    .header__title__logo {
      height: 3.5rem;
      width: 3.5rem; } }

.header__title__link {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%; }

.header__title__link:active {
  opacity: 0.65; }

.header__title__texts {
  text-align: left;
  padding-left: 0.5rem;
  overflow: hidden; }

.header__title__name {
  display: block;
  color: #292929;
  font-size: 1rem;
  line-height: 1rem; }
  @media only screen and (min-width: 1024px) {
    .header__title__name {
      font-size: 1.2rem;
      line-height: 1.5rem; } }

.header__title__slogan {
  font-family: "PT Mono", monospace;
  display: block;
  color: #5c6469;
  font-size: 0.5787rem;
  line-height: 0.75rem;
  font-weight: 400; }
  @media only screen and (min-width: 1024px) {
    .header__title__slogan {
      font-size: 0.69444rem;
      line-height: 1rem; } }

.header__nav {
  display: flex;
  justify-content: flex-end; }
  .header__nav__toggle {
    font-family: "PT Sans", sans-serif;
    color: #5c6469;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    text-transform: uppercase;
    border: 1px solid #098541;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 0.83333rem;
    user-select: none; }
    .header__nav__toggle:active {
      background-color: #098541;
      color: #ffffff; }
    @media only screen and (min-width: 1024px) {
      .header__nav__toggle {
        display: none; } }
  .header__nav__wrapper {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 100%;
    height: 100%;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.25); }
    @media only screen and (min-width: 1024px) {
      .header__nav__wrapper {
        position: relative;
        width: 100%;
        top: 0;
        right: 0;
        height: auto;
        background: transparent;
        justify-content: flex-start; } }
    .header__nav__wrapper--opened {
      right: 0; }
  .header__nav__content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 200px;
    background-color: #292929;
    color: #ffffff;
    overflow-y: auto;
    padding: 2rem 0.5rem 0rem;
    font-size: 0.83333rem; }
    @media only screen and (min-width: 1024px) {
      .header__nav__content {
        position: relative;
        width: 100%;
        height: auto;
        background: transparent;
        padding: 0;
        justify-content: flex-start; } }
  .header__nav__content__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.3;
    cursor: pointer; }
    @media only screen and (min-width: 1024px) {
      .header__nav__content__close {
        display: none; } }
    .header__nav__content__close:active {
      opacity: 1; }
    .header__nav__content__close:before, .header__nav__content__close:after {
      position: absolute;
      left: 1rem;
      content: " ";
      height: 1.5rem;
      width: 2px;
      background-color: #f5f5f5; }
    .header__nav__content__close:before {
      transform: rotate(45deg); }
    .header__nav__content__close:after {
      transform: rotate(-45deg); }
  .header__nav__content__logo {
    display: block;
    height: 5rem;
    width: 5rem;
    border-radius: 5px;
    margin: 0 auto 1rem; }
    @media only screen and (min-width: 1024px) {
      .header__nav__content__logo {
        display: none; } }
  .header__nav__content__nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: -1px;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #5c6469; }
    @media only screen and (min-width: 1024px) {
      .header__nav__content__nav {
        justify-content: flex-end;
        flex-direction: row;
        border-bottom: none;
        margin: 0;
        padding: 0;
        min-height: 51px; } }
  @media only screen and (min-width: 1024px) {
    .header__nav__content__nav--cats {
      margin-top: 1rem;
      justify-content: flex-start; } }
  .header__nav__content__nav__stars {
    color: #098541; }
    .header__nav__content__nav__stars:before {
      content: "\2605\A0"; }
    .header__nav__content__nav__stars:after {
      content: "\A0\2605"; }
  .header__nav__content__nav__link {
    color: #ffffff;
    text-decoration: none;
    font-family: "PT Sans", sans-serif;
    position: relative; }
    .header__nav__content__nav__link:active {
      background-color: rgba(255, 255, 255, 0.1); }
      @media only screen and (min-width: 1024px) {
        .header__nav__content__nav__link:active {
          background-color: transparent;
          color: #098541; } }
    @media only screen and (min-width: 1024px) {
      .header__nav__content__nav__link:hover {
        color: #098541; } }
    @media only screen and (min-width: 1024px) {
      .header__nav__content__nav__link:before {
        content: "";
        width: 1px;
        height: 1rem;
        background-color: #f5f5f5;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%); } }
    @media only screen and (min-width: 1024px) {
      .header__nav__content__nav__link {
        color: #5c6469;
        padding: 0.5rem 0.75rem; } }

.header {
  top: 0;
  order: 2;
  position: relative;
  z-index: 99;
  position: sticky;
  min-height: 51px;
  padding: 0.5rem;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05); }
  .header__center {
    max-width: 1024px;
    margin: 0 auto; }
  @media only screen and (min-width: 1024px) {
    .header {
      grid-template-columns: 50% 50%; } }

.posts__item {
  list-style: none; }
  .posts__item--featured {
    grid-column-start: first;
    grid-column-end: last; }

.posts__item__article {
  display: grid;
  grid-template-columns: 33.33% 66.66%;
  grid-template-rows: auto;
  grid-template-areas: "first second"; }
  @media only screen and (min-width: 568px) {
    .posts__item__article {
      grid-template-columns: 100%;
      grid-template-rows: auto auto;
      grid-template-areas: "first" "second"; } }

.posts__item--featured .posts__item__article {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
  grid-template-areas: "first" "second"; }
  @media only screen and (min-width: 568px) {
    .posts__item--featured .posts__item__article {
      grid-template-columns: 260px auto;
      grid-template-rows: auto;
      grid-template-areas: "first second"; } }
  @media only screen and (min-width: 1024px) {
    .posts__item--featured .posts__item__article {
      grid-template-columns: 330px auto;
      grid-template-rows: auto;
      grid-template-areas: "first second"; } }

.posts__item__picture {
  position: relative;
  grid-area: first;
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer; }
  @media only screen and (min-width: 1024px) {
    .posts__item__picture {
      height: 10rem; } }
  .posts__item__picture.border {
    box-shadow: 0 0 3px rgba(1, 1, 1, 0.1); }

.posts__item--featured .posts__item__picture {
  object-fit: cover;
  height: 11rem; }
  @media only screen and (min-width: 568px) {
    .posts__item--featured .posts__item__picture {
      height: 8rem; } }
  @media only screen and (min-width: 1024px) {
    .posts__item--featured .posts__item__picture {
      grid-area: first;
      height: 11rem; } }

.posts__item__texts {
  grid-area: second;
  padding: 0 0.5rem; }
  @media only screen and (min-width: 568px) {
    .posts__item__texts {
      padding: 0rem 0.5rem; } }

.posts__item--featured .posts__item__texts {
  grid-area: second;
  padding: 0.5rem; }
  @media only screen and (min-width: 568px) {
    .posts__item--featured .posts__item__texts {
      padding: 0 1rem; } }

.posts__item__title {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  display: block;
  font-size: 0.83333rem;
  line-height: 1.5rem; }
  .posts__item__title a {
    color: #292929;
    text-decoration: none; }
  .posts__item__title a:active {
    color: #098541; }
  @media only screen and (min-width: 568px) {
    .posts__item__title a:hover {
      color: #098541; } }

.posts__item--featured .posts__item__title {
  font-size: 1rem;
  line-height: 2rem; }
  @media only screen and (min-width: 568px) {
    .posts__item--featured .posts__item__title {
      font-size: 1.2rem;
      line-height: 1.5rem; } }
  @media only screen and (min-width: 1024px) {
    .posts__item--featured .posts__item__title {
      font-size: 1.2rem;
      line-height: 2.5rem; } }

.posts {
  margin-top: 2rem; }
  .posts__title {
    padding: 0 0.5rem;
    margin: 0 auto 1rem;
    max-width: 1024px;
    font-family: "PT Sans", sans-serif;
    font-size: 0.83333rem;
    line-height: 1.5rem; }
    @media only screen and (min-width: 1024px) {
      .posts__title {
        font-size: 1.44rem;
        padding: 0;
        line-height: 2rem;
        margin-bottom: 2rem; } }
  .posts__list {
    max-width: 1024px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: [first] 1fr [last];
    grid-template-rows: auto;
    grid-row-gap: 2rem; }
    @media only screen and (min-width: 1024px) {
      .posts__list {
        grid-template-columns: [first] 1fr 1fr 1fr [last];
        grid-template-rows: auto;
        grid-column-gap: 1rem;
        grid-row-gap: 4rem; } }

.category-header {
  background-color: #5c6469;
  color: #ffffff;
  box-shadow: 0px -0.25rem 0px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 2rem; }
  .category-header__center {
    padding: 1rem 0.5rem 1.5rem;
    margin: 0 auto;
    max-width: 1024px;
    font-family: "PT Sans", sans-serif;
    font-size: 0.83333rem;
    line-height: 1.5rem; }
  .category-header__center > * {
    margin: 0;
    max-width: 1024px; }
  .category-header a {
    color: #c2a57c; }
  .category-header--secondary a {
    color: #5c6469; }
  .category-header .post-title {
    font-family: "Quicksand", sans-serif;
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 1rem;
    font-size: 1.44rem;
    line-height: 2rem; }
    @media only screen and (min-width: 1024px) {
      .category-header .post-title {
        font-size: 2.0736rem;
        line-height: 3.5rem; } }

.error {
  margin: 8rem 0.5rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  color: #292929; }
  @media only screen and (min-width: 1024px) {
    .error {
      font-size: 1.44rem;
      line-height: 2.5rem; } }

@charset "UTF-8";
.post {
  margin-bottom: 4rem; }
  .post__picture {
    object-fit: cover;
    height: 14rem;
    display: block;
    width: 100%; }
    @media only screen and (min-width: 568px) {
      .post__picture {
        height: 22rem; } }
    @media only screen and (min-width: 1024px) {
      .post__picture {
        height: 36rem; } }
  .post-header {
    margin: 0 auto 0.5rem;
    max-width: 1024px; }
    @media only screen and (min-width: 1024px) {
      .post-header {
        margin: 0 auto 1rem; } }
  .post-content {
    font-family: "PT Sans", sans-serif;
    font-size: 0.83333rem;
    line-height: 2rem;
    color: #292929; }
    @media only screen and (min-width: 1024px) {
      .post-content {
        font-size: 1rem;
        line-height: 2.5rem; } }
    .post-content__center {
      margin: 0 auto;
      padding: 1rem 0.5rem 2rem;
      max-width: 1024px; }
      @media only screen and (min-width: 1024px) {
        .post-content__center {
          padding: 2rem 2rem 2rem 6rem; } }
    .post-content .post-content__section {
      background-color: #5c6469;
      color: #ffffff;
      box-shadow: 0px -0.25rem 0px 0px rgba(0, 0, 0, 0.25); }
      .post-content .post-content__section--secondary {
        background-color: #5c6469;
        color: #ffffff;
        box-shadow: 0px -0.25rem 0px 0px rgba(0, 0, 0, 0.25); }
      .post-content .post-content__section__center {
        padding: 1rem 0.5rem;
        margin: 0 auto;
        max-width: 1024px;
        font-family: "PT Sans", sans-serif;
        font-size: 1rem;
        line-height: 2rem; }
        @media only screen and (min-width: 1024px) {
          .post-content .post-content__section__center {
            font-size: 1rem;
            line-height: 2.5rem;
            padding: 3rem 0; } }
      .post-content .post-content__section__center > * {
        max-width: 1024px; }
      .post-content .post-content__section__center > *:last-child {
        margin-bottom: 0; }
      .post-content .post-content__section__name {
        text-align: center;
        text-transform: uppercase;
        font-family: "PT Sans", sans-serif;
        font-size: 0.83333rem;
        line-height: 1rem;
        margin-bottom: 0.5rem; }
        @media only screen and (min-width: 1024px) {
          .post-content .post-content__section__name {
            font-size: 1rem;
            line-height: 1rem; } }
      .post-content .post-content__section a {
        color: #c2a57c; }
      .post-content .post-content__section--secondary a {
        color: #c2a57c; }
      .post-content .post-content__section h2 {
        font-family: "Quicksand", sans-serif;
        text-align: center;
        font-weight: 400;
        margin-bottom: 1rem;
        font-size: 1.44rem;
        line-height: 2rem; }
        @media only screen and (min-width: 1024px) {
          .post-content .post-content__section h2 {
            font-size: 2.0736rem;
            line-height: 3.5rem; } }
    .post-content a {
      color: #098541; }
    .post-content p,
    .post-content h2,
    .post-content h3,
    .post-content h4,
    .post-content h5,
    .post-content h6,
    .post-content ul,
    .post-content ol {
      max-width: 30rem; }
      @media only screen and (min-width: 1024px) {
        .post-content p,
        .post-content h2,
        .post-content h3,
        .post-content h4,
        .post-content h5,
        .post-content h6,
        .post-content ul,
        .post-content ol {
          max-width: 35rem; } }
    .post-content p {
      margin-bottom: 1rem; }
      @media only screen and (min-width: 1024px) {
        .post-content p {
          margin-bottom: 1.5rem; } }
    .post-content picture {
      margin-bottom: 1rem; }
    .post-content h2 {
      font-family: "Quicksand", sans-serif;
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-size: 1.728rem;
      line-height: 2.5rem;
      max-width: 100%; }
      .post-content h2:first-child {
        margin-top: 0; }
      @media only screen and (min-width: 1024px) {
        .post-content h2 {
          font-size: 2.0736rem;
          line-height: 3.5rem; } }
      .post-content h2.section {
        max-width: 100%; }
    .post-content h3 {
      font-weight: 400;
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-size: 1.2rem;
      line-height: 2rem;
      font-family: "Quicksand", sans-serif;
      font-weight: 700; }
      .post-content h3:first-child {
        margin-top: 0; }
      @media only screen and (min-width: 1024px) {
        .post-content h3 {
          font-size: 1.44rem;
          line-height: 2.5rem; } }
    .post-content h4 {
      font-weight: 700;
      margin-bottom: 0;
      font-size: 1rem;
      line-height: 1.5rem; }
      @media only screen and (min-width: 1024px) {
        .post-content h4 {
          font-size: 1.2rem;
          line-height: 2rem; } }
    .post-content table {
      margin-bottom: 2rem; }
    .post-content table.simple th,
    .post-content table.simple td {
      border: 1px solid #292929;
      padding: 0.25rem; }
    .post-content ul {
      margin-bottom: 2rem; }
    .post-content ul li {
      margin-left: 1rem; }
    .post-content ol {
      margin-bottom: 2rem; }
    .post-content ol > li {
      margin-left: 1.5rem;
      font-family: "Quicksand", sans-serif;
      list-style: decimal-leading-zero;
      color: #098541; }
    .post-content ol > li > * {
      color: #292929;
      font-family: "PT Sans", sans-serif;
      list-style: decimal-leading-zero; }
    .post-content pre {
      color: #000;
      background: none;
      text-shadow: 0 1px #fff;
      font-family: "PT Mono", monospace;
      text-align: left;
      white-space: pre;
      word-spacing: normal;
      word-break: normal;
      word-wrap: normal;
      line-height: 1.5rem;
      -moz-tab-size: 4;
      -o-tab-size: 4;
      tab-size: 4;
      -webkit-hyphens: none;
      -moz-hyphens: none;
      -ms-hyphens: none;
      hyphens: none;
      margin-bottom: 1rem; }
      @media only screen and (min-width: 1024px) {
        .post-content pre {
          margin-bottom: 2rem; } }
    .post-content code {
      padding: 0.25rem;
      display: inline;
      border: 1px solid #5c6469;
      background-color: #f5f5f5;
      font-family: monospace;
      overflow-y: hidden;
      overflow-x: auto; }
    .post-content pre code {
      white-space: pre;
      display: block;
      padding: 0.5rem; }
    .post-content .border {
      border: 1px solid #292929; }
    .post-content .center {
      float: none;
      display: grid;
      justify-items: center;
      max-width: 30rem; }
      @media only screen and (min-width: 1024px) {
        .post-content .center {
          max-width: 35rem; } }
    .post-content .full {
      display: grid;
      justify-items: center; }
      @media only screen and (min-width: 1024px) {
        .post-content .full {
          margin-left: -6rem; } }
    .post-content .right {
      float: none;
      display: block;
      display: flex;
      justify-content: center; }
      @media only screen and (min-width: 1024px) {
        .post-content .right {
          float: right;
          max-width: 50%;
          text-align: left;
          margin-left: 2rem;
          margin-right: 2rem; } }
    .post-content blockquote {
      position: relative;
      background-color: rgba(0, 0, 0, 0.05);
      padding: 1rem;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 2rem;
      font-style: italic; }
      .post-content blockquote:after {
        content: "\201D";
        position: absolute;
        top: 0rem;
        right: 1rem;
        font-size: 2.98598rem; }
      @media only screen and (min-width: 1024px) {
        .post-content blockquote {
          padding: 4rem 2rem;
          margin-left: -2rem;
          margin-right: -2rem;
          margin-bottom: 2rem; }
          .post-content blockquote:after {
            top: 1rem;
            right: 2rem;
            font-size: 6.19174rem; } }
      .post-content blockquote > * {
        margin-bottom: 0;
        max-width: 100%; }
    .post-content .highlight {
      background-color: rgba(0, 0, 0, 0.05);
      padding: 1rem;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 2rem; }
      .post-content .highlight--mb0 {
        margin-bottom: 0; }
      .post-content .highlight > * {
        margin-bottom: 0;
        max-width: 100%; }
      .post-content .highlight .post-content__center {
        max-width: 1024px; }
    @media only screen and (min-width: 1280px) {
      .post-content .post-content__center .highlight {
        padding: 2rem;
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: 2rem; } }
    .post-content .highlight2 {
      background-color: #098541;
      color: #ffffff;
      padding: 1rem;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 2rem; }
      .post-content .highlight2--mb0 {
        margin-bottom: 0; }
      .post-content .highlight2 > *,
      .post-content .highlight2 a {
        color: #ffffff;
        margin-bottom: 0;
        max-width: 100%; }
    @media only screen and (min-width: 1024px) {
      .post-content.post-content__center .highlight,
      .post-content.post-content__center .highlight2 {
        padding: 2rem;
        margin-left: -2rem;
        margin-right: -2rem;
        margin-bottom: 2rem; } }
    .post-content hr {
      margin-bottom: 1rem; }
    .post-content dt {
      margin-top: -1px;
      background-color: rgba(0, 0, 0, 0.05);
      padding: 0.5rem 1rem;
      display: inline-block;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .post-content dd {
      position: relative;
      background-color: rgba(0, 0, 0, 0.05);
      padding: 1rem 1rem 1rem 3rem;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 2rem; }
      .post-content dd:after {
        content: "\21B3";
        position: absolute;
        top: 50%;
        margin-top: -1rem;
        left: 0.5rem;
        font-size: 1.44rem; }
      @media only screen and (min-width: 1024px) {
        .post-content dd {
          padding: 2rem 2rem 2rem 3rem;
          margin-bottom: 2rem; } }
      .post-content dd > * {
        margin-bottom: 0;
        max-width: 100%; }
    .post-content .strike {
      text-decoration: line-through; }

.subscribe {
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center; }
  @media only screen and (min-width: 1024px) {
    .subscribe {
      margin-bottom: 4rem; } }
  .subscribe--no-mb {
    margin-bottom: 0; }
  .subscribe__center {
    overflow: hidden;
    position: relative;
    display: grid;
    grid-auto-flow: row;
    border-radius: 0.5rem;
    background-color: #5c6469;
    background: url("/static/images/sub2.webp") no-repeat top center;
    background-size: cover;
    box-shadow: 0px 0.25rem 10px 0.5rem #f5f5f5;
    padding: 1rem 1rem;
    margin: 0 0.5rem;
    width: 1024px;
    max-width: 100%;
    font-family: "PT Sans", sans-serif;
    font-size: 0.83333rem;
    line-height: 1.5rem; }
    @media only screen and (min-width: 568px) {
      .subscribe__center {
        padding: 4rem 1rem;
        grid-auto-flow: column;
        grid-template-columns: 4fr 1fr; } }
    @media only screen and (min-width: 1024px) {
      .subscribe__center {
        font-size: 1rem;
        line-height: 2rem;
        padding: 3rem 1rem; } }
  .subscribe__center:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(9, 133, 65, 0.75); }
  .subscribe__center > * {
    position: relative; }
  .subscribe__left-part {
    display: grid;
    grid-auto-flow: row;
    align-items: start;
    justify-items: start; }
  .subscribe__right-part {
    display: none;
    padding-top: 0.5rem;
    text-align: center; }
    @media only screen and (min-width: 568px) {
      .subscribe__right-part {
        display: block; } }
  .subscribe a {
    color: #5c6469; }
  .subscribe__popup {
    display: none;
    position: fixed;
    overflow-y: auto;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-items: center;
    background-color: rgba(0, 0, 0, 0.75); }
  .subscribe__popup--open {
    display: grid; }
  .subscribe__popup-center {
    position: relative;
    top: 4rem;
    width: calc(100% - 2rem);
    box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.5);
    background-color: #292929;
    display: grid;
    grid-template-rows: 1fr 1fr; }
    @media only screen and (min-width: 1024px) {
      .subscribe__popup-center {
        top: 0;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr;
        max-width: 1000px; } }
  .subscribe__popup-highlight {
    padding: 1rem;
    position: relative; }
    @media only screen and (min-width: 1024px) {
      .subscribe__popup-highlight {
        padding: 3rem 1rem 5rem; } }
  .subscribe__popup-highlight:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -1rem;
    left: -0.5rem;
    bottom: -1rem;
    right: 0;
    border-radius: 0.25rem;
    background: url("/static/images/sub2.webp") no-repeat top center;
    background-size: cover; }
  .subscribe__popup-highlight:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: -1rem;
    left: -0.5rem;
    bottom: -1rem;
    right: 0;
    border-radius: 0.25rem;
    background-color: rgba(9, 133, 65, 0.75); }
  .subscribe__popup-highlight-content {
    position: relative;
    z-index: 3; }
  .subscribe__popup-list {
    padding: 2rem 1rem;
    text-align: center; }
  .subscribe__form {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: row;
    height: 8rem;
    width: 100%;
    max-width: 100%; }
    @media only screen and (min-width: 768px) {
      .subscribe__form {
        display: flex;
        height: 4rem;
        width: 490px; } }
  .subscribe input[type="email"] {
    border: none;
    border-radius: 0.25rem;
    font-weight: 400;
    font-size: 1rem;
    color: #5c6469;
    padding: 0 1rem;
    flex: 1 1 310px; }
    @media only screen and (min-width: 768px) {
      .subscribe input[type="email"] {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 0 2rem; } }
  .subscribe__button {
    cursor: pointer;
    display: block;
    background-color: #e8c32e;
    font-weight: 700;
    font-size: 1rem;
    color: #292929;
    border-radius: 0.25rem;
    border: none;
    padding: 1rem 1rem;
    min-width: 240px; }
    @media only screen and (min-width: 568px) {
      .subscribe__button {
        padding: 1rem 1rem; } }
    .subscribe__button:hover {
      text-decoration: underline; }
  .subscribe input[type="submit"] {
    cursor: pointer;
    background-color: #e8c32e;
    font-weight: 700;
    font-size: 1rem;
    color: #292929;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border: none;
    padding: 0 1rem; }
    @media only screen and (min-width: 568px) {
      .subscribe input[type="submit"] {
        padding: 0 3rem; } }
    .subscribe input[type="submit"]:hover {
      text-decoration: underline; }
  .subscribe__popup-close {
    position: absolute;
    right: 0.5rem;
    top: -3rem;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer; }
    @media only screen and (min-width: 1024px) {
      .subscribe__popup-close {
        top: -2rem; } }
  .subscribe__popup-close:before, .subscribe__popup-close:after {
    position: absolute;
    left: 50%;
    content: " ";
    height: 1.5rem;
    width: 4px;
    background-color: #ffffff; }
  .subscribe__popup-close:before {
    transform: rotate(-45deg); }
  .subscribe__popup-close:after {
    transform: rotate(-135deg); }
  .subscribe .post-title {
    text-align: left;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 2rem; }
    @media only screen and (min-width: 1024px) {
      .subscribe .post-title {
        font-weight: 400;
        font-size: 1.728rem; } }
  .subscribe__summary {
    font-size: 0.83333rem;
    margin-bottom: 1rem; }

.disqus {
  margin: 0 0.5rem 4rem 0.5rem;
  display: flex;
  justify-content: center; }
  .disqus__content {
    width: 1024px;
    max-width: 100%; }

