/* Component: Project List Item */
.project-list-item {
    position: relative;
    border-bottom: 1px solid rgba(0, 61, 107, .15);
    transition: all .3s ease
}

.project-list-item:last-child {
    border-bottom: none
}

.project-list-link {
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    text-decoration: none;
    transition: all .3s ease;
    gap: 30px
}

.project-list-content {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 40px;
    align-items: center
}

.project-list-title {
    color: #003D6B;
    font-size: 16px !important;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .5px
}

.project-list-description {
    color: #003D6B;
    font-size: 16px;
    line-height: 1.5;
    margin: 0
}

.project-list-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #003D6B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden
}

.project-list-arrow svg {
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.project-list-item:hover {
    background: #f8f9fa
}

.project-list-item:hover .project-list-link {
    padding-left: 50px
}

.project-list-item:hover .project-list-arrow {
    background: #002847;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 61, 107, .3)
}

@media (max-width:1024px) {
    .project-list-content {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .project-list-link {
        padding: 25px 30px;
        gap: 20px
    }
}

@media (max-width:768px) {
    .project-list-link {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 15px
    }

    .project-list-content {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 10px
    }

    .project-list-title {
        font-size: 16px
    }

    .project-list-description {
        font-size: 14px
    }

    .project-list-arrow {
        width: 40px;
        height: 40px;
        flex-shrink: 0
    }
    
}