<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.meals-list-with-search {
  .meals-list-with-search__heading {
    color: #303030;
    font-weight: 900;
    font-size: 65px;
    line-height: 71.5px;
    padding-top: 60px;
    margin-bottom: 15px;
    text-transform: uppercase;

    @media (max-width: 767px) {
      padding-top: 25px;
      font-size: 32px;
      line-height: 35px;
      margin-bottom: 10px;
    }
  }

  .meals-list-with-search__description {
    color: #000000;
    font-weight: 400;
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 20px;
    white-space: pre-line;

    @media (max-width: 767px) {
      color: #303030;
      font-size: 16px;
      line-height: 20px;
      margin-bottom: 15px;
    }
  }

  .meals-list-with-search__search-box {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: #fbd40180;
    margin-bottom: 40px;

    @media (max-width: 767px) {
      padding: 15px;
      margin-bottom: 15px;
    }

    .meals-list-with-search__search-box__label {
      font-size: 30px;
      line-height: 42px;
      font-weight: 700;
      margin: 0 0 10px 0;

      @media (max-width: 767px) {
        font-size: 22px;
        line-height: 30px;
      }
    }

    .meals-list-with-search__search-box__input {
      border: 2px solid #cbc9c5;
      border-radius: 50px;
      width: 100%;
      max-width: 480px;
      display: flex;
      align-items: center;
      padding: 0 20px;
      background-color: white;

      @media (max-width: 767px) {
        padding: 0 10px;
      }

      input {
        font-family: 'CerebriSans-Light';
        font-size: 22px;
        font-weight: 400;
        line-height: 30.8px;
        border: none;
        color: #000000;
        width: 100%;

        @media (max-width: 767px) {
          font-size: 16px;
          line-height: 22px;
          padding: 10px;
        }
      }

      input::placeholder {
        color: #cbc9c5;
      }

      input:focus-visible {
        outline: none;
      }
    }
  }

  .meals-list-with-search__results-count {
    padding-top: 30px;
    border-top: 1px solid #bbbbbb;
    font-size: 15px;
    font-family: 'CerebriSans-Light';
    line-height: 22px;
    font-weight: 700;
    color: #bbbbbb;
    text-transform: uppercase;

    @media (max-width: 767px) {
      border-top: 0.5px solid #bbbbbb;
      padding-top: 10px;
      font-size: 10px;
    }
  }

  .meals-list-with-search__meal-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
    margin: 40px 0;

    @media (max-width: 767px) {
      grid-template-columns: repeat(2, 1fr);
      margin: 20px 0 40px;
    }

    .meal-card-link {
      text-decoration: none;
      color: inherit;
    }

    .meal-card {
      position: relative;
    }

    .meal-card .meal-card-title {
      font-family: 'CerebriSans-Light';
      font-size: 24px;
      line-height: 30px;
      font-weight: 600;
      color: #000000;
      padding-top: 15px;

      @media (max-width: 767px) {
        font-size: 16px;
        line-height: 20px;
      }

      span {
        display: inline;
        margin-right: 10px;
      }

      .svg-black {
        display: inline-block;
      }
      .svg-grey {
        display: none;
      }

      @media (max-width: 767px) {
        .svg-black {
          width: 15px;
          height: 8px;
        }
        .svg-grey {
          width: 15px;
          height: 8px;
        }
      }
    }

    .meal-card:hover .meal-card-title {
      color: #767573;

      .svg-black {
        display: none;
      }
      .svg-grey {
        display: inline-block;
      }
    }

    .meal-image-container {
      position: relative;
      width: 100%;
      padding-top: 65%;
      overflow: hidden;
      border-radius: 10px;
    }

    .meal-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hover-overlay {
      display: none;
      background: #fbd401;
      position: absolute;
      inset: 0;
      align-items: center;
      justify-content: center;
      font-family: 'Catfish-SemiBold';
      color: #000000;
      font-size: 40px;
      line-height: 48px;
      font-weight: 400;
      font-style: italic;
    }

    .meal-image-container:hover .hover-overlay {
      display: flex;

      @media (max-width: 767px) {
        display: none;
      }
    }
  }
}
</pre></body></html>