
.ssp-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px auto;
  padding: 0 15px;
}
.ssp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
}
.ssp-card:hover {
  transform: translateY(-5px);
}
.ssp-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.ssp-meta-top {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 0;
  font-size: 13px;
}
.ssp-cat-label {
  background: #e5f4ff;
  color: #0073aa;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.ssp-time {
  color: #888;
}
.ssp-title {
  margin: 10px 15px 5px;
  font-size: 18px;
  line-height: 1.3;
}
.ssp-title a {
  color: #222;
  text-decoration: none;
}
.ssp-title a:hover {
  color: #0073aa;
}
.ssp-excerpt {
  margin: 0 15px 10px;
  color: #555;
  font-size: 14px;
}
.ssp-user-info {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}
.ssp-avatar {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}
.ssp-name {
  font-weight: 500;
  color: #333;
}
.ssp-readmore {
  padding: 0 15px 15px;
}
.ssp-readmore a {
  color: #0073aa;
  text-decoration: none;
  font-weight: bold;
}
.ssp-readmore a:hover {
  text-decoration: underline;
}
