.work-list {
    padding-block: 40px;
    overflow: hidden;
    margin-top: 0px;
}

.work-item {
    position: relative;
    height: 100%;
    margin-bottom: 24px;
    overflow: hidden;
    height: 300px;
}

.work-item-img {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.work-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-bottom: 24px;
}

.work-item:hover .work-content {
    opacity: 1;
}

.work-content h3 {
    font-size: 22px;
    font-family: 'josefin', sans-serif;
    color: var(--text-yellow);
    transform: translateX(-20px);
    transition: all 0.3s ease-in-out;
    font-weight: 900;
}

.work-content h4 {
   font-size: 17px;
   font-weight: 500;
   font-family: 'nunito', sans-serif;
   color: var(--text-yellow);
   margin-bottom: 0;
   transform: translateX(-20px);
   transition: all 0.3s ease-in-out;
}

.work-item:hover .work-content h3, .work-item:hover .work-content h4 {
    transform: translateX(0);
}
