body {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.news-detail {
  background-color: #1274A1;
  padding: 98px 0 108.5px 0;
}



.news-detail .container {
  width: 95%;
  margin: 0 auto;
}

.news-detail article {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
}

.news-detail article header {
  margin-bottom: 25px;
}

.news-detail article header h2 {
  font-family: "Exo", sans-serif;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
  margin: 0;
}

.news-detail article .body a {
  flex: 1;
}

.news-detail article img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  margin-bottom: 25px;
}

.news-detail article .body p {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.news-detail article .data {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-detail .go-back {
  width: 70px;
  height: auto;
  margin-left: -17px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .news-detail article .body {
    display: flex;
    gap: 25px;
  }
  .news-detail article img {
    margin-bottom: 0px;
  }
}

/*PC peques*/
@media (min-width: 1024px) and (max-width: 1440px){
    
    .news-detail {
  padding-top: 130px;
}
     
  }
