/* Work Section */
.work-section {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 40px;
}

.work-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.work-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
}

.work-title .work-line {
    display: block;
}

.work-right {
    margin-left: 40px;
}

.work-intro {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    margin: 0;
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.project-row {
    display: grid;
    gap: 30px;
    height: 600px;
    align-items: center;
}

.project-row:nth-child(1) {
    grid-template-columns: 1fr 0.56fr;
}

.project-row:nth-child(2) {
    grid-template-columns: 0.67fr 1fr;
}

.project-row:nth-child(3) {
    grid-template-columns: 0.56fr 1fr;
}

/* Project Item Styles */
.project-item {
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
    position: relative;
    margin-bottom: 15px;
    height: 480px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.client-name {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
}

/* View More Button */
.view-more-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.view-more-button {
    background: var(--text-dark);
    color: var(--bg-light);
    text-decoration: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-more-button:hover {
    background: var(--accent-orange);
    transform: translateY(-1px);
}