/*Generic spotlight*/
.spotlight {
  margin: 0;
  width: 100%;
  padding: 40px 30px;
  font-family: Montserrat-Medium;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue-500);
  gap: 40px;

  .spotlight-content {
    width: 1035px;

    .title {
      .pastille {
        display: none;
      }
    }

    h1 {
      font-family: Montserrat-ExtraBold;
      font-size: 50px;
      line-height: 115%;
      margin: 0 0 20px;

      strong {
        color: white;
        text-transform: uppercase;
        display: block;
        font-family: Montserrat-ExtraBold;
      }
    }

    p {
      font-size: 16px;
      line-height: 24px;
      margin: 0;
      padding: 0;
    }


  }

  .pastille {
    display: none;
  }

  &.spotlight-pastille {
    .content {
      display: flex;
      gap: 30px;
      align-items: top;
    }

    .pastille {
      font-family: Montserrat-ExtraBold;
      font-size: 22px;
      text-transform: uppercase;
      line-height: 120%;
      background-color: #FFF27E;
      text-align: center;
      border-radius: 10px;
      padding: 20px 25px;
      display: inline-block;
      position: relative;
      top: 2px;
    }
  }

  &.spotlight-image {
    padding-top: 25px;
    padding-bottom: 25px;
    height: 345px;
    justify-content: start;
    background-position: center;

    .spotlight-content {
      background-color: white;
      padding: 30px 45px 35px;
      width: 470px;
      margin-left: 130px;
    }
  }

  @media (max-width: 1240px) {
    gap: 30px;
    align-items: start;

    .spotlight-content {
      width: 860px;

      h1 {
        font-size: 45px;
      }

      p {
        font-size: 15px;
        line-height: 21px;

        br {
          display: none;
        }
      }
    }

    &.spotlight-pastille {
      .pastille {
        padding: 25px;
      }
    }


    &.spotlight-image {
      align-items: center;

      .spotlight-content {
        margin-left: 0;
      }
    }
  }


  @media (max-width: 935px) {
    gap: 0;
    padding: 30px;

    .spotlight-content {
      width: auto;

      h1 {
        font-size: 38px;
      }

      p {
        font-size: 13px;
        line-height: 19px;
      }
    }

    &.spotlight-pastille {
      .content {
        display: block;
      }

      .spotlight-content {
        h1 {
          margin: 0 0 10px;
        }
      }

      .pastille {
        padding: 7px 10px;
        font-size: 18px;
        border-radius: 5px;
        margin: 0 0 15px;
      }
    }
  }


  @media (max-width: 580px) {
    padding: 25px;

    .spotlight-content {
      h1 {
        font-size: 26px;
        margin: 0 0 15px;
      }
    }

    &.spotlight-pastille {
      .pastille {
        font-size: 16px;
        padding: 5px 8px;
      }
    }

    &.spotlight-image {
      background-size: 580px auto;
      height: 450px;
      align-items: start;
      background-position: bottom center;

      .spotlight-content {
        padding: 20px;
        width: 400px;
      }
    }
  }
}