.cxu--posts .thumb img {
  width: 100%;
  object-fit: cover;
}

.cxu--posts .desc p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

.cxu--posts .title a {
  color: inherit;
}

.cxu--posts .title {
  font-weight: 420;
  line-height: 1.3;
  color: #000;
}

.cxu--posts .category ul {
  gap: 6px;
  display: flex;
  align-items: center;
}

.cxu--posts .cxu-post {
  overflow: hidden;
}

.hover-underline.title a {
  --color: currentColor;
  --thikness: 2px;
  background-image: linear-gradient(transparent calc(100% - var(--thikness)), var(--color) var(--thikness));
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s;
  padding-bottom: 5px;
}

.hover-underline.title:hover a {
  background-size: 100% 100%;
}


/* Posts Style 1 */
.style-1.cxu--posts {
  gap: 50px;
  display: grid;
}

.style-1.cxu--posts .cxu-post {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.style-1.cxu--posts .thumb img {
  height: 350px;
}

.style-1.cxu--posts .meta-list {
  gap: 20px;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: auto 1fr auto;
}

.style-1.cxu--posts .content {
  padding: 35px 35px 55px;
}

.style-1.cxu--posts .category a,
.style-1.cxu--posts .date {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  border: 1px solid #0000001A;
  border-radius: 100px;
  padding: 4px 15px;
  display: inline-block;
  color: #000;
  transition: all 0.3s;
}

.style-1.cxu--posts .category a:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.style-1.cxu--posts .line {
  width: 100%;
  height: 1px;
  background: #0000001A;
}

.style-1.cxu--posts .title {
  font-size: 36px;
  margin-top: 50px;
  margin-bottom: 30px;
}

.style-1.cxu--posts .desc {
  margin-bottom: 40px;
}

/* Posts Style 2 */
.cxu--posts.style-2 {
  gap: 30px;
  display: grid;
}

.style-2.cxu--posts .content-wrap {
  display: flex;
}

.style-2.cxu--posts .thumb {
  flex-basis: 330px;
  flex-shrink: 0;
}

.style-2.cxu--posts .thumb img {
  height: 100%;
}

.style-2.cxu--posts .meta-list {
  gap: 20px;
  display: flex;
  align-items: center;
}

.style-2.cxu--posts .line {
  display: block;
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 100px;
}

.style-2.cxu--posts .title {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: all 0.3s;
}

.style-2.cxu--posts .title a {
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 2px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s;
  padding-bottom: 5px;
}

.style-2.cxu--posts .title:hover a {
  background-size: 100% 100%;
}

.style-2.cxu--posts .content {
  display: flex;
  flex-direction: column;
  padding-left: 30px;
}

.style-2.cxu--posts .author-wrap {
  display: flex;
  gap: 15px;
  margin-top: auto;
  align-items: center;
}

.style-2.cxu--posts .author-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  display: block;
  color: #000;
  text-transform: capitalize;
}

.style-2.cxu--posts .author-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  text-transform: capitalize;
}

.style-2.cxu--posts .author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  object-fit: cover;
}

.cxu--posts.style-2 .desc {
  margin-bottom: 20px;
}

.cxu--posts.style-2 .glidy--btn {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .style-2.cxu--posts .content-wrap {
    flex-wrap: wrap;
  }
}