.breadcrumbs-menu {
  display: none;
}

h2 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
}

.more-articles-container {
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
}

.more-articles-container a {
  color: #333;
  display: flex;
  align-items: center;
}

.more-articles-container i {
  margin-top: 4px;
  margin-left: 5px;
  color: var(--third-color);
}

.article-container a {
  display: block;
  height: 100%;
}

.article-title h3 {
  margin-bottom: 10px;
}

.article-excerpt p {
  font-size: 14px;
  line-height: 1.5;
  color: #808080;
  font-weight: 300;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #EFEDED;
}

.category-container {
  font-size: 14px;
  color: #B5B5B5;
  margin-bottom: -15px;
  font-weight: 300;
}

.article-container > div, .guide-large, .guide-small {
  -webkit-box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 4%);
  box-shadow: 0px 0px 3px 3px rgb(0 0 0 / 4%);
  background-color: white;
  border: 1px solid #D6D6D6;
  transition: 0.2s;
}

.article-container > div:hover, .guide-large:hover, .guide-small:hover {
  -webkit-box-shadow: 0px 0px 7px 7px rgb(0 0 0 / 5%);
  box-shadow: 0px 0px 7px 7px rgb(0 0 0 / 5%);
}

section.top-articles, section.recent-security-articles, section.vpn {
  background-color: #F9F9F9;
  overflow: hidden;
}

section {
  padding: 3rem 0;
}

@media only screen and (max-width: 1300px) {
  section {
      padding: 3rem 1rem;
  }
}

.article-container.top {
  display: flex;
  justify-content: space-between;
}

.top-article {
  max-width: 31%;
}

.top-article img {
  width: 100%;
  height: auto;
}

.top-article .article-title h3 {
  margin-bottom: 10px;
}

.top-article .category-container {
  margin: 0.5rem 1rem -15px 1rem;
}

.top-article .article-title{
  margin: 0 1rem;
}

.top-article .article-excerpt {
  margin: 0 1rem 1rem 1rem;
}

.top-article-lower {
  display: flex;
  flex-direction: column-reverse;
}

@media only screen and (max-width: 760px) {
  .article-container.top .top-article:nth-of-type(3) {
      display: none;
  }

  .top-article {
      max-width: 48.5%;
  }
}

@media only screen and (max-width: 550px) {

  .article-container.top {
      display: block;
  }

  .top-article {
      max-width: none;
  }

  .top-article:nth-of-type(1) {
      margin-bottom: 2rem;
  }
}

/* Recent security articles */

