/* Base */
body {
  font-family: "Roboto Condensed", sans-serif;
}

/* Card (container) */
.blog-select {
  display: flex;
  align-items: center;

  width: 270px;
  height: 82px;

  border: 1.7px solid #009ee0;
  border-radius: 15px;
  background: #CBEEFB;
  background: linear-gradient(0deg, rgba(203, 238, 251, 1) 0%, 
  rgba(240, 250, 254, 1) 34%, rgba(255, 255, 255, 1) 78%);

  margin-bottom: 10px;
}
/* Thumbnail */
.blog-image-preview {
  width: 77px;
  height: 66px;

  margin-left: 10px;
  overflow: hidden;

  border: 1.4px solid #34BEED;
  border-radius: 15px;
}

.blog-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right side (title + meta + date) */
.blog-entry-info {
  position: relative;
  flex: 1;
  align-self: stretch;
  min-width: 0;

  margin-left: 8px;
  padding-right: 8px;
  padding-bottom: 6px;
}

/* Middle divider line */
.blog-entry-info::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 5px;

  height: 1px;
  background: #34BEED;
}

/* Title */
.blog-entry-title {
  margin: 5px 0 4px;
}

.blog-entry-title p {
  margin: 0;
  font-size: 14px;
}

/* Meta (SEGA / WiiWare) */
.blog-entry-meta {
  margin-top: 20px;
  padding-right: 90px;
}

.blog-entry-meta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.2;
  color: #4a4a4a;
}

/* Date (Wii Points equivalent) */
.blog-entry-date {
  position: absolute;
  right: 10px;
  bottom: 0;

  margin: 0;
  font-size: 12px;
  color: #4a4a4a;
  white-space: nowrap;
}