/*
 * Copyright (c) 2025 TechDivision GmbH
 * All rights reserved
 *
 * This product includes proprietary software developed at TechDivision GmbH, Germany
 * For more information see https://www.techdivision.com/
 *
 * To obtain a valid license for using this software please contact us at
 * license@techdivision.com
 */

.news {
  /* single news item */

  /* noinspection DuplicatedCode */

  .news-list-item {
    background: var(--color-gray-light);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    margin: 10px 0;

    @media (width >= 900px) {
      display: flex;
    }

    /* details */

    .details-wrapper {
      flex: 2;
      margin: 0 !important;
      padding: 40px;

      .date {
        margin: 0 0 25px;
        color: var(--link-color);
      }

      .title h3 {
        font-size: var(--heading-font-size-m);
        margin: 0 0 5px;

        &, a {
          color: var(--text-color);
        }
      }

      .description p {
        max-width: 650px;
        margin: 0;
        font-size: var(--body-font-size-s);
        line-height: var(--body-line-height-s);
      }

      a.button {
        margin: 35px 0 0;
        padding-right: 2.5ch;
      }
    }

    /* image */
    .image-wrapper {
      flex: 1;
      margin: 0;

      img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

/* news - side by side */
.side-by-side .news {
  .news-list-item {
    .details-wrapper {
      flex: 1;
    }

    .image-wrapper {
      img {
        height: 340px;
      }
    }
  }
}
