.patio-blogcard {
  align-items: center;
  background: #fff;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
  box-shadow: none;
  color: inherit;
  display: flex;
  gap: 0;
  margin: 0.75em 0;
  max-width: 100%;
  min-height: 76px;
  overflow: hidden;
  padding: 0;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.patio-blogcard:hover {
  background: #fbfdff;
  border-color: #9eb2c7;
}

.patio-blogcard:focus-visible {
  background: #fbfdff;
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.28);
  outline: none;
}

.patio-blogcard__thumb {
  align-self: auto;
  background: #f1f5f9;
  border-right: 1px solid #cfd8e3;
  border-radius: 0 !important;
  display: flex;
  flex: 0 0 136px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
}

.patio-blogcard__thumb img {
  border-radius: 0 !important;
  display: block;
  flex: 1 1 auto;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.patio-blogcard__thumb--placeholder {
  position: relative;
}

.patio-blogcard__thumb--placeholder::after {
  border: 1px solid #bcc8d5;
  border-radius: 2px;
  content: "";
  height: 18px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
}

.patio-blogcard__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  min-width: 0;
  padding: 8px 14px;
}

.patio-blogcard__title {
  color: #1f2933;
  display: -webkit-box;
  font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.06rem);
  font-weight: 600;
  margin: 0 !important;
  line-height: 1.38;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.patio-blogcard__meta-row {
  align-items: center;
  display: flex;
  gap: 6px;
  margin-top: 2px;
  min-width: 0;
}

.patio-blogcard__meta {
  color: #6b7785;
  font-size: clamp(0.82rem, 0.8rem + 0.14vw, 0.9rem);
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.patio-blogcard__icon {
  color: #6b7785;
  display: inline-flex;
  flex: 0 0 auto;
}

.patio-blogcard__icon svg {
  fill: currentColor;
  height: 14px;
  width: 14px;
}

@media (max-width: 640px) {
  .patio-blogcard {
    max-width: 100%;
  }

  .patio-blogcard__thumb {
    flex-basis: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .patio-blogcard {
    transition: none;
  }
}
