.featured-work-section {
    padding: 100px 5%;
    font-family: 'Roboto', sans-serif;
}

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

.featured-work-title {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #333;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.project-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.project-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-link {
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.featured-work-footer {
    text-align: center;
    margin-top: 60px;
}

.view-all-link {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .featured-work-title {
        font-size: 2rem;
    }
}
