
.work-container {
    display: flex;
    gap: 4rem;
    max-width: 1600px;
    width: 90%;
}

.work-column {
    flex: 1;
}

.work-column h2 {
    color: rgb(93, 93, 93);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    font-family: "Gravitas One", serif;
    padding-bottom: 1rem;
    border-bottom: 3px solid #edece2;
}

.work-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: rgba(237, 236, 226, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.work-item:hover {
    background-color: #edece2;
    transform: translateX(10px);
}

.work-item h4 {
    color: rgb(93, 93, 93);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background-color: rgb(210, 160, 170);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: rgb(190, 140, 150);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .work-container {
        flex-direction: column;
        gap: 3rem;
    }

    .work-column h2 {
        font-size: 2rem;
    }
}