/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .ultimas-noticias-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .mas-noticias-cards-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .header__inner {
    height: 6rem;
  }

  .header__brand {
    justify-content: flex-start;
    height: 5rem;
  }

  .header__brand a img {
    height: 5rem;
  }
  
  .header__nav .header__nav-list {
    display: flex;
  }
  
  .header-hamburger-menu {
    display: none;
  }
  
  .header-close {
    display: none;
  }
  
  .header__mobile-menu {
    display: none;
  }
  
  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__brand {
    justify-content: flex-start;
    height: 8rem;
  }

  .footer__brand a img {
    height: 8rem;
  }

  .footer__actions {
    align-items: flex-end;
  }

  .footer__nav {
    justify-content: flex-end;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero-content {
    padding-bottom: 4rem;
  }
  
  .hero-title {
    font-size: 3rem;
    line-height: 1;
  }
  
  .hero-summary {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  
  .ultimas-noticias {
    padding-top: 4rem;
    padding-bottom: 0;
  }
  
  .ultimas-noticias-highlighted-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .videos {
    padding-top: 4rem;
    padding-bottom: 0;
  }
  
  .videos-header-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .videos-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lo-mas-leido {
    padding-top: 4rem;
    padding-bottom: 0;
  }
  
  .lo-mas-leido-header-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  
  .mas-noticias {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
} 

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .ultimas-noticias-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .mas-noticias-cards-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

