/* Intoweb Post Showcase Widget Styles */

.iwps-showcase-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.iwps-column {
  flex: 1;
  min-width: 280px;
}

.iwps-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.iwps-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.iwps-post-item {
  margin-bottom: 10px;
  padding-left: 0;
  line-height: 1.6;
}

.iwps-post-item a {
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .iwps-showcase-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .iwps-column {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .iwps-showcase-wrapper {
    gap: 15px;
  }

  .iwps-heading {
    font-size: 20px;
  }
}
