.clp-widget {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clp-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.clp-thumb-wrap {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.clp-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clp-info {
  flex-grow: 1;
}

.clp-title {
  font-weight: bold;
  display: block;
  text-decoration: none;
  color: #111;
}

.clp-date {
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .clp-post {
    flex-direction: column;
    align-items: flex-start;
  }
  .clp-thumb-wrap {
    width: 100%;
    height: auto;
  }
}


/* Light mode (default) */
@media (prefers-color-scheme: light) {
    .custom-post-title,
    .custom-post-date {
        color: #111111 !important;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .custom-post-title,
    .custom-post-date {
        color: #ffffff !important;
    }
}
