/**
 * Frontend styles for In-Content Related Posts
 */

.icrp-related-posts {
  margin: 20px 0;
  padding: 15px;
  border-radius: 5px;
  clear: both;
}

.icrp-related-posts-heading {
  margin: 0 0 15px 0;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 18px;
  line-height: 1.3;
}

/* Horizontal layout */
.icrp-horizontal .icrp-posts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.icrp-horizontal .icrp-post {
  flex: 1;
  min-width: 150px;
}

/* Vertical layout */
.icrp-vertical .icrp-post {
  margin-bottom: 15px;
}

.icrp-vertical .icrp-post:last-child {
  margin-bottom: 0;
}

/* Thumbnail */
.icrp-thumbnail {
  display: block;
  margin-bottom: 10px;
}

.icrp-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

/* Content */
.icrp-title {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.3;
}

.icrp-title a {
  text-decoration: none;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
  .icrp-horizontal .icrp-posts-container {
    flex-direction: column;
  }

  .icrp-horizontal .icrp-post {
    margin-bottom: 15px;
  }

  .icrp-horizontal .icrp-post:last-child {
    margin-bottom: 0;
  }
}
