.construction-category-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.construction-category-list li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 6px;
}

.construction-category-list li a {
    text-decoration: none;
    background: var(--body_background_color);
    border-bottom: 1px solid #6a4113;
    border-radius: 0;
    color: #FDD869;
    cursor: pointer;
    display: block;
    font-size: 14px;
    transition: none;
    line-height: 26px;
    padding: 5px 13px;
    position: relative;
    text-decoration: none;
    margin: 0 17px;
    border-top: 1px solid #6a4113;
    width: auto;
}

.construction-category-list li a::before {
    opacity: 1 !important;
    border-left: 1px solid #6A4113;
    left: -13px;
    top: 5px;
    border-top: 1px solid #6A4113;
    background: var(--body_background_color) !important;
    content: "";
    position: absolute;
    z-index: 1;
    width: 26px;
    height: 25px;
    transform: scaleX(.5774) rotate(-45deg);
    background-color: var(--body_background_color)
}

.construction-category-list li a::after {
    border-right: 1px solid #6A4113;
    right: -13px;
    top: 5px;
    border-bottom: 1px solid #6A4113;
    content: "";
    position: absolute;
    z-index: 1;
    width: 26px;
    height: 25px;
    transform: scaleX(.5774) rotate(-45deg);
    background-color: var(--body_background_color);
}

.construction-category-list li a:hover {
    background-color: #6A4113 !important;
    color: #fff;
}

.construction-category-list li a:hover:after,
.construction-category-list li a:hover:before {
    background: #6a4113 !important;
}

/* WRAPPER */
.construction-item {
    background: var(--body_background_color);
    border: 2px solid #9a7b44;
    padding: 10px;
    height: 100%;
    transition: all .3s ease;
}

.construction-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(154, 123, 68, .35);
}

/* IMAGE */
.construction-thumb {
    position: relative;
    display: block;
    overflow: hidden;
}

.construction-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .4s ease;
}

.construction-item:hover img {
    transform: scale(1.06);
}

/* CODE BADGE */
.construction-code {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #caa35c;
    color: #000;
    font-weight: 600;
    font-size: 13px;
    padding: 4px 10px;
}

/* CONTENT */
.construction-content {
    padding: 14px 8px 6px;
    color: #e6d9c2;
}

.construction-title {
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
    /* margin-bottom: 8px; */
    color: var(--text_primary_color);
}

.construction-title a {
    color: var(--text_primary_color);
    text-transform: uppercase;
    font-weight: 600;
}

.construction-title a:hover {
    color: #caa35c;
}

/* META */
.construction-meta,
.construction-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    margin-bottom: 6px;
    color: #d1c3a3;
}

.construction-meta i,
.construction-stats i {
    margin-right: 4px;
    color: #caa35c;
}

/* TAGS */
.construction-tags {
    margin-top: 6px;
    font-size: 12px;
    color: #bfa877;
}

.construction-tags span {
    margin-right: 6px;
}