.single-project-container {
    margin: 1.5vw;
}
.project-hero {
    width: 100%;
    height: 42vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1vw;
}
.featured-image {
    width: 60%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.other-images {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.other-images .img-container {
    width: 100%;
    height: 50%;
    border-radius: 16px;
    overflow: hidden;
}
.other-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flx-project-details-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 5vw 1vw;
    gap: 3vw;
}
.project-title-description {
    width: 70%;
}
.project-info-container {
    width: 40%;
    padding: 2vw;
    background-color: #F7F7F7;
    border-radius: 16px;
}
.project-content {
    margin-top: 3vw;
}
.project-content .heading {
    margin-bottom: 1vw;
    font-size: 22px;
}
.project-category {
    margin-bottom: 0.5vw;
}
.project-category a {
    font-family: 'Plus Jakarta Sans';
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #A62E2F;
    color: white;
    padding: 5px 10px 5px 10px;
}
.project-info-container .heading {
    font-weight: 700;
}
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    margin: 2vw 1vw 1vw 2vw;
}
.info-grid .info-item strong {
    color: #0F1D2E;
    margin-right: 1vw;
}
.projects-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3vw;
    margin-top: 3vw;
}
.projects-grid .project-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.05);
    border-radius: 10px;
    overflow: hidden;
}
.projects-grid .project-card:hover .project-image img {
    transform: scale(1.1);
}
.project-image {
    width: 100%;
    height: 18vw;
    overflow: hidden;
}
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.65s all ease;
}
.project-card-content {
    width: 100%;
    padding: 2vw 1.5vw;
}
.project-card-excerpt {
    color: #808285;
    margin-top: 1vw;
}
.more-projects {
    margin: 6vw 0;
}


/* grid-card style */
.pgw-bottom-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3vw;
    margin-top: 3vw;
}
.pgw-bottom-grid .pgw-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.05);
    border-radius: 10px;
    overflow: hidden;
}
.pgw-bottom-grid .pgw-image {
    width: 100%;
    height: 18vw;
    overflow: hidden;
    position: relative;
}
.pgw-bottom-grid .pgw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.65s all ease;
}
.pgw-bottom-grid .pgw-item:hover .pgw-image img {
    transform: scale(1.1);
}
.pgw-bottom-grid .pgw-category {
    position: absolute;
    top: 1vw;
    left: 1vw;
    background-color: white;
    text-decoration-line: none !important;
    color: black;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 12px;
    border-radius: 4px;
}
.pgw-bottom-grid .project-details-container {
    width: 100%;
    padding: 2vw 1.5vw;
}
.pgw-bottom-grid .project-details-container h4 {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
}
.pgw-bottom-grid .pgw-description {
    color: #808285;
    margin-top: 0.75vw;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}
.pgw-bottom-grid .flx-link-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1vw 0 0 0;
    padding-top: 1vw;
    border-top: 1px solid #F3F4F5;
}
.pgw-bottom-grid .project-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration-line: none !important;
    gap: 5px;
}
.pgw-bottom-grid .project-link svg {
    width: 1.5vw;
    height: 1.5vw;
}
.pgw-bottom-grid .project-link p {
    margin: 0;
}
.pgw-bottom-grid .pgw-date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.pgw-bottom-grid .pgw-date p {
    color: #75777D;
    margin: 0;
    font-size: 12px;
}


@media (max-width: 1024px) {
    .project-hero {
        height: 45vw;
    }
    h1.project-title {
        font-size: 25px;
    }
    .project-category a {
        font-size: 12px;
        padding: 4px 8px 4px 8px;
    }
    .project-content .heading {
        font-size: 20px;
    }
    .pgw-bottom-grid .project-details-container h4 {
        font-size: 20px;
        line-height: 26px;
    }
    .pgw-bottom-grid .project-link p {
        font-size: 13px;
    }
    .pgw-bottom-grid .pgw-image {
        height: 20vw;
    }
}

@media (max-width: 768px) {
    .pgw-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pgw-bottom-grid .pgw-image {
        height: 24vw;
    }
}

@media (max-width: 650px) { 
    .flx-project-details-container {
        flex-direction: column;
    }
    .project-title-description {
        width: 100%;
    }
    .project-info-container{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .pgw-bottom-grid{
        padding: 0 3vw;
    }
    .pgw-bottom-grid {
        grid-template-columns: 1fr;
    }
    .pgw-bottom-grid .pgw-image {
        height: 45vw;
    }
}

@media (max-width: 480px) {
    .project-hero{
        flex-direction: column;
        height: auto;
    }
    .featured-image{
        width: 100%;
        height: 300px;
    }
    .other-images {
        width: 100%;
        flex-direction: row;
    }
}