.Avada-Page-Wrapper {
  padding: 1rem 5rem;
}

.Avada-TagSearch-Wrapper {
  display: flex;
  align-items: center;
  width: 40%;
  height: 35px;
  border: 1px solid rgba(138, 138, 138, 1);
  border-radius: 6px;
  padding: 0 0.5rem;
}

#Avada-TagSearch {
  padding: 0.5rem;
  width: 100%;
  border: none;
  background: transparent;
}

#Avada-TagSearch:focus {
  outline: none;
}

#Avada-Tags {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 10px;
  margin-bottom: 43px;
  flex-wrap: wrap;
}

#Avada-Tags .tag-item.active,
#Avada-Tags .tag-item:hover {
  color: rgba(16, 24, 40, 1);
}

#Avada-Tags .tag-item.active {
  font-size: 30px;
  font-weight: 700;
}

#Avada-Tags .tag-item {
  cursor: pointer;
  color: rgba(71, 88, 122, 1);
  font-size: 20px;
}

.Avada-Wrapper {
  display: grid;
  place-items: center;
}

.Avada-BlogItem-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#Avada-ListArticles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 36px;
}

.Avada-ListArticles__Item {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  gap: 0;
}

.Avada-ListArticles__ItemThumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.Avada-ListArticles__Info {
  width: 100%;
}

.Avada-ListArticles__category {
  font-size: 16px;
  color: rgba(143, 150, 165, 1);
  margin-top: 8px;
  margin-bottom: 8px;
}

.Avada-ListArticles__title {
  font-weight: 600;
  font-size: 20px;
  color: #101828;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.Avada-ListArticles__des {
  font-weight: 400;
  font-size: 16px;
  color: #8f96a5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.Avada-ListArticles__Footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.Avada-ListArticles__Action {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.Avada-ListArticles__Author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.Avada-ListArticles__Action-Icon {
  display: flex;
  align-items: center;
}

.icon-text,
.Avada-ListArticles__Author--name {
  font-size: 13px;
  color: rgba(143, 150, 165, 1);
}

.icon-text {
  font-weight: 500;
}

@media (max-width: 768px) {
  .Avada-TagSearch-Wrapper {
    width: 100%;
  }

  #Avada-ListArticles {
    grid-template-columns: 1fr;
  }

  .Avada-Page-Wrapper {
    padding: 1rem;
  }
}

.Avada-Skeleton {
  background: #e0e0e0;
  border-radius: 4px;
  animation: pulse 1.5s infinite ease-in-out;
  display: block !important;
}

.Avada-Skeleton-tag {
  width: 100px;
}

.Avada-Skeleton-tag,
.Avada-Skeleton-text {
  height: 16px;
  margin: 8px 0;
}

.Avada-Skeleton-img {
  width: 100%;
  height: 200px;
}

#Avada-Pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.pagination-page {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  font-size: 18px;
  color: rgba(71, 88, 122, 1);
  cursor: pointer;
  border: unset;
}

.pagination-page.active {
  background-color: rgba(102, 112, 133, 0.2);
  color: rgba(16, 24, 40, 1);
}

.btn-wrap.disabled {
  user-select: none;
  pointer-events: none;
  cursor: no-drop;
  opacity: 0.5;
}

#Avada-Btn-Next {
  margin-left: 1rem;
}

#Avada-Btn-Prev {
  margin-right: 2rem;
}

#Avada-Btn-Next,
#Avada-Btn-Prev {
  display: flex;
  align-items: center;
  border: unset;
  gap: 0.5rem;
  background-color: transparent;
  color: rgba(16, 24, 40, 1);
  font-size: 18px;
  width: 50px;
  cursor: pointer;
  font-weight: 500;
}

@keyframes pulse {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f0f0f0;
  }
  100% {
    background-color: #e0e0e0;
  }
}
