.ms-card {
  flex: 0 0 65%;
  aspect-ratio: 674 / 464;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
  cursor: pointer;
}
.ms-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.ms-card:hover img { transform: scale(1.06); }
.ms-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px 12px;
}
.ms-card-title {
  font-size: 16px;
  color: var(--white);
  line-height: 1.4;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}
.ms-card-title strong { font-weight: 700; }
.ms-card-arr {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
