.flex {
  display: flex;
  gap: 1rem;
}
.flex--categories {
  padding: 1rem;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.flex--categories .flex__item i {
  font-size: 0.4rem;
  margin-left: 0.5rem;
  margin-right: 1rem;
  position: relative;
  top: -3px;
}
.flex--categories .flex__item span {
  font-weight: bold;
  text-transform: uppercase;
}
.flex--categories .flex__item span:hover {
  cursor: pointer;
}
@media (max-width: 768px) {
  .flex--categories {
    overflow-x: scroll;
    flex-wrap: nowrap;
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .flex--categories .flex__item {
    flex: 0 0 auto;
  }
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--all-posts {
  grid: 20px;
  grid-template-columns: repeat(auto-fill, minmax(23%, 1fr));
  grid-auto-rows: 360px;
}
.grid--all-posts .grid__item {
  background: #cecece;
}
.grid--all-posts .grid__item--highlight {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}
@media (max-width: 1200px) {
  .grid--all-posts {
    grid-template-columns: repeat(auto-fill, minmax(29%, 1fr));
  }
}
@media (max-width: 769px) {
  .grid--all-posts {
    grid-template-columns: 1fr;
  }
  .grid--all-posts .grid__item--highlight {
    grid-row: 7 / 9;
  }
}

.tws-business-ad {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.tws-business-ad__image {
  max-width: 180px;
  width: 90%;
  height: auto;
}
.tws-business-ad__image img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
.tws-business-ad__title {
  font-weight: 100;
  letter-spacing: 0.4rem;
  font-size: 2rem;
  font-family: "Over the Rainbow", cursive;
}
.tws-business-ad__text {
  font-size: 1.2rem;
}
.tws-business-ad__button {
  /* font-size: 1.3rem !important; */
  /* font-weight: bold; */
}

.tws-top-banner {
  min-height: 650px;
}
.tws-top-banner--small {
  min-height: 550px;
  height: calc(50vh - 84px);
}
.tws-top-banner > .tws-column p {
  font-size: 1rem;
  line-height: 1.8;
}

.is-special-font {
  font-family: "acherus_militant_1_-_bold.otf";
}

@media (max-width: 450px) {
  .tws-mob-lbb-pad {
    padding: 0 !important;
  }
}
å .post-item .content h2.tws-hide-title-lbb {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  width: 100%;
}

.post-item .content .text {
  max-width: 93%;
}
.post-item .content .text .tws-hide-title-lbb {
  /* max-width: 85%; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
}


@media (max-width: 769px) {
  .tws-business-ad {
    padding: 50px;
  }
}