<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 This CSS file is used to override the existing styles of the theme.
 You can change the article headings, fonts, colors, etc.
*/

.blogcard {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  margin: 1em 0;
  max-width: 700px;
  font-size: 0.95em;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blogcard a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blogcard a:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.blogcard-container {
  display: flex;
  gap: 12px;
  padding: 12px;
}

.blogcard-thumbnail {
  width: 160px;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.blogcard-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogcard-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blogcard-title {
  font-weight: bold;
  font-size: 1em;
}

.blogcard-description {
  color: #555;
  font-size: 0.9em;
}

.blogcard-url {
  font-size: 0.75em;
  color: #999;
}

@media (max-width: 600px) {
  .blogcard-container {
    flex-direction: column;
  }
  .blogcard-thumbnail {
    width: 100%;
    height: auto;
  }
  .blogcard-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
</pre></body></html>