.quote-showcase {
  .container {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;

    @media (max-width: 1024px) {
      flex-direction: column;
      align-items: center;
      padding-top: 100px;
    }
    @media (max-width: 440px) {
      align-items: flex-start;
    }

    .image-wrapper {
      position: relative;
      z-index: 1;
      .main-image {
        width: 324px;
        height: 324px;
        border-radius: 50%;
        border: 1px solid #181818;
        overflow: hidden;
        background-color: #ded9cd;
        @media (max-width: 1024px) {
          width: 252px;
          height: 252px;
        }
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      .indicator {
        position: absolute;
        font-family: var(--ff-fibbl);
        bottom: -90px;
        left: 80px;
        display: flex;
        flex-direction: column;
        max-width: 220px;
        font-size: 24px;

        svg {
          position: absolute;
          left: -24px;
          top: -24px;
          @media (max-width: 1024px) {
            left: 76px;
            top: 64px;
          }
        }

        &.larger {
          max-width: 310px;
          width: 310px;
          left: 40px;
        }

        &.mobile {
          display: none;
        }
        @media (max-width: 1024px) {
          position: absolute;
          left: 154px;
          bottom: 240px;
          width: 180px;
          height: 92px;
          font-size: 20px;

          &.desktop {
            display: none;
          }
          &.mobile {
            display: block;
            color: #c1b4a3;
            &.resp-larger {
              @media (max-width: 1024px) {
                svg {
                  top: 84px !important;
                }
              }
            }
          }
        }
      }
    }
    .info {
      max-width: 780px;
      .quote {
        position: relative;
        margin-block: 16px 58px;
        font-family: var(--ff-secondary);
        @media (max-width: 1024px) {
          margin-block: 8px 36px;
          display: block;
          width: 245px;
          display: block !important;

          &::before {
            display: none;
          }
          &::after {
            content: url('../../img/quote-end.svg');
            position: absolute;
            top: 0px;
            left: 100%;
            width: 105px;
            height: 88px;
          }
        }

        span {
          font-size: var(--fs-5xl);
          line-height: 80%;
          letter-spacing: -6px;
          font-weight: 700;
          width: 100%;
          @media (max-width: 1024px) {
            font-size: 40px;
            letter-spacing: -2px;
          }
        }
        &.smaller {
          span {
            font-size: 100px;
            letter-spacing: -5px;
            @media (max-width: 1024px) {
              font-size: 40px;
              letter-spacing: -2px;
            }
          }
        }
        &::before {
          content: url('../../img/quote-start.svg');
          position: absolute;
          top: -40px;
          left: -114px;
          width: 105px;
          height: 88px;
        }

        .last {
          position: relative;
          width: fit-content;
          @media (max-width: 1024px) {
            &::after {
              display: none;
            }
          }
          &::after {
            content: url('../../img/quote-end.svg');
            position: absolute;
            top: 40px;
            right: -116px;
            width: 105px;
            height: 88px;
          }
        }
      }
      .info-bottom {
        display: flex;
        gap: 24px;
        justify-content: space-between;
        @media (max-width: 1024px) {
          flex-direction: column;
          gap: 0;
        }
        .text {
          max-width: 400px;
          @media (max-width: 1024px) {
            font-size: 18px;
          }
        }
      }
    }
  }
}
