.block1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  height: 400px;
  background-image: url(../img/news-p1.png);
  background-size: cover;
  background-position: center;

  img {
    margin-bottom: -60px;
    display: block;
  }

  .news-list {
    position: absolute;
    top: 70%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 168px;
    height: 212px;
    background-color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    p {
      font-size: 15px;
      font-weight: normal;
      color: #3d3d3d;
    }
  }
}

.block2 {
  padding: 100px 0;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 86px;
}

.news-card {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.news-card.blue {
  background-color: #0056b3;
  color: #fff;
}

.news-date {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background-color: #0056b3;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.news-date2 {
  position: absolute;
  top: -50px;
  left: 30px;
  width: 80px;
  height: 80px;
  background-color: #0056b3;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.date-day {
  font-size: 32px;
  line-height: 1;
}

.date-year {
  font-size: 14px;
  margin-top: 5px;
}

.news-card h3 {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.news-time {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ece9e9;
}

.news-card.blue .news-time {
  color: rgba(255, 255, 255, 0.8);
}

.news-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.news-more span {
  font-size: 14px;
  color: #3d3d3d;
}

.news-card.blue .news-more span {
  color: #fff;
}

.news-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #0056b3;
}

.news-card.blue .news-dot {
  background-color: #fff;
}

.news-list {
  margin-top: 60px;
}

.news-item {
  position: relative;
  display: flex;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 85px;
}

.news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-content {
  padding: 30px;
}

.news-item .news-content {
  flex: 1;
  display: flex;
}

.news-item .news-content img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  margin-right: 30px;
}

.news-text {
  flex: 1;
}

.news-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-text p {
  font-size: 14px;
  color: #666;
  line-height: 37.19px;
}

.news-text .news-more {
  justify-content: flex-end;
}

.news-text .news-more span {
  font-size: 14px;
  color: #3d3d3d;
}