.section.info-card-con-accordion {
  background: var(--second-background-color);
  transition: all 0.3s ease-in-out;

  .content {
    padding: var(--section-padding-desktop);
    margin: 0 auto;
    max-width: var(--max-section-grid-width);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    column-gap: 8rem;
    @media screen and (max-width: 48rem) {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      column-gap: unset;
      row-gap: 2rem;
      padding: unset;
    }

    .left-column {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      overflow: hidden;
      @media screen and (max-width: 48rem) {
        aspect-ratio: 0.9;
        width: 100%;
        order: -1;
      }

      img {
        object-fit: contain;
        height: 100%;
        width: 100%;
      }
    }

    .right-column {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: flex-start;
      height: 100%;
      max-height: max-content;

      gap: var(--spacing-md);
      @media screen and (max-width: 48rem) {
        width: 100%;
        padding: var(--section-padding-mobile);
        padding-block-start: unset;
      }

      .accordion-container {
        display: flex;
        flex-direction: column;
        width: 100%;
      }
      .cta {
        margin-block-start: 4rem;
      }
    }
  }
}
