/* Work Page Specific Styles */

/* Header and Introduction */
.header {
    margin-bottom: 60px;
}

.intro {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 80px;
    color: #000;
}

/* Project Styles */
.project {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.project:last-of-type {
    border-bottom: none;
}

.project h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.project-meta {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    margin-bottom: 15px;
}

.project-description {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Footer Specific to Work Page */
.footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.footer-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.footer-section a:hover {
    color: #000;
}

.social-links {
    display: flex;
    gap: 15px;
}

/* Work Page Responsive */
@media (max-width: 600px) {
    .intro {
        font-size: 20px;
        margin-bottom: 60px;
    }

    .footer-sections {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .project h3 {
        font-size: 18px;
    }
}
