.featured-projects-section {
    padding: 80px 20px;
    background-color: #FDFAF5;
    font-family: 'Roboto', sans-serif; 
}

.featured-projects-container {
    max_width: 1200px;
    margin: 0 auto;
}

.featured-projects-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #2C3B2D;
    text-align: left;
}

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

.project-card {
    background-color: #FDFAF5;
    border-top: 4px solid #E2725B; /* Terracotta accent */
    box-shadow: 0 4px 20px rgba(226, 114, 91, 0.08); /* Warm shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 114, 91, 0.15);
}

.project-image-wrapper {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background-color: #E0D5C1; /* Warm placeholder color */
}

.project-image-wrapper img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E0D5C1;
}

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

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C3B2D; /* Dark Olive */
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #2E2A25; /* Charcoal */
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #E2725B; /* Muted Terracotta */
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-meta-separator {
    margin: 0 8px;
    opacity: 0.5;
}

.project-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #E2725B;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.project-link:hover {
    border-bottom-color: currentColor;
}

/* Footer Button */
.featured-projects-footer {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #FDFAF5;
    background-color: #E2725B;
    border: 2px solid #E2725B;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-all-btn:hover {
    background-color: transparent;
    color: #E2725B;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .featured-projects-section {
        padding: 60px 20px;
    }

    .featured-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card:last-child:nth-child(odd) {
        grid-column: auto;
    }
    
    .featured-projects-title {
        text-align: center;
        margin-bottom: 30px;
    }
}
