.one-news-container {
  margin: 2rem auto;
  padding-bottom: 3rem;
  min-height: 60vh;
  width: 86%;
}

.one-news-container-inner {
  display: grid;
}

.one-news-content {
  margin: 1rem 0;
}

.one-news-item {
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}

.one-news-item-content {
  display: grid;
  grid-template-columns: auto 1fr;
}

.content-box-title {
  margin-top: 15px;
  font-size: 20px;
  color: var(--color-logo);
  font-weight: 600;
}

.content-box-text {
  font-size: 20px;
  padding-top: 10px;
}

.content-box-text h5 {
	color: var(--color-logo);
}

.content-box-text ul {
  display: grid;
}

.one-news-image {
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 3px 3px 12px #777;
  background-position: center top;
  float: left;
  height: 350px;
  width: 350px;
  margin: 0 30px 20px 0;
}

.portrait-one {
  height: 450px;
  width: 300px;
}

.landscape-one {
  height: 300px;
  width: 500px;
}

.one-news-container h2 {
  color: var(--color-logo);
  font-size: 24px;
  margin-bottom: 1rem;
}

.one-news-link {
  font-size: 22px;
  color: var(--color-logo);
}

/***  M O B I L E  *****************************************************/
@media only screen and (max-width: 900px) {
  .one-news-container {
    margin: 1.5rem auto;
    width: 86%;
  }

  .one-news-container h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .one-news-content {
    margin: 5px 0;
  }

  .one-news-item-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .one-news-item {
    grid-gap: 0;
  }

  .one-news-image {
    background-position: center;
    height: 250px;
    margin: 0 0 20px 0;
    width: 100%;
  }

  .portrait-one {
    height: 450px;
    margin: 10px 0 25px 0;
    width: 100%;
  }

  .landscape-one {
    height: 230px;
    margin-bottom: 25px;
    width: 100%;
  }

  .one-news-item-content:last-child {
    margin-top: -10px;
  }

  .content-box-text h4 {
    font-size: 22px !important;
  }

  .one-news-link {
    font-size: 17px;
  }
}

@media only screen and (max-width: 320px) {
  .one-news-container h2 {
    font-size: 18px;
  }
}


/*** W I D T H  S C R E E N ********************************************/
@media (min-width: 1400px) {
  .one-news-container {
    width: 75%;
  }
  
  .landscape-one {
    height: 370px;
    width: 600px;
  }
}

