.latest-discussion-wrapper {
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 30px;
  position: relative;
  font-family: "Public Sans", sans-serif !important;
}

.latest-discussion-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

h2 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #000 !important;
  font-family: "Public Sans", sans-serif !important;
}

.latest-discussion-slider {
  display: flex;
  align-items: center;
  gap: 25px;
  overflow: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 5px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.latest-discussion-slider::-webkit-scrollbar {
  display: none;
}

.discussion-item {
  flex: 0 0 calc(25% - 19px);
  min-width: calc(25% - 19px);
  box-sizing: border-box;
  margin-right: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
}

.post-number {
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
  flex-shrink: 0;
}

.post-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.post-date {
  font-size: 14px;
  color: #6e6d6d;
  line-height: 13px;
  font-weight: 400;
}

.post-title {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: 2.8em;
  white-space: normal;
}

.post-title:hover {
  color: #cb1404;
}

.prev-btn,
.next-btn {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 32px; /* Reduced from 40px */
  height: 32px; /* Reduced from 40px */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prev-btn svg,
.next-btn svg {
  width: 16px; /* Reduced icon size */
  height: 16px; /* Reduced icon size */
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.prev-btn:hover,
.next-btn:hover {
  background: #f5f5f5;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
.latest-discussion-slider-container {
  padding-left: 50px;
  padding-right: 30px;
}
/* Responsive styles */
@media (max-width: 1024px) {
  .discussion-item {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
  }
}

@media (max-width: 768px) {
  .discussion-item {
    flex: 0 0 calc(50% - 13px);
    min-width: calc(50% - 13px);
  }
}

@media (max-width: 480px) {
  .latest-discussion-slider-container {
    padding: 0 15px;
  }
  .post-date {
    font-size: 16px;
    color: #6e6d6d;
    line-height: 16px;
    margin-bottom: 2px;
    font-weight: 400;
  }

  h2 {
    text-align: center;
  }
  .post-title {
    line-height: 1.6;
    max-height: 3.2em;
    font-size: 18px;
  }
  .latest-discussion-wrapper {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .discussion-item {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0;
    margin: 0;
  }

  .latest-discussion-slider {
    gap: 15px;
    padding: 0;
  }

  .prev-btn,
  .next-btn {
    display: none;
  }
}

.news-post-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  gap: 20px;
}
.news-meta-info {
  font-size: 14px;
  color: #6e6d6d;
  margin-bottom: 16px;
  line-height: 13px;
  font-weight: 400;
}
.news-post-navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  transition: all 0.3s ease;
}

.news-post-navigation a:hover {
  background: #f5f5f5;
  color: #cb1404;
}
.pt-cv-meta-fields {
  margin: 0 !important;
}
