.line-clamp {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  position: relative;

  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0;
}
.line-clamp:after {
  content: "";
  text-align: right;
  bottom: 0;
  right: 0;
  width: 25%;
  display: block;
  position: absolute;
  height: calc(1em * 1.5);
  /*background : linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 75%);*/
}

@supports (-webkit-line-clamp: 1) {
  .line-clamp:after {
    display: none !important;
  }
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
  height: calc(1em * 1.5 * 1);
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
  height: calc(1em * 1.5 * 2);
}
.line-clamp-3 {
  -webkit-line-clamp: 3;
  height: calc(1em * 1.5 * 3);
}
.line-clamp-4 {
  -webkit-line-clamp: 4;
  height: calc(1em * 1.5 * 4);
}
.line-clamp-5 {
  -webkit-line-clamp: 5;
  height: calc(1em * 1.5 * 5);
}

img {
  max-width: 100%;
}

.Ourauthor-page {
  background-color: #c3c3c3;
  text-align: center;
  padding: 25px;
  margin-bottom: 25px;
}
.Ourauthor-page h2 {
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Oswald";
  font-size: 40px;
}
.athpg-grid .grid3-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}

.athpg-grid .grid3-page > div {
  padding: 30px;
  border: 1px solid #c9c9c9;
}

.authorgrid .athimg {
  height: 200px;
  width: 200px;
  margin: auto;
}
.authorgrid .athimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  filter: grayscale(100%);
}

.authorgrid:hover .athimg img {
  filter: grayscale(0);
}

.authorgrid .athimg img:before {
  content: "";
  background: red;
  position: absolute;
  height: 200px;
  width: 200px;
  z-index: 200;
  display: block;
}

.athinfo {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
}
.grid3-page a {
  text-decoration: none;
}
a .athinfo .athname {
  color: #323232;
  text-transform: uppercase;
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}
a .athinfo .athdesc {
  color: #666666;
  font-size: 16px;
}
@media only screen and (max-width: 460px) {
  .athpg-grid .grid3-page {
    grid-template-columns: 1fr;
  }
}
