.projects {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.project-item {
    display: flex;
    gap: 5rem;
    border-bottom: 1px solid var(--primaryColor);
    padding-bottom: 3rem;
}
.project-item:last-child {
    border: none;
    padding-bottom: 0;
}
.project-image {
    flex: 0 0 42%;
    width: 42%;
    position: relative;
    height: fit-content;
}
.project-image img {
    border-radius: 20px;
    width: 100%;
    height: 24rem;
    object-fit: cover;
}
.project-image .btn {
    position: absolute;
    bottom: 30px;
    left: 20px;
}
.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem
}
.project-header {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.06px;
    text-transform: uppercase;
    color: var(--secondaryColor);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}
.project-item h2 {
    /* color: var(--secondaryColor); */
}
.project-item h6 {
    text-transform: uppercase;
    color: var(--primaryColor);
    font-size: 1rem;
    line-height: 140%;
    letter-spacing: -0.085px;
}
.project-meta {
    display: flex;
    gap: 2rem;
}
.project-meta div {
    display: flex;
    gap: 1rem;
}
.project-meta div p {
    flex: 1;
}
.project-description {
    display: flex;
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    background: var(--tertiaryColor);
}


/* SINGLE PROJECT */
.single-project .grid-2-columns {
    grid-template-columns: 1fr 2fr;
}
.project-header-section {
    background: url(/wp-content/uploads/2025/09/d794e43f5c0717c95204739a1adc9b3e8d40e5e7-scaled.png), linear-gradient(180deg, var(--primaryColor) 75%, white 20%);
    background-size: 40rem;
    background-repeat: repeat;
    padding: 14rem 0 0;
    position: relative;
}
.project-header-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(144 45 45 / 95%) 75%, white 25%);
    z-index: 0;
}
.project-header-section.no-img {
    background: url(/wp-content/uploads/2025/09/d794e43f5c0717c95204739a1adc9b3e8d40e5e7-scaled.png), linear-gradient(180deg, var(--primaryColor) 100%, white 0%);
    background-size: 40rem;
    background-repeat: repeat;
    padding: 14rem 0 4rem;
}
.project-header-section.no-img:before {
    background: linear-gradient(180deg, rgb(144 45 45 / 95%) 100%, white 0%);
}
.project-header-section .container {
    position: relative;
    z-index: 1;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.breadcrumbs a, .breadcrumbs p {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.breadcrumbs a {
    width: fit-content;
}
.breadcrumbs p {
    max-width: 17rem;
}
.breadcrumbs i {
    font-size: 11px;
}
.project-header-section h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    max-width: 32rem;
}
.project-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.project-tag {
    border-radius: 3px;
    background: #122A0B;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.035px;
    text-transform: uppercase;
    padding: 4px 8px 2px;
    margin-top: 1rem;
}
.project-header-section .project-meta {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
    color: white;
    margin-bottom: 2rem;
}
.project-header-section .project-meta h6  {
    text-transform: uppercase;
    font-size: 1.05rem;
}
.project-header-section .project-meta div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.project-header-section .project-meta span {
    color: white;
    font-size: 1.25rem;
}

.project-header-section .project-image {
    height: 36rem;
    margin-top: 4rem;
    width: 100%;
    flex: 1;
}
.project-header-section .project-image img {
    border-radius: 12px;
    width: 100%;
    height: 36rem;
    object-fit: cover;
}
.project-header-section .project-gallery {
    margin-top: 1rem;
}
.project-header-section .project-gallery img {
    border-radius: 12px;
    height: 36rem;
    object-fit: cover;
}
.project-header-section .slick-arrow {
    background: var(--secondaryColor);
}
