        .main-product {
    padding-top: 40px;
}

.award-subtitle {
    width: fit-content;
    border-radius: 30px;
}

.award-card {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.award-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    top: -60px;
    right: -60px;
}

.award-card--orange {
    background: linear-gradient(135deg, #ffb703, #21180c);
}

.award-card--silver {
    background: linear-gradient(135deg,#7b8cff,#5b6dff);
}

.award-card--blue {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}
.award-card--special {
    background: linear-gradient(135deg,#111827,#312e81);
}
.award-card--special::before {
    display: none;
}
.award-card--special::after {
    content: '👑';
    position: absolute;
    font-size: 220px;
    opacity: 0.06;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
}

.award-card .tp-feature__text ul {
    padding-left: 0;
}

.award-card .tp-feature__text ul li:not(:last-child) {
    margin-bottom: 8px;
}

.list-category .bp_category_option {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.list-category .bp_category_option_item  {
    position: relative;
    justify-content: center;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    background: linear-gradient(135deg, var(--tp-primary), #6f86ff);
    transition: all .3s;
}

.list-category .bp_category_option_item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 91, 253, 0.2);
    transition: all .3s;
}

.list-category .bp_name_category_option {
    font-size: 20px;
    color: #fff;
    padding-top: 15px;
    font-weight: 600;
}

.list-category .bp_category_option_item a {
    margin: 0;
}

.list-category .tp-counter {
    color: #fff;
    transform: translateY(-30%);
    font-size: 14px;
    display: inline-block;
}



.architecture-list > .row > .col {
    margin-bottom: 24px;
}

.architecture-list .tp-post-item {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06), 0 2px 10px rgba(0, 0, 0, .04);
    transition: all .4s;
}
 
.architecture-list .tp-post-item:hover {
    transform: translateY(-10px);
    transition: all .4s;
}

.architecture-list .tp-post__thumbnail-wrapper {
    padding: 0;
    margin: 0;
}

.architecture-list .tp-post__thumbnail-wrapper img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.architecture-list .tp-post__content {
    padding: 25px 15px;
}

.architecture-list .tp-title:hover a {
    color: var(--tp-primary) !important;
    transition: all .4s;
}



@media (max-width: 1024px) {
    .list-category .bp_category_option {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .list-category .bp_category_option {
        grid-template-columns: repeat(1, 1fr);
    }
}
