.trends-section {
  display: flex;
  flex-flow: column;
  background-color: rgba(249, 249, 249, 255);
  justify-content: center;
  padding: 50px 0;
}

.trends-section h2 {
  text-align: center;
  font-size: 48px;
  color: #2f2f2f;
  margin: 0 auto;
}

.trend-blog {
  display: flex;
  width: calc(100% - 60px);
  margin: 0 30px;
  justify-content: flex-end;
}

.trends {
  display: flex;
  flex-flow: column;
  width: calc(100% - 30px);
  margin: 15px;
  justify-content: center;
}

.trend {
  width: calc(100% - 30px);
  margin: 0 15px;
  margin-bottom: 15px;
  background-color: #fff;
}

.trend-body {
  padding: 25px;
}

.trend-title a {
  text-decoration: none;
}

.trend-title a:hover h3 {
  color: #b89a59;
}

.trend-title h3 {
  font-size: 20px;
  color: #2f2f2f;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.trend-info {
  margin-bottom: 15px;
}

.trend-excerpt {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.trend-btn {
  padding: 12px 0;
}

.trend-btn a,                                                                                                                                                                                               
.trend-blog a {
  border: 1px solid #d1d1d1;
  color: #2f2f2f;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 40px;
}

.trend-blog a {
  width: 100%;
  text-align: center;
}

.trend:hover .trend-btn a,
.trend-blog a:hover {
  background-color: #b89a59;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .trends {
    flex-flow: wrap;
  }

  .trend {
    width: calc(50% - 30px);
    display: flex;
    flex-flow: column;
  }

  .trend-body {
    flex: auto;
    display: flex;
    flex-flow: column;
  }

  .trend-btn {
    margin-top: auto;
  }

  .trend-blog a {
    width: auto;
  }
}

@media only screen and (min-width: 992px) {
  .trends {
    flex-flow: wrap;
    width: calc(100% - 100px);
    margin: 50px;
  }

  .trend-blog {
    width: calc(100% - 130px);
    margin: 0 65px;
  }

  .trend {
    width: calc(33.33% - 30px);
    margin: 0 15px;
  }

  .trend:nth-child(4) {
    display: none;
  }
}

@media only screen and (min-width: 1440px) {
  .trend {
    width: calc(25% - 30px);
    margin: 0 15px;
  }

  .trend:last-child {
    display: flex;
  }
}