.article-wrapper {
  width: auto;
  padding-left: 10px;
  margin-bottom: 20px;
}
.article-wrapper:hover {
  color: var(--light-blue);
}
.article-icon {
  width: 100px; 
  height: 100px;
  display: block;
  float: left;
  background-color: white;
}
.article-icon:hover {
  border: 3px solid var(--light-blue);
}

.article-icon img {
  width: 100%; 
  height: 100%;
  object-fit: contain;
}
.article-text {
  height: 100px;
  margin-left: 110px;
  display: flex;
  align-items: center;
}
.article-text a {
  color: white;
}

.empty-padding{
  width: 100%;
  height: 20px;
}

/* Change only one column */
.text-box .col-wrapper .col1 {
  width: 100%;
  height: auto;
}

/* Change shadow header */
.text-box .header-wrapper .shadow {
  color: var(--light-blue);
  font-size: 28px;
}
@media (max-width: 850px) {
  .text-box .header-wrapper .shadow {
    font-size: 23px;
  }
}

/* Change menu style */
.menu-box {
  background-color: var(--light-blue);
}
.menu-box .press {
  font-weight: bold;
  font-family: 'Regular-Bold';
}
.menu-box .press:hover {
  background-color: var(--light-blue);
  color: white;
}

/* Mobile view */
@media (max-width: 850px) {
  .menu-box {
    background-color: var(--dark-blue);
  }
  .menu-box .press {
    background-color: var(--light-blue);
  }
}