.logoOfEWW {
    background-image: url("/img/logo-EWW-light.png");
}
.mainOfBlogPage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 98%;
    max-width: 2000px;
    padding-right: 1%;/*avoid scrollbar width*/
    margin-bottom: 30px;
    padding-top: 150px;
}
.mainOfBlogPage .blogIntro {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.mainOfBlogPage .blogIntro h1 {
  display: flex;
  gap: 5px;
  font-size: 42px;
  color: var(--text-color-light);
}
.mainOfBlogPage .blogIntro h1::before,
.mainOfBlogPage .blogIntro h1::after {
  content: "";
  display: flex;
  width: 40px;
  height: 40px;
  background-image: var(--blogIntro-pen);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.mainOfBlogPage .blogIntro h1::before {
  transform: scaleX(-1);
}
.mainOfBlogPage .blogIntro .blogIntroDetails {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 80%;
  height: 80%;
  font-size: 20px;
  color: var(--paragraphColor-light);
  text-align: center;
}
.mainOfBlogPage .blogIntro .blogIntroDetails p {
  align-self: flex-end;
  flex: 1;
  height: 250px;
  display: flex;
  align-items: center;
}
.mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu {
  flex: 0 0 250px;
  height: 250px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
.mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu:nth-of-type(1) {
  background-image: var(--blogIntroLeft-illu);
}
.mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu:nth-of-type(2) {
  background-image: var(--blogIntroRight-illu);
}
/* .mainOfBlogPage .blogIntro::before,
.mainOfBlogPage .blogIntro::after {
  content: "";
  position: absolute;
  height: 90%;
  aspect-ratio: 1;
  background-color: red;
} */
.mainOfBlogPage .tabContainer {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 25px;
    width: 60%;
    height: fit-content;
}
.mainOfBlogPage .tabContainer .tabBtn {
    position: relative;
    display: flex;
    width: fit-content;
    padding: 5px 10px;
    text-decoration: none;
    font-family: inherit;
    font-size: 20px;
    color: var(--bg-color-light);
    background: #558CA0;
    transition: 1s;
    box-shadow: 3px 3px 0 #5B5854;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.mainOfBlogPage .tabContainer .tabBtn:hover {
    transform: skewX(-15deg) scale(1.04);
}
.mainOfBlogPage .tabContainer .tabBtn:focus {
    transform: skewX(-15deg) scale(1);
}
.mainOfBlogPage .tabContainer .tabBtn.all:hover, .mainOfBlogPage .tabContainer .tabBtn.all.tabDetails {
  color: #b8b8b8;
  box-shadow: 3px 3px 0 #b8b8b8;
}
.mainOfBlogPage .tabContainer .tabBtn.technical:hover, .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails {
  color: var(--articleTech-light);
  box-shadow: 3px 3px 0 var(--articleTech-light);
}
.mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails:hover, .mainOfBlogPage .tabContainer .tabBtn.management.tabDetails:hover {
  transform: skewX(-15deg) scale(1);
}
.mainOfBlogPage .tabContainer .tabBtn.technical > span {
  position: absolute;
  top: 99%;
  right: 50%;
  width: 2%;
  height: 0%;
  background-color: var(--articleTech-light);
  transition: all 0.2s ease;
  transition-delay: 0.6s;
}
.mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails > span {
  height: 25%;
  transition-delay: 0s;
}
.mainOfBlogPage .tabContainer .tabBtn.technical::before {
  content: "";
  position: absolute;
  bottom: -25%;
  right: 50%;
  width: 0%;
  height: 6%;
  background-color: var(--articleTech-light);
  transition: all 0.4s ease;
  transition-delay: 0.2s;
}
.mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails::before {
  width: 202%;
  transition-delay: 0.2s;
}
.mainOfBlogPage .tabContainer .tabBtn.technical::after {
  content: "";
  position: absolute;
  top: 119%;
  right: 250%;
  width: 2%;
  height: 0%;
  background-color: var(--articleTech-light);
  transition: all 0.2s ease;
  transition-delay: 0s;
}
.mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails::after {
  height: 55%;
  transition-delay: 0.5s;
}
.mainOfBlogPage .tabContainer .tabBtn.management:hover, .mainOfBlogPage .tabContainer .tabBtn.management.tabDetails {
  /* color: #40EFFF; */
  color: var(--articleMgmt-light);
  box-shadow: 3px 3px 0 var(--articleMgmt-light);
}
.mainOfBlogPage .tabContainer .tabBtn.management > span {
  position: absolute;
  top: 99%;
  right: 50%;
  width: 2%;
  height: 0%;
  background-color: var(--articleMgmt-light);
  transition: all 0.2s ease;
  transition-delay: 0.6s;
}
.mainOfBlogPage .tabContainer .tabBtn.management.tabDetails > span {
  height: 40%;
  transition-delay: 0s;
}
.mainOfBlogPage .tabContainer .tabBtn.management::before {
  content: "";
  position: absolute;
  bottom: -40%;
  right: 50%;
  width: 0%;
  height: 6%;
  background-color: var(--articleMgmt-light);
  transition: all 0.4s ease;
  transition-delay: 0.2s;
}
.mainOfBlogPage .tabContainer .tabBtn.management.tabDetails::before {
  width: 250%;
  transition-delay: 0.2s;
}
.mainOfBlogPage .tabContainer .tabBtn.management::after {
  content: "";
  position: absolute;
  top: 134%;
  right: 299%;
  width: 2%;
  height: 0%;
  background-color: var(--articleMgmt-light);
  transition: all 0.2s ease;
  transition-delay: 0s;
}
.mainOfBlogPage .tabContainer .tabBtn.management.tabDetails::after {
  height: 41%;
  transition-delay: 0.5s;
}
.mainOfBlogPage .tabContainer form {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  margin-left: auto;
  box-shadow: 3px 3px 0 #5B5854;
  transform: skewX(-15deg);
}
.mainOfBlogPage .tabContainer form > * {
  height: 100%;
  border: none;
  transition: all 0.2s ease-in-out;
}
.mainOfBlogPage .tabContainer form .searchInput {
  scroll-margin-top: 70px;
  position: relative;
  width: 100%;
  font-family: inherit;
  font-size: 18px;
  color: #173B4F;
  padding: 5px;
}
.mainOfBlogPage .tabContainer form .searchInput::placeholder {
  color: #173B4F;
}
.mainOfBlogPage .tabContainer form .searchInput:focus {
  outline: none;
}
.mainOfBlogPage .tabContainer form .searchInput:focus::placeholder {
  opacity: 0;
}
.mainOfBlogPage .tabContainer form .searchBtn {
  position: absolute;
  right: -1px;
  width: 10%;
  background-color: #558CA0;
  color: var(--bg-color-light);
  cursor: pointer;
}
.mainOfBlogPage .tabContainer form .searchBtn:hover {
  color: var(--purpleCowButton-light);
}
.mainOfBlogPage .tabContainer aside ul{
  position: absolute;
  right: 105%;
  top: 173%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 25%;
  height: 0;
  transform: skewX(-10deg);
  background-color: #558CA0;
  list-style-type: none;
  transition: opacity 0.4s linear;
  transition-delay: 0.6s;
  transition-property: opacity, height;
  overflow-y: hidden;
  opacity: 0;
}
.mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails ~ aside ul.asideTech {
  height: fit-content;
  box-shadow: 7px 7px 0 var(--articleTech-light);
  opacity: 1;
}
.mainOfBlogPage .tabContainer .tabBtn.management.tabDetails ~ aside ul.asideMgmt {
  height: fit-content;
  box-shadow: 7px 7px 0 var(--articleMgmt-light);
  opacity: 1;
}
.mainOfBlogPage .tabContainer aside ul h1 {
  color: #173B4F;
  padding-top: 5px;
  padding-left: 5px;
}
.mainOfBlogPage .tabContainer aside ul li {
  margin-bottom: 5px;
}
.mainOfBlogPage .tabContainer aside ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--bg-color-light);
  font-size: 20px;
  border-left: transparent solid 3px;
  padding: 0 5px;
  transition: all 0.3s ease-in-out;
}
.mainOfBlogPage .tabContainer aside ul.asideTech li a:hover {
  color: var(--articleTech-light);
  border-left: var(--articleTech-light) solid 3px;
}
.mainOfBlogPage .tabContainer aside ul.asideMgmt li a:hover {
  color: var(--articleMgmt-light);
  border-left: var(--articleMgmt-light) solid 3px;
}
/*↓↓SEARCH RESULT↓↓*/
.mainOfBlogPage #articlesBlock #search-results__items {
  width: 100%;
  padding: 0 10px;
}
.mainOfBlogPage #articlesBlock #search-results__items li {
  list-style: none;
  margin-bottom: 20px;
}
.mainOfBlogPage #articlesBlock #search-results__items li .search-results__item {
  display: inline;
}
.mainOfBlogPage #articlesBlock #search-results__items li .search-results__item > a {
  font-size: 25px;
  font-family: inherit;
  font-weight: 600;
  color: var(--onHoverTextButton-light);
  letter-spacing: 0.15rem;
  text-decoration: none;
}
.mainOfBlogPage #articlesBlock #search-results__items li .search-results__item > div {
  font-size: 18px;
  color: var(--paragraphColor-light);
  letter-spacing: 0.05rem;
}
.mainOfBlogPage #articlesBlock #search-results__items li .search-results__item > div b {
  background-color: var(--onHoverTextButton-light);
  border-radius: 3px;
  padding: 0 5px;
  color: #173B4F;
}
/*↑↑END SEARCH RESULT↑↑*/

