.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 > * {
  margin: 0 !important;
}

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

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

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

@container (max-width: 800px) {
  .post-excerpt {
    flex-direction: column;
  }
  .post-excerpt-image {
    width: unset;
    height: 200px;
  }
}
.post-excerpt[data-style=tiny] {
  margin: 8px 0;
  padding: 8px 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border-bottom: 1px solid var(--light-gray);
}

.post-excerpt-tiny {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.post-excerpt-date {
  color: var(--gray);
  font-size: 0.9em;
  white-space: nowrap;
  min-width: 100px;
}

.post-excerpt-title {
  flex: 1;
  text-decoration: none;
  color: var(--text);
  font-weight: var(--semi-bold);
}
.post-excerpt-title:hover {
  color: var(--primary);
  text-decoration: underline;
}

/*# sourceMappingURL=post-excerpt.css.map */