section {
  margin: 80px auto;
}

section h2 {
  color: #84725d;
  text-align: center;
  line-height: 5rem;
  font-weight: 500;
  letter-spacing: 3px;
}

#activity {
  margin: 80px auto;
  max-width: 1000px;
  width: 90%;
}

#activity h2 {
  text-align: center;
}

.activity {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px auto;
}

.cnt_block {
  background: #fff;
  padding: 0 40px;;
}

.cnt {
  display: flex;
  width: 100%;
}

.cnt .img_area {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cnt .img_area img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}

.cnt .txt_area {
  /* width: 70%; */
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cnt .txt_area h3 {
  font-size: 18px;
  color: #5b3c20;
  line-height: 2rem;
}

.cnt .txt_area a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.cnt .txt_area .news-excerpt {
  font-size: 14px;
}

.read-more {
  font-size: 13px;
  color: #5b3c20;
  text-decoration: none;
  display: block;
  position: relative;
  text-align: right;
  width: 100%;
  padding-right: 30px;
  margin-top: 30px;
}

.read-more::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #5b3c20;
  bottom: 8.5px;
  right: -1px;
  rotate: 45deg;
  border-radius: 1px;
  transition: right 0.3s ease;
}

.read-more::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #5b3c20;
  bottom: 5px;
  right: 0;
  border-radius: 1px;
  transition: right 0.3s ease;
}

.read-more:hover::before {
  right: -6px;
}

.read-more:hover::after {
  right: -6px;
}

.activity-single {
  background: #fff;
  padding: 50px;
  margin: 50px auto;
}

.activity-single h3 {
  font-size: 22px;
  line-height: 2rem;
  margin-bottom: 30px;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.7rem;
  font-size: 14px;
}

@media (max-width: 768px) {
  #activity {
    margin: 120px auto;
  }

  .activity,.activity-single {
    margin: 30px auto;
  }

  .activity-single {
    padding: 20px;
  }
  
  .cnt {
    flex-direction: column;
  }

  .cnt .img_area {
    padding-bottom: 0;
  }

  .cnt_block {
    padding: 0;
  }

  .wp-block-columns:first-child {
	  flex-direction: column-reverse;
  }
}