.serpskit-latest-post .serpskit-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: #049638;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
}

.serpskit-latest-post .serpskit-title a {
  color: inherit;
  text-decoration: none;
}

.serpskit-latest-post .serpskit-title::before,
.serpskit-latest-post .serpskit-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #049638;
  display: block;
}

.serpskit-latest-post .serpskit-title::before {
  clip-path: polygon(0 45%, 92% 45%, 92% 0, 100% 50%, 92% 100%, 92% 55%, 0 55%);
}
.serpskit-latest-post .serpskit-title::after {
  clip-path: polygon(8% 0, 0 50%, 8% 100%, 8% 55%, 100% 55%, 100% 45%, 8% 45%);
}

.serpskit-latest-post .serpskit-posts {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(var(--serpskit-cols, 2), minmax(0, 1fr));
  gap: 10px;
  counter-reset: serpskitPost;
}

@media (max-width: 767px) {
  .serpskit-latest-post .serpskit-posts {
    grid-template-columns: 1fr;
  }
}

.serpskit-latest-post .serpskit-link {
  display: flex;
  align-items: center;          /* ✅ FIX: centers number box + title horizontally in the row */
  gap: 10px;
  text-decoration: none;
}

.serpskit-latest-post .serpskit-num::before {
  counter-increment: serpskitPost;
  content: counter(serpskitPost);
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #049638;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.serpskit-latest-post .serpskit-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.serpskit-latest-post .serpskit-empty {
  margin: 10px 0 0;
}
