.cats{
  padding: 34px 0 14px;
}

.cats__title{
  margin: 0 0 18px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.cats__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cats__card{
  display: block;
  border-radius: 0; 
  overflow: hidden;
  text-decoration: none;
  color: #000;
  border: 1px solid rgba(15,23,42,.06);
  background: #fff;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.cats__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

.cats__img{
  height: 440px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cats__label{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FED845;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
}


@media (max-width: 980px){
  .cats__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cats__img{
    height: 360px;
  }
}

@media (max-width: 520px){
  .cats{
    padding: 26px 0 10px;
  }
  .cats__title{
    font-size: 30px;
  }
  .cats__img{
    height: 280px;
  }
  .cats__label{
    height: 64px;
    font-size: 18px;
  }
}