.works-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

/* Works Section V2 */
.works-grid-v2 {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-top: 40px;
}

.works-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Spacing between cards in a column */
}

.work-cta-card {
    padding-bottom: 40px;
}

.work-cta-card h6 {
    color: #edb121;
    /* Gold */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.work-cta-card p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #282828;
    margin-bottom: 40px;
    max-width: 90%;
}

.btn-explore-v2 {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    color: #f4c32d;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-explore-v2 .arrow {
    margin-left: 15px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-explore-v2:hover {
    background: #000;
    color: #fff;
}

.btn-explore-v2:hover .arrow {
    transform: translateX(5px);
}

/* Work Item V2 */
.work-item-v2 {
    cursor: pointer;
    transition: transform 0.4s ease;
}

.work-item-v2:hover {
    transform: translateY(-5px);
}

.work-image-container {
    background: #111;
    /* Dark "monitor" frame */
    padding: 0px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-item-v2 .work-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.work-item-v2:hover .work-image {
    transform: scale(1.02);
}

.work-details {
    padding-left: 5px;
}

.work-title {
    font-size: 24px;
    font-weight: 600;
    color: #edb121;
    /* Gold */
    margin-bottom: 8px;
}

.work-category {
    font-size: 14px;
    font-weight: 300;
    color: #802288;
    /* Purple */
    text-transform: none;
    letter-spacing: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .works-grid-v2 {
        flex-direction: column;
        gap: 60px;
    }

    .works-column {
        gap: 40px;
    }

    .work-cta-card p {
        font-size: 18px;
    }

    .btn-explore-v2 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 300px;
    }
}