.sml-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.sml-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

.sml-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sml-card a {
  text-decoration: none;
  color: inherit;
}

.sml-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.sml-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 1rem;
  gap: 1rem;
}

.sml-date {
  text-align: center;
  border-right: 2px solid #eee;
  padding-right: 0.8rem;
  min-width: 50px;
}

.sml-date-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  color: #444;
}

.sml-month {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #888;
}

.sml-day {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  line-height: 1;
}

.sml-weekday {
  font-size: 0.8rem;
  color: #999;
}

.sml-info {
  flex: 1;
}

.sml-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.sml-time {
  font-size: 0.9rem;
  color: #555;
  margin: 0.2rem 0 0.5rem;
}

.sml-info p {
  margin: 0.2rem 0;
  font-size: 0.85rem;
  color: #333;
}

.sml-info strong {
  color: #000;
  font-weight: 600;
}
