/* /blocks/rubric-frsc.css */
.rubric-frscr {
  padding: 20px 0 30px;
}

.rubric-frscr-rw {
  display: grid;
  grid-template-columns: 65.5% calc(34.5% - 40px);  
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  justify-content: space-between;
}

.rubric-frscr-coll {
  grid-area: span 3 / 1;
}

.rubric-frscr-coll img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.rubric-frscr-title {
  color: #393938;
  font-size: 36px;
  line-height: 43px;
  font-weight: 600;
  font-family: 'Montserrat';
  margin: 0 0 20px;
  grid-area: 1 / 2;
}

.rubric-frscr-txt {
  color: #393938;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Montserrat';
  grid-area: 2 / 2;
}

.show-all {
  color: #0024F4;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  font-family: 'Montserrat';
  margin-top: 10px;
  display: none;
}

@media screen and (max-width: 1200px) {
  .show-all {
    display: block;
  }

  .rubric-frscr-rw {
    display: flex;
    flex-wrap: wrap;
  }

  .rubric-frscr-title {
    font-size: 32px;
    line-height: 39px;
    margin: 0 0 30px;
    order: -1;
  }

  .rubric-frscr-coll {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 576px) {
  .rubric-frscr-title {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 20px;
  }
}
