/*******************************************************************************************
*                                                                                          *
*                                   <FeaturesIndexLayout>                                  *
*                                                                                          *
********************************************************************************************/

.features-index-layout {
  width: 85%;
}

.features-index-layout .page__title {
  margin-bottom: var(--cgd-separator-big-margin, 1em);
}

.features-index-layout .card[theme="media"] .card__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}



/*******************************************************************************************
*                                                                                          *
*                                        <Features>                                        *
*                                                                                          *
********************************************************************************************/

.features__buttons {
  margin-top: var(--cgd-separator-small-margin, 3.75rem);
  display: flex;
  flex-wrap: wrap;
}

.features__buttons .clickable__button {
  font-weight: 700;
}

.features__buttons > *:first-child {
  margin-right: 1.5rem;
}

/* For all browsers other than IE (which doesn't support @supports) and which support gap */
@supports (gap: 1.5rem 1rem) {
  .features__buttons {
    gap: var(--cgd-separator-small-margin, 1.5rem) var(--cgd-text-margin, 1rem);
  }

  .features__buttons > *:first-child {
    margin: 0;
  }
}



/*******************************************************************************************
*                                                                                          *
*                                      Media Queries                                       *
*                                                                                          *
********************************************************************************************/

/* <= 1024px  */
@media (max-width:64rem) {
  .features-index-layout {
    width: 90%;
  }
}

/* <= 960px  */
@media (max-width:60rem) {
  .features-index-layout .page__title {
    font-size: 3.2rem;
  }
}

/* <= 720px  */
@media (max-width:45rem) {
  .features-index-layout .page__title {
    font-size: 2.5rem;
  }
}