:root {
    --show-navy: #073b4c;
    --show-blue: #087f8c;
    --show-cyan: #16b7a2;
    --show-orange: #f29f3d;
    --show-ink: #173943;
    --show-muted: #6d8188;
    --show-line: #dce9e8;
    --show-soft: #f1f8f7;
}

.showcase-page {
    background: #fbfdfd;
    color: var(--show-ink);
    overflow: hidden;
}

    .showcase-page *, .showcase-page *::before, .showcase-page *::after {
        box-sizing: border-box;
    }

    .showcase-page a {
        text-decoration: none;
    }

.showcase-hero {
    background: url(/Design/img/HoangPhongSolar/decor-b.png) no-repeat;
    color: #fff;
    overflow: hidden;
    position: relative;
    background-size: cover;
}

    .showcase-hero::before {
        background: linear-gradient(180deg,rgba(3,35,43,.03) 25%,rgba(3,35,43,.78));
        content: "";
        height: 100%;
        opacity: .65;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
    }

.showcase-hero__inner {
    padding: clamp(90px,8vw,50px) 0;
    position: relative;
    z-index: 1;
}

.showcase-eyebrow {
    align-items: center;
    color: #b6f2e6;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.showcase-eyebrow--dark {
    color: var(--show-orange);
}

.showcase-hero h1 {
    font-family: 'BeVietnamPro-Medium',Arial,sans-serif;
    font-size: clamp(31px,5vw,31px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.05;
    margin: 15px 0 16px;
}

.showcase-hero p {
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    max-width: 664px;
}

.showcase-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 28px;
    margin-top: 28px;
}

    .showcase-hero__facts span {
        color: rgb(229 254 10);
        font-size: 15px;
    }

    .showcase-hero__facts i {
        color: #ffffff;
        margin-right: 6px;
    }

.showcase-list {
    padding: clamp(44px,7vw,44px) 0 25px;
}

.showcase-section-heading {
    margin-bottom: 34px;
}

    .showcase-section-heading h2 {
        color: var(--show-navy);
        font-family: 'BeVietnamPro-Medium',Arial,sans-serif;
        font-size: clamp(29px,4vw,30px);
        font-weight: 500;
        letter-spacing: -.04em;
        line-height: 1.1;
        margin: 12px 0;
    }

    .showcase-section-heading p {
        color: var(--show-muted);
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }

.showcase-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.showcase-card {
    animation: showcase-card-in .55s both;
    background: #fff;
    border: 1px solid var(--show-line);
    border-radius: 16px;
    box-shadow: 0 11px 28px rgba(7,59,76,.05);
    display: block;
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: box-shadow .35s ease,transform .35s cubic-bezier(.2,.75,.25,1),border-color .35s ease;
}

    .showcase-card:nth-child(2) {
        animation-delay: .05s
    }

    .showcase-card:nth-child(3) {
        animation-delay: .1s
    }

    .showcase-card:nth-child(4) {
        animation-delay: .15s
    }

    .showcase-card:hover {
        border-color: #a9d9d2;
        box-shadow: 0 22px 45px rgba(7,59,76,.16);
        transform: translateY(-8px);
    }

    .showcase-card:focus-visible {
        border-color: var(--show-cyan);
        box-shadow: 0 0 0 4px rgba(22,183,162,.2),0 18px 38px rgba(7,59,76,.14);
        outline: none;
        transform: translateY(-5px);
    }

