.sw25-om-two-column-expander {
  padding: 56px 0 80px 0;
  &.gray {
    background-color: #f4f7f7;
  }
  .sw19s-std-wrap {
    max-width: 1280px;
  }

  .headline {
    color: #111;
    font-size: 34px;
    line-height: 44px;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding-bottom: 15.5px;
    border-bottom: solid 1px #cccccc;
    margin-bottom: 39.5px;
  }

  .two-col-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 80px;
  }

  .article {
    display: flex;
    flex-direction: row;
    gap: 24px;
    min-height: 96px;
  }

  .two-col-article .image {
    position: relative;
    height: 100%;

    .overlay {
      height: 100%;
      width: 100%;
      background-color: rgba(17, 17, 17, 0.4);
      position: absolute;
      top: 0;
      display: none;
    }

    &:active {
      img {
        border: 1px solid #444444;
        transform: scale(0.9);
      }
      .overlay {
        display: block;
        &:hover {
          transform: scale(0.9);
        }
      }
    }
  }

  .two-col-article .image img {
    width: 174px;
    height: 96px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 174 / 96;
    transition: all 0.4s ease;

    &:hover {
      transform: scale(0.9);
    }
  }

  .two-col-view-all {
    display: flex;
    justify-content: center;
    padding-top: 42px;
  }

  .two-col-view-all button {
    background-color: transparent;
    border: none;
    color: #006482;
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    &:hover {
      text-decoration: underline;
    }

    &:active {
      text-decoration-thickness: 2px;
    }
  }

  .two-col-view-all svg {
    fill: #006482;
  }

  .info {
    display: flex;
    flex-direction: column;
  }

  .title a {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    line-height: 24px;

    &:hover {
      text-decoration: underline;
    }

    &:active {
      text-decoration: underline;
      color: #003c4e;
    }
  }

  .date-and-author {
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding-top: 16px;
    margin-top: auto;
    flex-wrap: wrap;

    &.mobile {
      display: none;
    }
  }

  .date {
    color: #666;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto Slab";
  }

  .author {
    color: #444444;
    align-self: center;
  }

  .author a {
    color: #444444;
    font-size: 16px;
    line-height: 1.25;
    text-decoration: underline;

    &:hover {
      color: #006482;
      text-decoration-thickness: 2px;
    }

    &:active {
      color: #003c4e;
      text-decoration-thickness: 2px;
    }
  }

  .divider {
    width: 1px;
    background-color: #a0b9b9;
  }

  @media screen and (max-width: 991px) {
    .sw19s-std-wrap {
      padding: 0 8px 0 8px;
    }

    .headline {
      text-align: center;
    }

    .two-col-articles {
      grid-template-columns: 1fr;
    }

    .two-col-view-all {
      padding-top: 32px;
    }
  }

  @media screen and (max-width: 768px) {
    padding: 40px 0 40px 0;
    .headline {
      font-size: 30px;
      line-height: 40px;
      padding-bottom: 32px;
      margin-bottom: 32px;
    }

    .two-col-articles {
      gap: 32px;
    }

    .two-col-article {
      padding-bottom: 32px;
      border-bottom: solid 1px #cccccc;
    }

    .article {
      min-height: 0;
    }

    .two-col-article .image img {
      height: 66px;
      width: 116px;
      border-radius: 4px;
    }

    .date-and-author {
      &.mobile {
        display: flex;
      }
      &.desktop {
        display: none;
      }
    }
  }
}