.article-container.security {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.internet-security {
  max-width: 48.5%;
  padding: 1rem;
  margin-bottom: 2rem;
}

.internet-security-upper {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5px;
}

.internet-security-upper-text {
  margin-right: 1rem;
  min-height: 87px;
}

.internet-security-upper img {
  width: auto;
  max-height: 90px;
  max-width: 210px;
  object-fit: cover;
}

.internet-security-lower {
  display: flex;
    flex-direction: column-reverse;
}

@media only screen and (max-width: 1200px) {

  .recent-security-articles {
      padding-top: 0;
  }

  .internet-security-upper img {
      max-height: 120px;
      margin-bottom: 0.7rem;
      max-width: none;
  }

  .internet-security {
      width: 48.5%;
  }

  .internet-security-upper {
      flex-direction: column-reverse;
  }

  .internet-security-upper-text {
      min-height: unset;
  }

  
}

@media only screen and (max-width: 650px) {
  .article-container.security {
      display: block;
  }

  .internet-security {
      max-width: none;
      width: 100%;
  }

  .internet-security-upper {
      flex-direction: unset;
  }

  .internet-security-upper img {
      max-height: 80px;
  }

  .internet-security .article-excerpt {
      display: block;
  }
}

@media only screen and (max-width: 550px) {
  .internet-security img {
      display: none;
  }
}

/* Guides */

.article-container.guides {
  display: grid;
  grid-template-columns: 60% 37%;
  grid-gap: 3%
}

.article-container.guides > div{
  box-shadow: unset;
  -webkit-box-shadow: unset;
  border: unset;
}

.guide-large {
  margin-bottom: 2rem;
}

.guide-large a{
  display: flex;
}

.guide-large img {
  max-width: 50%;
  height: auto;
  object-fit: cover;
}

.guide-large-right {
  padding: 1.5rem;
}

.guide-large h3 {
  margin-bottom: 0;
  padding-bottom: 0.5rem;
}

.guide-large .article-excerpt p{
  margin: 0;
}

.guide-large-lower {
  display: flex;
  flex-direction: column-reverse;
}

.recent-guides {
  height: 84%;
}

.guide-small {
  margin-bottom: 2rem;
  height: 29.1%;
}

.guide-small a{
  display: flex;
  flex-direction: row;
}

.guide-small img {
  max-width: 40%;
  height: auto;
  object-fit: cover;
}

.guide-small-right {
  padding: 1.22rem;
}

.guide-small h3 {
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {
  .article-container.guides {
      display: block;
  }

  .top-guides, .recent-guides {
      display: flex;
      justify-content: space-between;
  }

  .guide-large {
      max-width: 48.5%;
  }

  .guide-small {
      max-width: 31.5%;
      height: auto;
  }

}

@media only screen and (max-width: 980px) {

  .top-guides {
      display: block;
  }

  .guide-large {
      max-width: unset;
  }

  .guide-small {
      max-width: 48.5%;
  }

  .guide-small:nth-of-type(3) {
      display: none;
  }
}

@media only screen and (max-width: 700px) {
  .recent-guides {
      display: block;
  }

  .guide-small {
      max-width: unset;
  }
}

@media only screen and (max-width: 550px) {
  .guide-large a {
      flex-direction: column;
  }

  .guide-large img {
      max-width: 100%;
  }
}

/* VPN SECTION */

.article-container.vpn {
  grid-template-columns: 23% 23% 23% 23%;
  display: grid;
  grid-gap: 2rem;
  margin-bottom: 2rem;
}

.article-container.vpn.reviews .vpn-article img {

  display: flex;
  margin: auto;

  object-fit: contain;
}

.article-container.vpn.reviews .vpn-article-text {
  margin: 0rem 1rem 1rem 1rem;
  padding: 0;
  padding-top: 0.5rem;
}

.vpn-article img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vpn-article-text {
  padding: 0.5rem 1rem 1rem 1rem;
}

.vpn-article h3 {
  margin-bottom: 0;
}

.score-container p {
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 14px;
}

@media only screen and (max-width: 1000px) {
  .article-container.vpn {
      grid-template-columns: 31.5% 31.5% 31.5%;
      grid-gap: 1.5rem;
  }

  .vpn-article:last-child {
      display: none;
  }
}

@media only screen and (max-width: 700px) {
  .article-container.vpn {
      grid-template-columns: 48.5% 48.5%;
  }

  .vpn-article:last-child {
      display: block;
  }
}

@media only screen and (max-width: 480px) {
  
  .article-container.vpn {
      grid-gap: 1rem;
  }

  .vpn-article h3 {
      font-size: 1rem;
  }
}

@media only screen and (max-width: 369px) {
  .article-container.vpn {
      display: block;
  }

  .vpn-article h3 {
      font-size: 1.25rem;
  }

  .vpn-article {
      margin-bottom: 2rem;
  }

  .article-container.vpn.reviews .vpn-article img {
      width: 70%;
  }
}

/* Author Container */

.post-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -1.5rem;
}

.guide-large .post-author {
  margin-top: -1rem;
}

.post-author * {
  font-size: 14px;
    line-height: 1.5;
    color: #808080;
    font-weight: 300;
}

.top-article .post-author img, .guide-large .post-author img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

.top-article .post-author div {
  display: flex;
    align-items: center;
    margin: 12px 1rem 0 1rem;
}

.guide-large .post-author div {
  display: flex;
  align-items: center;
}

.top-article .last-modified, .guide-large .last-modified {
  display: none;
}

.internet-security .post-author img {
  display: none;
}

@media screen and (max-width: 550px) {
  .internet-security .post-author {
    display: block;

  }

  .internet-security .post-author .last-modified {
    margin-top: -0.8rem;
  }
}