.categoryBlock {
  width: 100%;
  padding: 110px 0;
}

.categoryBlock_Header {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 80px auto;
  text-align: center;
}
.categoryBlock_TopText {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.categoryBlock_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;
}
.categoryBlock_Text {
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 24px 0;
}
.categoryBlock_Button {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(
    0deg,
    var(--Color-Persian-Red, #c53c29) 0%,
    var(--Color-Persian-Red, #c53c29) 100%
  );
  color: #fff;
}

.categoryBlock_Button:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, #8a291b 0%, #8a291b 100%);
}

.categoryBlock_Pills {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 70px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.categoryBlock_Pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f2f2f2;
  color: #000;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-decoration: none;
}
.categoryBlock_CardLink {
  text-decoration: none;
}
.categoryBlock_CardLink:hover {
  color: #c53c29;
}
.categoryBlock_GridWrapper {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.categoryBlock_Grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.categoryBlock_Card {
  background: transparent;
  padding: 0;
  text-align: center;
  border-radius: 16px;
  position: relative;
}
.categoryBlock_CardImage {
  width: 100%;
  aspect-ratio: 43/53;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}
.categoryBlock_CardTitle {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  color: #000;
  text-decoration: none;
}
.categoryBlock_CardLink:hover .categoryBlock_CardTitle {
  color: #c53c29;
}

[data-hidden="true"] {
  display: none;
}
.categoryBlock_Actions {
  text-align: center;
  margin-top: 16px;
}
.categoryBlock_ViewMore {
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .categoryBlock_Grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .categoryBlock {
    padding: 50px 0;
  }
}
@media (max-width: 768px) {
  .categoryBlock_Title {
    font-size: 40px;
  }
}