.showcase-card--featured {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(0,1.18fr) minmax(280px,.82fr);
}

    .showcase-card--featured .showcase-card__media {
        min-height: 100%;
        aspect-ratio: 1.34;
    }

    .showcase-card--featured .showcase-card__body {
        align-self: center;
        padding: clamp(24px,3vw,25px);
        position: relative;
        background: linear-gradient(180deg,#fff,#f8fcfb);
    }

    .showcase-card--featured h3 {
        font-size: clamp(24px,2.5vw,34px);
        line-height: 1.18;
    }

    .showcase-card--featured .showcase-card__link {
        align-items: center;
        background: var(--show-navy);
        border-radius: 8px;
        color: #fff;
        display: inline-flex;
        gap: 7px;
        padding: 11px 14px;
        transition: background .25s ease,transform .25s ease;
    }

    .showcase-card--featured:hover .showcase-card__link {
        background: var(--show-orange);
        color: #fff;
        transform: translateX(3px);
    }

@keyframes showcase-card-in {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-card__media {
    aspect-ratio: 1.38;
    background: #dcecea;
    overflow: hidden;
    position: relative;
}

    .showcase-card__media::after {
        border: 1px solid rgba(255,255,255,.28);
        border-radius: 11px;
        content: "";
        inset: 10px;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        transform: scale(.96);
        transition: opacity .35s ease,transform .35s ease;
    }

    .showcase-card__media img {
        height: 100%;
        object-fit: cover;
        transition: filter .5s ease,transform .7s cubic-bezier(.2,.7,.2,1);
        width: 100%;
    }

.showcase-card:hover .showcase-card__media img {
    filter: saturate(1.12);
    transform: scale(1.08);
}

.showcase-card:hover .showcase-card__media::after {
    opacity: 1;
    transform: scale(1);
}

.showcase-card__shade {
    background: linear-gradient(180deg,rgba(3,35,43,.03) 25%,rgba(3,35,43,0.58));
    inset: 0;
    pointer-events: none;
    position: absolute;
    transition: background .35s ease;
}

.showcase-card:hover .showcase-card__shade {
    background: linear-gradient(180deg,rgba(3,35,43,.1) 18%,rgba(3,35,43,.84));
}

.showcase-card__number {
    bottom: 13px;
    color: rgba(255,255,255,.7);
    font-family: 'BeVietnamPro-Medium',Arial,sans-serif;
    font-size: 24px;
    font-weight: 500;
    left: 16px;
    line-height: 1;
    position: absolute;
    transition: color .3s ease,transform .3s ease;
}

.showcase-card:hover .showcase-card__number {
    color: #fff;
    transform: translateY(-3px);
}

.showcase-card--featured .showcase-card__number {
    font-size: clamp(30px,4vw,52px);
    left: clamp(20px,3vw,34px);
}

.showcase-card__badge {
    background: var(--show-orange);
    border-radius: 99px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    left: 15px;
    padding: 6px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 15px;
    transition: background .3s ease,transform .3s ease;
}

.showcase-card:hover .showcase-card__badge {
    background: #e98c22;
    transform: translateY(-2px);
}

.showcase-card__badge i {
    font-size: 9px;
    margin-right: 4px;
}

.showcase-card__arrow {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    bottom: 15px;
    color: var(--show-navy);
    display: flex;
    height: 34px;
    justify-content: center;
    position: absolute;
    right: 15px;
    transform: translateY(5px) rotate(-8deg);
    transition: background .3s ease,color .3s ease,transform .3s ease;
    width: 34px;
}

.showcase-card:hover .showcase-card__arrow {
    background: var(--show-orange);
    color: #fff;
    transform: translateY(0) rotate(0);
}

.showcase-card__body {
    padding: 20px 20px 22px;
    transition: background .35s ease;
}

.showcase-card:hover .showcase-card__body {
    background: linear-gradient(180deg,#fff,#f8fcfb);
}

.showcase-card__location {
    color: var(--show-orange);
    display: block;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: letter-spacing .3s ease;
    white-space: nowrap;
}

.showcase-card:hover .showcase-card__location {
    letter-spacing: .02em;
}

.showcase-card__location i {
    margin-right: 4px;
}

.showcase-card h3 {
    color: var(--show-navy);
    font-family: 'BeVietnamPro-Medium',Arial,sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 8px 0 12px;
    transition: color .25s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    line-height: 1.65;
    min-height: 66px;
    overflow: hidden;
}

.showcase-card:hover h3 {
    color: var(--show-blue);
}

.showcase-card__facts {
    border-bottom: 1px solid var(--show-line);
    border-top: 1px solid var(--show-line);
    color: #60777d;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 13px;
    padding: 9px 0;
    transition: border-color .3s ease,color .3s ease;
}

.showcase-card:hover .showcase-card__facts {
    border-color: #b9e2dc;
    color: var(--show-ink);
}

.showcase-card__facts i {
    color: var(--show-cyan);
    margin-right: 5px;
}

.showcase-card p {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--show-muted);
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    min-height: 64px;
    overflow: hidden;
}

.showcase-card__link {
    color: var(--show-navy);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 16px;
}

    .showcase-card__link i {
        color: var(--show-orange);
        margin-left: 5px;
        transition: transform .25s ease;
    }

.showcase-card:hover .showcase-card__link {
    color: var(--show-blue);
}

    .showcase-card:hover .showcase-card__link i {
        transform: translateX(6px);
    }

.showcase-pagination {
    margin-top: 38px;
    text-align: center;
}

.showcase-empty {
    align-items: center;
    background: var(--show-soft);
    border: 1px dashed #b8d7d2;
    border-radius: 15px;
    color: var(--show-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    padding: 55px 20px;
    text-align: center;
}

    .showcase-empty i {
        color: var(--show-orange);
        font-size: 40px;
    }

    .showcase-empty strong {
        color: var(--show-navy);
        font-size: 22px;
    }

    .showcase-empty span {
        font-size: 14px;
    }

.showcase-cta {
    background: url(/Design/img/HoangPhongSolar/decor-b.png) no-repeat;
    color: #fff;
    padding: 70px 0;
    position: relative;
}

    .showcase-cta:before {
        background: linear-gradient(180deg,rgba(3,35,43,.03) 25%,rgba(3,35,43,.78));
        content: "";
        height: 100%;
        opacity: .75;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 0;
    }

    .showcase-cta .grid {
        align-items: center;
        display: flex;
        gap: 30px;
        justify-content: space-between;
        position: relative;
    }

    .showcase-cta span {
        color: #a4eadb;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .showcase-cta h2 {
        font-family: 'BeVietnamPro-Medium',Arial,sans-serif;
        font-size: clamp(24px,3vw,25px);
        font-weight: 500;
        letter-spacing: -.03em;
        line-height: 1.4;
        margin: 9px 0 8px;
        max-width: 607px;
    }

    .showcase-cta p {
        color: rgba(255,255,255,.88);
        font-size: 14px;
        margin: 0;
    }

    .showcase-cta .grid > div:last-child {
        display: flex;
        flex: 0 0 auto;
        /* flex-direction: column; */
        gap: 10px;
    }

    .showcase-cta a {
        border: 1px solid rgba(255,255,255,.38);
        border-radius: 7px;
        color: #fff !important;
        font-size: 13px;
        font-weight: 800;
        padding: 11px 15px;
        text-align: center;
        transition: background .25s ease,border-color .25s ease,box-shadow .25s ease,transform .25s ease;
    }

        .showcase-cta a:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,.2);
            transform: translateY(-2px);
        }

        .showcase-cta a:first-child {
            background: var(--show-orange);
            border-color: var(--show-orange);
        }

            .showcase-cta a:first-child:hover {
                background: #e98c22;
                border-color: #e98c22;
            }

@media (max-width: 1050px) {
    .showcase-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .showcase-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .showcase-hero__inner {
        padding: 37px 15px !important;
    }

    .showcase-hero h1 {
        font-size: clamp(21px, 5vw, 21px);
    }

    .showcase-hero p {
        font-size: 14px;
        display: none;
    }

    .showcase-hero__facts {
        flex-direction: column;
        gap: 4px;
        margin-top: 16px;
    }

        .showcase-hero__facts span {
            font-size: 12px;
        }

    .showcase-list {
        padding: 30px 0 30px;
    }

    .showcase-section-heading h2 {
        font-size: clamp(22px, 4vw, 22px);
    }

    .showcase-cta {
        padding: 30px 0 30px;
        background-position: bottom;
    }

        .showcase-cta:before {
            opacity: .95;
            background: linear-gradient( 54deg, rgba(3, 35, 43, .03) 25%, rgba(3, 35, 43, .88));
        }

        .showcase-cta h2 {
            font-size: clamp(20px, 4vw, 20px);
        }

    .showcase-grid {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .showcase-card--featured {
        display: block;
        grid-column: span 1;
    }

        .showcase-card--featured .showcase-card__media {
            min-height: 0;
        }

        .showcase-card--featured .showcase-card__body {
            padding: 22px 18px 24px;
        }

        .showcase-card--featured h3 {
            font-size: 18px;
            min-height: 60px;
        }

    .showcase-card__media {
        aspect-ratio: 1.48;
    }

    .showcase-card__body {
        padding: 18px;
    }

    .showcase-cta .grid {
        align-items: flex-start;
        flex-direction: column;
    }

        .showcase-cta .grid > div:last-child {
            width: 100%;
        }
}

@media (prefers-reduced-motion:reduce) {
    .showcase-card, .showcase-card__media img, .showcase-card__media::after, .showcase-card__badge, .showcase-card__arrow, .showcase-card__link i, .showcase-cta a {
        animation: none;
        transition: none;
    }
}