.smi24-grid {
  display: grid;
  grid-template-columns:repeat(6, 1fr);
  grid-gap: 16px;
}

.smi24-grid-item {
  text-decoration: none;
  background: var(--Colors-Fill-ColorFillPrimary,#fff);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.smi24-title {
  display: -webkit-box;
  color: var(--Colors-Text-ColorTextPrimary,#000);
  line-height: 1.2;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  font-family: Inter;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 16px 0 5px 0;
  letter-spacing: -0.16px;
}

.smi24-headline {
  text-align: right;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-decoration: none;
  font-size: 26px;
  color: var(--Colors-Text-ColorTextPrimary,#000);
  font-weight: 600;
  position: relative;
}

.smi24-headline span {
  color: #ea1515;
}

.smi24-image {
  background-position: top center;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  padding: 0;
  min-height: 162px;
}

.smi24-project-name {
  font-size: 10px;
  color: #bebebe;
  margin-left: 10px;
}

.smi24-arrow-container {
  display: none;
}

.smi24-headline:before {
  content: "Новости партнёров";
  border-bottom: solid 4px var(--ColorButtonDefault,#03ab02);
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.smi24-headline:after {
  content: "";
  position: absolute;
  background: var(--Colors-Border-ColorBorderDefault, rgba(255, 255, 255, 0.10));
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 27px;
} @media (max-width: 640px) {.smi24-grid {
  display: grid;
  grid-template-columns:repeat(1, 1fr);
  grid-gap: 10px;
  padding: 0 10px;
}

.smi24-grid-item {
  text-decoration: none;
  background: var(--Colors-Fill-ColorFillPrimary,#fff);
  display: grid;
  grid-template-columns:120px auto;
  min-height: 67px;
  position: relative;
  align-items: flex-start;
}
.smi24-grid-item:not(:last-child) {
 border-bottom: solid 1px var(--Colors-Border-ColorBorderDefault, rgba(255, 255, 255, 0.10))
}

.smi24-title {
  display: -webkit-box;
  color: var(--Colors-Text-ColorTextPrimary,#000);
  line-height: 1.35;
  font-size: .875rem;
  font-weight: 600;
  padding: 0 10px;
  margin:0;
  letter-spacing: -0.14px;
}

.smi24-headline {
  font-size: 1.125rem;
  display: flex;
  padding: 16px 10px;
}

.smi24-headline span {
  color: #ea1515;
}

.smi24-image {
  min-height: 75px;
  background-position: top center;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-size: cover;
}

.smi24-project-name {
  font-size: 10px;
  color: #bebebe;
  bottom: 5px;
  padding: 0;
  margin: 8px 5px;
}

.smi24-headline:before {
  padding-top: 12px;
  border-bottom-color: var(--ColorButtonDefault,#03ab02);
  margin-bottom: 0;
}

.smi24-headline:after {
    bottom: 19px;
    box-sizing: border-box;
    margin: 0 11px;
    width: calc(100% - 22px);
}}