.blog-post-card {
  background: var(--white-color);
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  box-shadow: 0 16px 16px rgba(18, 28, 51, 0.08);
  display: flex;
  gap: 24px;
  padding: 15px;
}

.blog-post-card + .blog-post-card {
  margin-top: 24px;
}

.blog-post-card__thumb {
  background: var(--dark-blue-color);
  border-radius: var(--radius);
  flex: 0 0 236px;
  height: 176px;
  overflow: hidden;
  position: relative;
  width: 236px;
}
.blog-post-card__thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-post-card__thumb-fallback {
  height: 100%;
  padding: 18px 20px;
  position: relative;
  width: 100%;
}

.blog-post-card__thumb-fallback-label {
  color: var(--white-color);
  display: block;
  font-size: var(--text-small);
  font-weight: 700;
  margin-bottom: 18px;
}

.blog-post-card__thumb-fallback-bar {
  border-radius: 4px;
  display: block;
  height: 8px;
  margin-bottom: 14px;
}

.blog-post-card__thumb-fallback-bar--1 {
  background: var(--primary-color);
  width: 100%;
}

.blog-post-card__thumb-fallback-bar--2 {
  background: #14b8a6;
  width: 88%;
}

.blog-post-card__thumb-fallback-bar--3 {
  background: #f59e0b;
  width: 76%;
}

.blog-post-card__thumb-fallback-bar--4 {
  background: #22c55e;
  margin-bottom: 0;
  width: 64%;
}

.blog-post-card__thumb-fallback-dot {
  background: var(--white-color);
  border-radius: 50%;
  bottom: 14px;
  height: 14px;
  opacity: 0.9;
  position: absolute;
  right: 20px;
  width: 14px;
}

.blog-post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 0;
  padding: 8px 16px 8px 0;
}

.blog-post-card__header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.blog-post-card__category {
  text-decoration: none;
  white-space: nowrap;
}

.blog-post-card__reading-time {
  color: var(--primary-color);
  flex-shrink: 0;
  font-size: var(--text-small);
  font-weight: 700;
}

.blog-post-card__title a {
  color: var(--graphite-color);
  font-size: var(--title-small);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: break-word;
  text-decoration: none;
}

.blog-post-card__title a:hover {
  color: var(--primary-color);
}

.blog-post-card__footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.blog-post-card__excerpt {
  color: var(--support-text-color);
  flex: 1;
  font-size: var(--text-small);
  line-height: 1.5;
  margin: 0;
  min-width: 0;
  overflow-wrap: break-word;
}

.blog-post-card__button {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .blog-post-card {
    flex-direction: column;
  }
  .blog-post-card__thumb {
    width: 100%;
  }
  .blog-post-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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