/*↓↓START ARTICLES↓↓*/
/*↓↓Htmx transition↓↓*/
.mainOfBlogPage #articlesBlock {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
}
.htmx-transition {
    opacity: 1;
    transition: all .15s linear;
}
.htmx-transition.htmx-added > div:not(.pagination) {
    opacity: 0;
    transition: all .15s linear;
}
.htmx-transition.htmx-swapping > div:not(.pagination) {
    opacity: 0;
    transition: all .15s linear;
}

.mainOfBlogPage .articleContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.mainOfBlogPage .articleContainer > article {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.mainOfBlogPage .articleContainer > article div:first-of-type {
    position: relative;
    width: 80%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    background-color: #558CA0;
    color: #FFFFFF;
    padding: 3px 0;
    clip-path: polygon(0 0, 100% 0%, 90% 100%, 0 100%);
}
.mainOfBlogPage .articleContainer > article div:first-of-type h1 {
  position: relative;
  padding-left: 10px;
  margin-bottom: 10px;
  color: #173B4F;
  padding-right: 80px;
}
.titleIndicatorTech {
  border-left: var(--articleTech-light) solid 3px;
}
.titleIndicatorMgmt {
  border-left: var(--articleMgmt-light) solid 3px;
}
.mainOfBlogPage .articleContainer > article div:first-of-type h1::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 15px;
  height: 35px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.titleIndicatorTech::after {
  aspect-ratio: 1 / 1;
  background-image: url("img/techSvgIcon.svg");
}
.titleIndicatorMgmt::after {
  aspect-ratio: 1.5 / 1;
  background-image: url("img/mgmtSvgIcon.svg");
}

.mainOfBlogPage .articleContainer > article div:first-of-type > p {
    width: 90%;
    color: var(--nav-bg-color-light);
    padding-left: 15px;
}
.mainOfBlogPage .articleContainer > article > div .purpleCta {
    position: relative;
    left: 70%;
    width: 10%;
    min-width: fit-content;
    margin: 10px 0;
    padding: 5px 0 5px 10px;
    font-size: 18px;
    color: #558CA0;
    background: #FFFFFF;
    transition: 1s;
    box-shadow: 3px 3px 0 #5B5854;
}
.mainOfBlogPage .articleContainer > article .purpleCta:hover {
    transition: all 0.5s ease 0s;
    box-shadow: 6px 6px 0 var(--purpleCowButton-light);
}
.mainOfBlogPage .articleContainer > article .purpleCta .second {
    margin-left: 10px;
    display: flex;
    align-items: center;
}
.purpleCta:hover  .second {
  transition: 0.5s;
  margin-right: 15px;
}
.one {
  fill: #558CA0;
}

.two {
  fill: #558CA0;
}
.three {
    fill: #558CA0;
}
.purpleCta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.purpleCta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.purpleCta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
  0% {
    fill: #558CA0;
  }

  50% {
    fill: var(--purpleCowButton-light);
  }

  100% {
    fill: #558CA0;
  }
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(2) {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    width: 27.5%;
    height: 100%;
    background-color: #3B4B51;
    clip-path: polygon(29.5% 0, 100% 0%, 100% 100%, 0 100%);
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(2) img {
    position: relative;
    width: 75%;
    max-width: 150px;
    max-height: 100%;
    left: 30%;
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(3) {
    position: absolute;
    bottom: -30px;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top: var(--bg-color-light) solid 3px;
    font-family: inherit;
    color: #173B4F;
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(3) a {
    text-decoration: none;
    padding-left: 5px;
    color: #173B4F;
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(3) a:hover {
  text-decoration: underline;
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(3) .date {
    margin-left: auto;
    margin-right: 15px;
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(3) .readingTime {
    margin: 0 5px;
}
.mainOfBlogPage .articleContainer > article div:nth-of-type(3) .readingTime i {
  padding-right: 5px;
}

.cardFooterTech {
  background-color: var(--articleTech-light);
}
.cardFooterMgmt {
  background-color: var(--articleMgmt-light);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    transform: skewX(-15deg);
}

.pagination label {
    margin-right: 10px;
}

.pagination select {
    margin-right: 10px;
    padding: 5px;
}

.pagination button {
    margin-right: 10px;
    padding: 5px 10px;
    background-color: var(--bg-color-light);
    color: var(--text-color-light);
    font-family: "Anta", sans-serif;
    font-weight: 400;
    border: var(--text-color-light) solid 1px;
    cursor: pointer;
}
.pagination button:hover {
  color: var(--purpleCowButton-light);
  border-color: var(--purpleCowButton-light);
}
.pagination .pageNumber.active {
    background-color: #558CA0;
}

/*↓↓START RESPONSIVE↓↓*/
@media only screen and (min-width: 1300px) {
  .mainOfBlogPage .articleContainer > article div:first-of-type h1::after {
    right: 30px;
  }
}
@media only screen and (max-width: 1300px) {
  .mainOfBlogPage .articleContainer > article div:nth-of-type(2) img {
    left: 25%;
  }
}
/*↓↓MAX 1050PX↓↓*/
body.responsive .mainOfBlogPage .tabContainer,
body.responsive .mainOfBlogPage #articlesBlock {
  width: 75%;
  align-self: self-end;
  margin-right: 5%;
}
body.responsive .mainOfBlogPage .tabContainer aside ul {
  transform: skewX(0deg);
  right: 102%;
}
body.responsive .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails ~ aside ul.asideTech {
  box-shadow: 3px 3px 0 var(--articleTech-light);
}
body.responsive .mainOfBlogPage .tabContainer .tabBtn.management.tabDetails ~ aside ul.asideMgmt {
  box-shadow: 3px 3px 0 var(--articleMgmt-light);
}
body.responsive .mainOfBlogPage .tabContainer aside ul h1 {
  font-size: 18px;
}
body.responsive .mainOfBlogPage .tabContainer aside ul li a {
  font-size: 16px;
}
@media only screen and (max-width: 1050px) {
  .mainOfBlogPage .blogIntro .blogIntroDetails {
    width: 100%;
  }
  .mainOfBlogPage .articleContainer > article div:nth-of-type(2) img {
    left: 20%;
  }
}
@media only screen and (max-width: 900px) {
  .mainOfBlogPage .blogIntro {
    height: 350px;
    margin-bottom: 50px;
  }
}

/*↓↓MAX-WIDTH 800PX↓↓*/
@media only screen and (max-width: 800px) {
  .mainOfBlogPage {
    padding-top: 100px;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails {
    height: 60%;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails p,
  .mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu {
    height: 160px;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu {
    flex: 0 0 160px;
  }
  .mainOfBlogPage .tabContainer {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .mainOfBlogPage .tabContainer form .searchInput {
    font-size: 15px;
  }
  .mainOfBlogPage .tabContainer .tabBtn {
    font-size: 18px;
  }
  .mainOfBlogPage .tabContainer .tabBtn.technical::before,
  .mainOfBlogPage .tabContainer .tabBtn.management::before {
    height: 2px;
  }
  .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails::before {
    width: 137%;
  }
  .mainOfBlogPage .tabContainer .tabBtn.technical::after {
    right: 186%;
    width: 2px;
  }
  .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails::after {
    height: 120%;
  }
  .mainOfBlogPage .tabContainer .tabBtn.management.tabDetails::before {
    width: 202%;
  }
  .mainOfBlogPage .tabContainer .tabBtn.management::after {
    right: 251%;
    width: 2px;
  }
  .mainOfBlogPage .tabContainer .tabBtn.management.tabDetails::after {
    height: 110%;
  }
  .mainOfBlogPage .tabContainer form {
    width: 100%;
    height: 50%;
    order: -1;
  }
  .mainOfBlogPage .tabContainer aside ul {
    top: 160%;
  }
  .mainOfBlogPage .articleContainer > article > div .purpleCta {
    width: 25%;
    left: unset;
    align-self: center;
    font-size: 14px;
    padding: 3px 0 3px 8px;
  }
  .mainOfBlogPage .articleContainer > article .purpleCta:hover {
    box-shadow: 3px 3px 0 var(--purpleCowButton-light);
  }

  .mainOfBlogPage .articleContainer > article div:nth-of-type(2) img {
    left: 25%;
}
  .mainOfBlogPage .articleContainer > article div:nth-of-type(3) {
    font-size: 13px;
  }
}

/*↓↓MAX-WIDTH 650PX↓↓*/
@media only screen and (max-width: 650px) {
  .mainOfBlogPage .blogIntro h1 {
    font-size: 35px;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu:nth-of-type(1) {
    order: 0;
    flex: 0 0 45%;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails p {
    font-size: 18px;
    order: 2;
    height: fit-content;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails .blogIntro-illu:nth-of-type(2) {
    order: 1;
    flex: 0 0 45%;
  }
  body.responsive .mainOfBlogPage .tabContainer,
  body.responsive .mainOfBlogPage #articlesBlock {
    margin-right: 0;
  }
  .mainOfBlogPage .tabContainer .tabBtn {
    font-size: 15px;
  }
  .mainOfBlogPage .tabContainer aside ul {
    width: 30%;
  }
  body.responsive .mainOfBlogPage .tabContainer aside ul li a,
  .mainOfBlogPage .articleContainer > article div:first-of-type > p {
    font-size: 16px;
  }
  .mainOfBlogPage .articleContainer > article div:first-of-type h1 {
    font-size: 20px;
  }
  .mainOfBlogPage .articleContainer > article div:first-of-type h1::after {
    right: 10px;
  }
}

@media only screen and (max-width: 500px) {
  .mainOfBlogPage {
    padding-top: 80px;
  }
  .mainOfBlogPage .blogIntro {
    margin-bottom: 90px;
  }
  .mainOfBlogPage .blogIntro h1 {
    font-size: 30px;
  }
  .mainOfBlogPage .blogIntro h1::before, .mainOfBlogPage .blogIntro h1::after {
    width: 30px;
    height: 30px;
  }
  .mainOfBlogPage .blogIntro .blogIntroDetails p {
    font-size: 17px;
  }
  .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails::before,
  .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails > span,
  .mainOfBlogPage .tabContainer .tabBtn.technical.tabDetails::after,
  .mainOfBlogPage .tabContainer .tabBtn.management::before,
  .mainOfBlogPage .tabContainer .tabBtn.management > span,
  .mainOfBlogPage .tabContainer .tabBtn.management::after {
    display: none;
  }
  body.responsive .mainOfBlogPage .tabContainer aside ul {
    display: none;
  }
  body.responsive .mainOfBlogPage .tabContainer,
  body.responsive .mainOfBlogPage #articlesBlock {
    width: 95%;
    align-self: center;
  }
  body.responsive .mainOfBlogPage .articleContainer article {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
  .mainOfBlogPage .articleContainer > article div:nth-of-type(1) {
      width: 100%;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .mainOfBlogPage .articleContainer > article .purpleCta .second {
      margin-right: 5px;
      margin-bottom: 5px;
  }
  .mainOfBlogPage .articleContainer > article div:nth-of-type(2) {
      position: relative;
      right: unset;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .mainOfBlogPage .articleContainer article div:nth-of-type(2) img {
      position: relative;
      width: 75%;
      max-width: 250px;
      left: unset;
      bottom: unset;
  }
  .mainOfBlogPage .articleContainer article div:nth-of-type(3) {
      position: relative;
      width: 100%;
      height: fit-content;
      bottom: unset;
      font-size: 12px;
      padding: 3px 0;
  }
  .pagination button {
    margin-right: 5px;
  }
}


/*-------------------------------------↓↓Coming Soon↓↓-----------------------*/
.coming-soon {
  position: relative;
  color: #558CA0;
  text-shadow: 2px 2px var(--purpleCowButton-light);
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}
.coming-soon:nth-of-type(2) {
  margin-top: 60px;
}
.coming-soon:nth-of-type(3) {
  font-size: 40px;
  opacity: 0.8;
}
.coming-soon:nth-of-type(4) {
  font-size: 30px;
  opacity: 0.6;
}
.coming-soon:nth-of-type(5) {
  font-size: 20px;
  opacity: 0.4;
}