html,
body {
  overflow-x: hidden;
}
.article-section {
  margin-top: 95px;
  width: 100%;
  height: fit-content;
}
.article-banner {
  height: 50vh;
  width: 100%;
  background: linear-gradient(0deg, rgba(2, 0, 36, 1) 14%, var(--blue) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
}
.article-banner > h1 {
  margin-bottom: 10px;
  color: white;
  font-size: 4rem;
}
.article-banner > p {
  color: white;
  font-size: 1rem;
}
.allposts-box {
  padding: 50px 80px 25px 80px;
}
.title-box {
  margin: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.searchBar {
  max-width: 480px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#searchQueryInput {
  width: 100%;
  height: 2.8rem;
  background: #f5f5f5;
  outline: none;
  border: none;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
}

#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -3.5rem;
  background: none;
  border: none;
  outline: none;
}

#searchQuerySubmit:hover {
  cursor: pointer;
}
.pagebtn-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.page-btns > button {
  padding: 6px 10px;
  border-radius: 6px;
  color: black;
  border: none;
  cursor: pointer;
}
.page-btns > button:active {
  background: whitesmoke;
}
.page-btns > span {
  padding: 10px;
  cursor: pointer;
}
.article-hrm {
  margin-top: 100px;
}
.admin-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.article-by-box {
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.art-img {
  display: flex;
  align-items: center;
}
.art-img > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.article-by-nm > h2 {
  font-size: 1rem;
}
.article-lst-update > p {
  font-size: 0.7rem;
}
.hrms-table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hrms-table > table {
  margin-top: 25px;
  border-collapse: collapse;
  text-align: center;
}
.hrms-table > table,
th,
td {
  padding: 10px;
  border: 1px solid black;
}
.hrms-table > table th {
  color: var(--blue);
}
.hr-ar-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hr-ar-blg-box {
  max-width: 1120px;
  margin: 40px 0;
}
.hr-ar-blg-box > h2 {
  margin: 10px 0;
}
.hr-ar-blg-box > p {
  margin: 10px 0;
  font-size: 1.2rem;
  text-align: justify;
}
@media only screen and (max-width: 600px) {
  .admin-box {
    justify-content: center;
  }
  .hrms-table > table,
  th,
  td {
    padding: 5px;
    font-size: 8px;
  }
}
