.smort-content-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;

  /* Tablet responsiv */
  @media (max-width: 1024px) {
    gap: 32px;
    margin: 48px 0;
  }

  /* Mobil responsiv - stack vertically */
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 32px 0;
  }

  .content-text-container {
    padding: 20px 0;

    @media (max-width: 768px) {
      padding: 16px 0;
    }

    .content-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accentColor);
      margin: 0 0 24px 0;
      line-height: 1.2;

      @media (max-width: 1024px) {
        font-size: 2.2rem;
        margin-bottom: 20px;
      }

      @media (max-width: 768px) {
        font-size: 1.8rem;
        margin-bottom: 16px;
        text-align: center;
      }

      @media (max-width: 480px) {
        font-size: 1.6rem;
        margin-bottom: 14px;
      }
    }

    .content-text {
      font-size: 1.1rem;
      line-height: 1.6;
      color: var(--dark);

      @media (max-width: 1024px) {
        font-size: 1rem;
        line-height: 1.5;
      }

      @media (max-width: 768px) {
        font-size: 0.95rem;
        text-align: center;
      }

      @media (max-width: 480px) {
        font-size: 0.9rem;
      }

      p {
        margin: 0 0 16px 0;

        &:last-child {
          margin-bottom: 0;
        }
      }

      h3, h4, h5, h6 {
        color: var(--accentColor);
        margin: 24px 0 12px 0;

        &:first-child {
          margin-top: 0;
        }
      }

      ul, ol {
        margin: 16px 0;
        padding-left: 24px;

        li {
          margin-bottom: 8px;
        }
      }

      a {
        color: var(--accentColor);
        text-decoration: none;
        transition: color 0.2s ease;

        &:hover {
          color: var(--dark);
          text-decoration: underline;
        }
      }
    }
  }

  .content-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

    img {
      width: 100%;
      height: auto;
      min-height: 300px;
      object-fit: cover;
      transition: transform 0.3s ease;

      @media (max-width: 768px) {
        min-height: 250px;
      }

      @media (max-width: 480px) {
        min-height: 200px;
      }
    }

    &:hover img {
      transform: scale(1.02);
    }
  }

  /* Image left variant */
  &.image-left {
    @media (max-width: 768px) {
      .content-image-container {
        order: -1;
      }
    }
  }

  /* Image right variant - default order is fine */
  &.image-right {
    @media (max-width: 768px) {
      .content-text-container {
        order: -1;
      }
    }
  }
}

/* Fallback för placeholder bild */
.content-image-container img[src*="content-placeholder"] {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  
  &::before {
    content: "🖼️";
    font-size: 4rem;
    color: #ccc;
  }
}
