.smallCaseGrid {
  width: 100%;
  padding: 110px 0;
}
.smallCaseGrid_Header {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 80px auto;
  text-align: center;
}
.smallCaseGrid_TopText {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.14px;
  margin-bottom: 8px;
}
.smallCaseGrid_Title {
  color: #000;
  font-family: "Alata", sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.6px;
  margin: 0 0 16px 0;
}
.smallCaseGrid_Text {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 24px 0;
}

.smallCaseGrid_GridWrapper {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.smallCaseGrid_Grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.smallCaseGrid_Card {
  background: #272a2c;
  border-radius: 16px;
  overflow: hidden;
}
.smallCaseGrid_CardLink {
  display: block;
  text-decoration: none;
  color: #fff;
}
.smallCaseGrid_CardImageWrapper {
  overflow: hidden;
}
.smallCaseGrid_CardImage {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
}
.smallCaseGrid_CardTitle {
  margin: 16px;
  font-family: "Alata", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.26px;
  color: #fff;
}
.smallCaseGrid_CardExcerpt {
  margin: 0 16px 24px 16px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #fff;
}
.smallCaseGrid_CardButton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px 16px 16px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}
.smallCaseGrid_Card:hover .smallCaseGrid_CardButton {
  color: #c53c29;
}

.smallCaseGrid_Actions {
  text-align: center;
  margin-top: 68px;
}
.smallCaseGrid_Button {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, #c53c29 0%, #c53c29 100%);
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
}
.smallCaseGrid_Button:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, #8a291b 0%, #8a291b 100%);
}

@media (max-width: 1024px) {
  .smallCaseGrid_Grid {
    gap: 24px;
  }
  .smallCaseGrid_Title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .smallCaseGrid_Grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
