.design-select-taste-page .page-description {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

.taste-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}

.taste-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.taste-visual {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: #f5f5f5;
  aspect-ratio: 1/1;
}

.taste-visual-main,
.taste-visual-side {
  min-width: 0;
}

.taste-visual-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.taste-visual-placeholder {
  background: #efefef;
}

.taste-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taste-meta {
  padding: 18px 2px 0;
}

.taste-name {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
}

@media (min-width: 768px) {
  .taste-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }
}
