.c-entry__content.p-entry-content {
  margin-top: 0 !important;
}

.newsletter-series-buttons {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 780px) {
  .newsletter-series-buttons {
    gap: 20px;
  }
}
@media screen and (max-width: 639px) {
  .newsletter-series-buttons {
    flex-direction: column;
  }
}

.newsletter-series-button {
  width: 100%;
  max-width: 220px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #009a8b;
  background-color: #fff;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition-duration: 0.3s;
  transition-property: color, background-color;
}
.newsletter-series-button:hover {
  color: #fff;
  background-color: #009a8b;
}
.newsletter-series-button.is-active {
  color: #fff;
  background-color: #009a8b;
}

.newsletter-series-posts-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 40px !important;
  margin-bottom: 120px !important;
}

.newsletter-series-posts-item {
  display: flex;
  gap: 15px;
}
.newsletter-series-posts-item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 780px) {
  .newsletter-series-posts-item {
    flex-direction: column;
  }
}

.newsletter-series-posts-item-date {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #333;
  margin-top: 5px;
}
@media screen and (max-width: 639px) {
  .newsletter-series-posts-item-date {
    margin-top: 0;
  }
}

.newsletter-series-posts-item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 639px) {
  .newsletter-series-posts-item-header {
    flex-direction: column;
  }
}

.newsletter-series-posts-item-link {
  text-decoration: none;
}

.newsletter-series-posts-item-category {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  padding: 5px 20px;
  margin-top: 3px;
}

.newsletter-series-posts-item-title {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.newsletter-series-posts-item-title:hover {
  opacity: 0.75;
}

.newsletter-series-posts-item-excerpt {
  font-size: 16px;
  line-height: 1.625;
  color: #333;
  transition-duration: 0.3s;
  transition-property: opacity;
}
.newsletter-series-posts-item-excerpt:hover {
  opacity: 0.75;
}

.my-pagination ul .page-numbers {
  gap: 15px !important;
}
.my-pagination ul li .page-numbers {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #20afa3 !important;
  background-color: #fff !important;
  border: 1px solid #20afa3 !important;
}
.my-pagination ul li .page-numbers.current {
  color: #fff !important;
  background-color: #20afa3 !important;
}