.highlights {
    display: inherit;
    scroll-margin-top: 2rem;
}

.highlights h1 {
    margin-top: 1rem;
    margin-bottom: 0rem;
    font-size: 3rem;
}

.highlights-project-container {
    width: 100rem;
    /* 92 */
    height: 47rem;
    /* 63 */

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.project-card {
    /* border: 1px solid rgb(199, 183, 41); */
    height: 97%;
    width: 31.5%;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.project-card-content {
    padding: 1rem;
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
}

.project-card-content h1 {
    font-size: 32px;
    margin: 0px 0px;
    color: #363636;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 7px 7px 8px rgba(0, 0, 0, 0.151);
}

.truncated-description {
    font-size: 0.87rem;
    margin: 0px 0px;
    color: #4a4a4a;
}

.project-card-separator {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 5%, #ccc 50%, transparent 95%);
}

.project-card-date {
    font-size: 0.8rem;
    color: #969696;
    margin-bottom: 0.5rem;
}

.project-card-image {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    gap: 0;
}

.project-tag {
    display: inline-block;
    background-color: #3b3b3b71;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 0.3rem 0.1rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* .project-tag:hover {
    transform: scale(1.05);
    background-color: #222222d7;
} */

.download-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.team-size-text {
    position: absolute;
    display: inline-block;
    background-color: #3b3b3b71;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    margin: 1rem 1rem;
    color: white;
    max-width: fit-content;
    bottom: 0;
    left: 0;
    z-index: 10;
    font-weight: 600;

}


.team-size-text i {
    color: white;
    letter-spacing: 0.2rem;
}


.view-all-projects-button {
    text-decoration: none;
    color: #363636;
    border: 1px solid;
    border-radius: 20px;
    padding: 5px 10px;
    margin-top: 1rem;
}

.view-all-projects-button:hover {
    color: #ffffff;
    background-color: #363636;
    margin-bottom: 1rem;
}