.newscard-grid {
      display: grid;
      /*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));     
      gap: 16px;
      max-width: 1150px;
      margin: 0 auto 1.5em;
      padding: 15px;
    }

    .newscard {
      background-color: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .newscard:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .newscard img {
      width: 100%;
      /*height: 140px;*/
      object-fit: cover;
    }

    .newscard-content {
      padding: 12px 14px;
    }

    .newscard-title {
      font-size: 1.1em;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .newscard-description {
      font-size: 0.8em;
      color: #555;
      margin-bottom: 12px;
      line-height: 1.3em;
    }

    .newscard-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }

    .tag {
      background-color: #e0f2fe;
      color: #0369a1;
      padding: 2px 10px;
      border-radius: 9999px;
      font-size: 0.7rem;
      font-weight: 500;
    }

    .newscard-footer {
      display: flex;
      align-items: center;
      border-top: 1px solid #eee;
      padding: 10px 14px;
      gap: 10px;
    }

    .avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }

    .author-info {
      font-size: 0.75rem;
    }

    .author-name {
      font-weight: 600;
    }

    .author-role {
      color: #888;
      font-size: 0.7rem;
    }
    
/* Intro text headers */
    
.gs-introtext2 {
    margin: 1rem auto 2rem;
    width: 80%;
    max-width: 1000px;
}

.gs-introtext2 h3 {
    color: #111827 !important;
    font-size: 1.2em;
    font-weight: 700;
    margin-left: 1rem;
}

.gs-introtext2 p {
    border-left: solid 1px #555656;
    padding-left: 1rem;
    margin-bottom: unset;
    margin-top: 0;
    color: #4b5563;
}

@media screen and (min-width : 767px) {
    .gs-introtext2 {
        width: 90%;
        display: flex;
        align-items: center;
        margin-bottom: 2em;
        margin-top: 2.2em;
    }

    .gs-introtext2 h3 {
        margin: 0 1rem
    }

    .gs-introtext2 p {
        flex: 3;
        font-size: .9em;
        line-height: 1.5em;
    }
}