@media screen and (min-width: 0px) {
  .blog-section {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 7rem;
  }
  .blog-box {
    width: 90vw;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .blog-box h3 {
    font-size: 2rem;
    font-family: var(--title-font);
    margin-bottom: 2rem;
  }
  article {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
  }
  article h3 {
    font-size: 2.4rem;
    font-family: var(--title-font);
    letter-spacing: -0.1rem;
    line-height: 2.4rem;
    margin-top: 1rem;
    overflow-y: hidden;
    margin-bottom: 0.4rem;
  }
  article .commentary {
    font-style: italic;
  }
  article img {
    width: 100%;
    max-width: 700px;
  }
  article p {
    font-size: 1.3rem;
    font-family: var(--text-font);
    color: #343434;
    margin-bottom: 1rem;
  }
  article p a.contacto-article {
    padding: 0;
    background-color: transparent;
    color: var(--tag-color);
    font-weight: bold;
  }
  article p a.contacto-article:hover {
    text-decoration: underline;
  }
  p.article-date {
    color: #343434;
    font-weight: bold;
    font-family: var(--text-font);
    margin-bottom: 1rem;
  }
  .blog-box article a {
    background-color: var(--tag-color);
    color: #ffffff;
    font-family: var(--text-font);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .blog-box article a:hover {
    text-decoration: underline;
  }
  .navigation-blog {
    width: 100%;
    margin-top: 4rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
  .navigation-blog a {
    font-size: 1.1rem;
    text-decoration: none;
    margin-right: 1rem;
    font-family: var(--text-font);
  }
  .deactivated {
    text-decoration: none;
    pointer-events: none;
    color: #747474;
  }
  .activated {
    color: var(--tag-color);
    font-weight: bold;
  }
  .activated:hover {
    text-decoration: underline;
  }
}