.wab-category-boxes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px 30px;
}

.wab-category-box {
    position: relative;
    margin: 15px;
    overflow: hidden;
}
.wab-category-box:hover {
  transform: translateY(-.12rem) translateZ(0);
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0.9;
}
.wab-category-box-bg {
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: opacity 0.3s ease-in-out;
}

.wab-category-box-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.wab-category-box-title a {
    color: #fff;
    text-decoration: none;
}
.wab-category-box-title a:hover {
    color: #fff;
}

.wab-category-boxes-container.columns-3 .wab-category-box {
    width: calc(33.333% - 30px);
}

.wab-category-boxes-container.columns-4 .wab-category-box {
    width: calc(25% - 30px);
}

@media (max-width: 767px) {
    .wab-category-boxes-container.columns-3 .wab-category-box,
    .wab-category-boxes-container.columns-4 .wab-category-box {
        width: calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .wab-category-boxes-container.columns-3 .wab-category-box,
    .wab-category-boxes-container.columns-4 .wab-category-box {
        width: calc(100% - 30px);
    }
}

.wab-featured-posts-container {
    display: flex;
    width: 100%;
    height: 400px;
    column-gap: 5px;
    margin-bottom: 30px;
}
.wab-featured-posts-container a:hover {
  color: #fff;
}

.wab-featured-post-left,
.wab-featured-post-right {
    position: relative;
    background-size: cover;
    background-position: center;
}
.featured-post-box:hover {
  box-shadow: 0px 0px 5px #333;
}
.wab-featured-post-left {
    flex: 0 0 65%;
}

.wab-featured-posts-right {
    width: 35%;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.wab-featured-post-right {
    flex: 1;
}
.wab-featured-post-left:hover, .wab-featured-post-right:hover {
  cursor: pointer;
  opacity: 0.9;
}

.wab-featured-post-left h3, .wab-featured-post-right h3 {
  color: #fff;
  width: 100%;
  height: 100%;
  background: #00000085;
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-wrapper {
  height: 100%;
}
.title-wrapper a{
    color: #fff;
    text-decoration: none;
}
.title-wrapper a:hover, .title-wrapper a:active, .title-wrapper a:foucs {
    color: #fff !important;
    text-decoration: none;
}
@media (max-width: 768px) {
    .wab-featured-posts-container {
        height: unset;
        display: block;
    }
    .wab-featured-posts-right {
      width: 100%;
      display: block;
    }
}