<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.post-excerpt-container {
  container-type: inline-size;
}

.post-excerpt {
  display: flex;
  margin: 20px 0;
  border-radius: var(--rounded);
  background: var(--background);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-excerpt-image {
  position: relative;
  width: 200px;
  flex-shrink: 0;
}

.post-excerpt-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-excerpt-text {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 30px;
  text-align: left;
}

.post-excerpt-text &gt; * {
  margin: 0 !important;
}

.post-excerpt-text &gt; a:first-child {
  width: 100%;
  font-weight: var(--semi-bold);
}

.post-excerpt-text &gt; div {
  justify-content: flex-start;
}

.post-excerpt-text &gt; p {
  width: 100%;
}

@container (max-width: 800px) {
  .post-excerpt {
    flex-direction: column;
  }
  .post-excerpt-image {
    width: unset;
    height: 200px;
  }
}

/*# sourceMappingURL=post-excerpt.css.map */</pre></body></html>