main.soulody > section#data {
  grid-area: data;
  padding: 60px 0;
  grid-template-columns: 1fr;
  grid-template-rows: auto 500px;
  justify-items: center;
  align-items: start;
  row-gap: 0;
  grid-template-areas:
    "headers"
    "card";

  @media screen and (max-width: 930px) {
    grid-template-rows: auto auto;
    padding: 54px 0 0;
  }

  > header {
    grid-area: headers;
    width: fit-content;
    text-align: center;
    align-self: center;
    margin: 30px auto 50px;
    display: block;

    @media screen and (max-width: 930px) {
      margin: 16px auto;
    }
  }

  > section {
    grid-area: card;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:"video text";
    background-color: white;
    padding: 8px 24px 8px 8px;
    border-radius: 24px;
    height: 100%;
    width: 880px;
    position: relative;

    @media screen and (max-width: 930px) {
      width: 100%;
      height: calc(100vh - 151px);
      padding: 4px 4px 6px;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-template-areas:
        "video";
    }


    > section {
      &.lottie-container {
        grid-area: video;
        width: 580px;
        border-radius: 24px;
        background-color: var(--background-secondary);
        display: flex;
        flex-basis: auto;
        justify-content: center;

        @media screen and (max-width: 930px) {
          width: 100%;
        }

        > lottie-player {
          max-width: 580px;
          width: 100%;
          max-height: 484px;
          height: 100%;
          object-fit: scale-down;
          border-radius: 20px;
        }
      }

      &.text-container {
        grid-area: text;
        max-width: 248px;
        min-width: 200px;
        margin-left: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;

        @media screen and (max-width: 930px) {
          display: none;
        }

        > header {
          > h3 {
            margin-top: 4px;
          }
        }

        > main {
          margin-top: 14px;
        }
      }
    }
  }
}
