/* Blog Post Card Styling - Similar to Jekyll Chirpy Theme */

/* Blog post card styling */
.md-post.md-post--excerpt {
  background: color-mix(in srgb, var(--md-default-fg-color) 1%, var(--md-default-bg-color));
  border: 1px solid var(--md-default-fg-color--lighter);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 10px;
  transition: background-color 0.3s;
  height: 200px;
  display: flex;
  flex-direction: column;
}

.md-post.md-post--excerpt:hover {
  background-color: color-mix(in srgb, var(--md-primary-fg-color) 15%, var(--md-default-bg-color));
}

/* Dark mode adjustments */
[data-md-color-scheme="slate"] .md-post.md-post--excerpt {
  background: var(--md-code-bg-color);
  border-color: var(--md-default-fg-color--lightest);
}

[data-md-color-scheme="slate"] .md-post.md-post--excerpt:hover {
  background-color: color-mix(in srgb, white 10%, var(--md-code-bg-color));
}

/* Featured image on the right side */
.md-post__image {
  width: 320px;
  height: 200;
  overflow: hidden;
  background: var(--md-default-fg-color--lightest);
  margin: 0;
  flex-shrink: 0;
  border-radius: 0 0.5rem 0.5rem 0;
  display: flex;
  align-items: stretch;
}

.md-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* No transition or transform on card images */
}

/* Link wrapper for entire card */
.md-post__link {
  display: block;
  text-decoration: none;
  height: 100%;
}

/* Blog post content */
.md-post__content {
  padding: 1rem;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  gap: 1rem;
  align-items: stretch;
  height: 100%;
}

.md-post__text {
  flex: 1;
  min-width: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

/* Post title styling */
.md-post__text h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--md-default-fg-color);
  transition: color 0.2s;
}

/* Post description from frontmatter */
.md-post__description {
  color: var(--md-default-fg-color--light);
  line-height: 1.5;
  font-weight: 300;
  font-size: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: 1;
  margin-top: 0.5rem;
  padding-bottom: 0.25rem;
}

/* Post date below description */
.md-post__date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.55rem;
  font-weight: 200;
  color: var(--md-default-fg-color--light);
  margin-top: 0.5rem;
}

.md-post__date svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: currentColor;
}

/* Responsive adjustments */
@media screen and (max-width: 44.9375em) {
  .md-post__content {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .md-post__image {
    width: 100%;
    order: -1;
    height: 200px;
  }
  
  .md-post.md-post--excerpt {
    height: auto;
  }
}
