.cr-page-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 200px 0 200px;
    color: #fff;
}

.cr-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cr-page-hero__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    margin-top: 117px;
}

.cr-page-hero__subtitle {
    font-size: 14px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.85;
}

.cr-page-hero__title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

.cr-page-hero__breadcrumb {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.9;
}

.cr-page-hero--noimage {
    background-color: #111;
}

/* Responsive */
@media (max-width: 767px) {
    .cr-page-hero {
        padding: 110px 0 80px;
    }

    .cr-page-hero__title {
        font-size: 36px;
    }
}

/* =========================
   CONTAINER 1: TOP LAYOUT
   ========================= */
.project-top-wrapper {
    padding: 60px 0 40px;
}

.project-top-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr);
    gap: 60px;
    align-items: flex-start;
}

/* Sidebar Overview */
.project-overview-sidebar{
    padding: 20px;
    background: #7E8E20;
}
.project-overview-sidebar .section-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
}

.overview-intro {
    color: #f2f2f2;
    font-size: 14px;
    margin-bottom: 20px;
}

.project-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-meta-list li {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 16px;
    margin-bottom: 8px;
    color: #fff;
}

.project-meta-list li strong {
     margin: 0;
    display: block;
}

/* Rating stars */
.project-meta-list li.rating-row {
    grid-template-columns: 110px auto;
}

/* đảm bảo inline value + stars không bị xuống dòng */
.rating-value {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* style sao vàng */
.rating-stars .star {
    color: #f6c33b;
    font-size: 16px;
}

.rating-stars .star:not(.is-active) {
    opacity: 0.25;
}

/* Main content */
.project-main .section-title {
    font-size: 28px;
    margin-bottom: 20px;
}
.project-highlights {
    margin-top: 30px;
}
.project-highlights ul {
    margin: 0 0 20px;
    padding-left: 18px;
}

.project-highlights ul li {
    margin-bottom:12px;
    font-size: 15px;
    color: #fff;
}

/* Testimonial */
.project-testimonial {
    margin: 40px 0;
}

.testimonial-box {
    background: #DCE5D2;
    border-left: 4px solid #7E8E20;
    padding: 28px 30px;
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-text {
    margin: 0 0 10px;
}

.testimonial-client {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    font-size: 14px;
}

/* Story */
.project-story {

}

.story-content p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
}

/* Responsive container 1 */
@media (max-width: 991px) {
    .project-top-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================
   CONTAINER 2: BEFORE & AFTER
   ========================= */
.project-before-after-wrapper {
    padding: 40px 0 80px;
    background-color: #DCE5D2;
}

.project-before-after-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-before-after-inner .section-title {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.ba-item {
    margin-bottom: 0; /* vì grid đã có gap */
}

.ba-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.twentytwenty-container {
    margin-top: 8px;
}

/* Mobile: 1 cột */
@media (max-width: 767px) {
    .ba-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
