/* ========================================
   Works Section
   ======================================== */

.works-section {
    padding: 100px 40px;
    background-color: #f8f8f8;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.works-section .section-title {
    margin: 22px 0;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
}

.works-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #000;
    color: #fff;
}

.work-item.hidden {
    display: none;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.work-item {
    cursor: none;
    transition: opacity 0.3s ease;
}

.work-item:hover {
    opacity: 0.8;
}

.work-item a {
    text-decoration: none;
    color: #000;
    display: block;
}

.work-item a:hover {
    text-decoration: none;
}

.work-image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-category {
    font-size: 10px;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 600;
}

.work-title {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: #000 !important;
}

.work-item a .work-title {
    color: #000 !important;
}

/* View All Works Button */
.view-all-works {
    margin-top: 60px;
}

.view-all-works-btn {
    display: block;
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: none;
    transition: all 0.4s ease;
    text-align: center;
}

.view-all-works-btn:hover {
    background-color: #000;
    color: #fff;
}
