/**
 * The base file that should be imported by every file.
 * There should be no CSS generation in this or from imported scss files at all!
 */
/**
 * Library
 */
/**
 * Variables and functions
 */
.news-item {
  margin-top: 2em;
  position: relative;
  display: block; }
  @media (min-width: 1250px) {
    .news-item {
      display: flex;
      gap: 1em; } }
  .news-item .image-overlay {
    margin: 0;
    display: block;
    position: relative;
    overflow: hidden; }
    @media (max-width: 1249px) {
      .news-item .image-overlay {
        padding-top: 65%;
        width: 100%; } }
    @media (min-width: 768px) {
      .news-item .image-overlay {
        flex-basis: 250px; } }
    .news-item .image-overlay img {
      transition: transform .3s ease-in-out;
      transform: scale(1);
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      margin-bottom: -10px; }
  .news-item .content {
    flex: 1; }
    @media (max-width: 767px) {
      .news-item .content {
        margin-top: 1em; } }
    @media (min-width: 768px) {
      .news-item .content {
        margin: 2em 0; } }
    .news-item .content .section-subtitle {
      text-transform: uppercase;
      font-size: 14px; }
    .news-item .content h3 {
      margin-top: 0; }
      .news-item .content h3 a {
        transition: color .3s ease-in-out;
        box-shadow: none; }
  .news-item:hover .image-overlay img {
    transform: scale(1.2); }
  .news-item:hover .content h3 a {
    text-decoration: none;
    color: var(--gold); }

/*# sourceMappingURL=news-item.css.map */
