
  .read-more {
    margin-bottom: 160px;
  }

  .read-more .container {
    display: flex;
    gap: 108px;
  }

  .read-more .container.reverse {
    flex-direction: row-reverse;
  }

  .read-more .title {
    margin-bottom: 0;
  }

  .read-more__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .read-more__text {
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }

  .read-more__text {
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .read-more__toggle::after {
    content: url('/wp-content/themes/euvatandas.tr/images/stash_arrow-up-light.svg');
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    transition: ease all 0.5s;
  }

  .read-more__toggle.is-expanded::after {
    transform: rotate(-90deg);
  }

  .read-more__img {
    max-width: 484px;
    width: 100%;
    object-fit: contain;
  }

  @media (max-width: 1100px) {
    .read-more .container {
      align-items: center;
      flex-direction: column;
      gap: 40px;
    }

    .read-more__img.mob-img-none {
      display: none;
    }
  }

  @media (max-width: 768px) {

    .read-more {
      margin-bottom: 80px;
    }

    .read-more__content {
      gap: 24px;
      align-items: center;
    }

    .read-more__text {
      overflow: hidden;
      transition: none;
    }

    .read-more__toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      background: none;
      border: none;
      color: #405363;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      line-height: normal;
      letter-spacing: 0.96px;
      text-transform: uppercase;
      cursor: pointer;
    }
  }

  @media (min-width: 769px) {
    .read-more__toggle {
      display: none;
    }
  }
