.section-updates {
  width: 100%;
  height: 100%;
  /* padding: 60px; */
  background: var(--white);
  background: var(--bg-secondary);
  /* display: flex;
  flex-direction: column; */
  /* align-items: center; */
}

/*update-items news section*/
.section-updates.news {
  padding: 60px;
}

.section-updates.news .updates-item {
  height: auto;
  gap: 15px;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid #D3D3D3;
}

.section-updates.news .updates-item .item-chip {
  font-size: 12px;
  font-family: var(--font-inter);
  font-weight: 400;
}

.section-updates.news .updates-list {
  gap: 30px;
}

.updates-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.masn-updates-column-block .updates-list {
 flex-direction: column;
}

.updates-list .list-title {
  font-weight: 400;
  font-size: 2.5rem;
  vertical-align: middle;
  text-transform: uppercase;
}

.section-updates.news .updates-list {
  gap: 30px;
}

.updates-item {
  height: fit-content;
  width: 48.5%;
  gap: 10px;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.375rem;
  text-transform: uppercase;
  border-bottom: 1px solid #D3D3D3;
}

.masn-updates-column-block .updates-item{
  width: 100%;
}

.updates-item:last-child {
  border-bottom: none;
}

.updates-item-title {
  font-weight: 400;
  font-family: var(--font-inter);
  font-size: 14px;
  text-transform: capitalize;
}

.updates-item-title {
  font-weight: 400;
  font-family: var(--font-inter);
  font-size: 14px;
}

.more-news {
  color: var(--white);
  font-size: 14px;
  /* background-color: var(--primary); */
  background-color: var(--off-season-landing-orange);
  padding: 0.7rem 1rem;
  border-radius: 20px;
  font-family: var(--font-inter);
  width: fit-content;
  display: block;
  margin: 2.5rem 0;
}

.author-image{
  width: 70%;
  height: auto;
  margin: 3rem auto;
  overflow: hidden;
}

.author-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px){
  .updates-item {
  width: 48%;
  }
}

@media (max-width: 992px){
  .updates-item {
    width: 47%;
  }
}

@media (max-width: 767px) {
  .section-updates {
    width: 100%;
    height: 100%;
    padding: 40px;
    /* background: var(--white); */
  }

  .section-updates.news {
    padding: 40px;
  }

  .author-image{
    box-sizing: border-box;
      padding: 0 2rem;
    width: 100%;
  }

  .updates-item {
    width: 100%;
  }
}

@media (max-width: 639px){
  .section-updates {
    padding: 40px 20px;
  }

  .section-updates.news {
    padding: 40px 20px;
  }

  .more-news{
    margin: 1.5rem 0;
  }
}

@media (max-width: 425px){
  .author-image{
    padding: 0 1rem;
}
}

@media (min-width: 768px){
  .section-updates {
  padding: 60px;
}
}