.newsEventSection {
  /* background: url(../../../assets/images/newsBg.png);
  background: url("https://i0.wp.com/ustamidatlanticfoundation.org/wp-content/uploads/2019/11/image001-1.gif"); */
  background: linear-gradient(
    97deg,
    rgba(36, 236, 44, 0.2) -1.09%,
    rgba(77, 73, 255, 0.2) 22.6%,
    rgba(32, 28, 254, 0.2) 47.71%,
    rgba(77, 73, 255, 0.2) 73.69%,
    rgba(0, 180, 255, 0.2) 95.5%
  );
  /* background: #f9fafb; */
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.newsImageContainer {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 275px;
  position: relative;
  display: block;
}
.newsCard {
  margin: 5px;
  border: 1px dotted lightblue;
}
.newsCard .text {
  position: relative;
  border-top: 0;
  border-radius: 2px;
}

.newsCard .text .heading {
  font-size: 20px;
  margin-bottom: 10px;
  height: 50px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsCard .text .heading a {
  color: var(--black-color);
  font-weight: bold;
  height: 46px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.newsCard .event-description {
  height: 86px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.newsCard .text .heading a:hover,
.newsCard .text .heading a:focus,
.newsCard .text .heading a:active {
  color: #ffbc42;
}

.newsCard .text .meta-chat {
  color: #b3b3b3;
}

.newsCard .text .read {
  color: #000000;
  font-size: 14px;
}

.newsCard .meta-date {
  display: inline-block;
  background: var(--secondary-color);
}

.newsCard .meta-date span {
  display: block;
  color: #fff;
}

.newsCard .meta-date .day {
  font-weight: 700;
  font-size: 20px;
  border-bottom: 0.5px solid white;
}

.newsCard .meta-date .mos,
.newsCard .meta-date .yr {
  font-size: 13px;
}

.newsCard .meta > div {
  display: block;
  margin-right: 5px;
  margin-bottom: 0px;
  font-size: 15px;
}

.newsCard .meta > div a {
  color: #b3b3b3;
  font-size: 13px;
}

.newsCard .meta > div a:hover {
  color: #cccccc;
}

@media (min-width: 768px) {
  .newsCard {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .newsCard {
    margin-bottom: 30px;
  }
}

/* test */
.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 42px 21px rgba(255, 255, 255, 2.1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.glass-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    180deg,
    rgba(47, 184, 255, 0.42) 31.77%,
    #5c9df1 100%
  );
  mix-blend-mode: multiply;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-animation: move 25s infinite alternate;
  animation: move 25s infinite alternate;
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
}

.blob:hover {
  width: 520px;
  height: 520px;
  -webkit-filter: blur(30px);
  filter: blur(30px);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.6),
    inset 100px 100px 0 0px #fa709a, inset 200px 200px 0 0px #784ba8,
    inset 300px 300px 0 0px #2b86c5;
}

@-webkit-keyframes move {
  from {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;
  }

  to {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;
  }
}

@keyframes move {
  from {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;
  }

  to {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;
  }
}
@media (max-width: 600px) {
  .blob {
    display: none;
  }
}
