.project-details--container {
    display: flex;
    flex-direction: column;
    gap: 45px 60px;
}

.project-details--title {
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}

.project-details--title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--theme-gold);
}

.project-details--short-desc {
    margin-bottom: 30px;
}

.project-details--cta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (min-width: 992px) {
    .project-details--container {
        flex-direction: row;
    }

    .project-details--left-wrap {
        min-width: 33%;
    }
}