/* Reuse WORKS layout */

.works-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.works-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background-color: var(--card);
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.works-btn:hover,
.works-btn.active {
    background-color: var(--primary);
    color: #fff;
}


/* Sections */

.works-sections {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.works-section {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.works-section.active {
    display: flex;
}

.works-content {
    flex: 1;
}

.works-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.works-image {
    flex: 1;
    text-align: center;
}

.works-image img {
    max-width: 100%;
    border-radius: 12px;
}


/* ✅ Centered checkmark list (same as homepage) */

.works-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.works-content ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.works-content ul li::before {
    content: "✔";
    color: var(--primary);
    font-weight: bold;
}


/* Responsive */

@media (max-width: 768px) {
    .works-section {
        flex-direction: column;
        text-align: center;
    }
}