/* FEATURED PROJECTS DEBUG - SUPER AGGRESSIVE STYLES */
.featured-projects-home {
    padding: 80px 0 !important;
    background-color: #F2F4F8 !important;
}

.featured-projects-home .section-heading {
    text-align: center !important;
    margin-bottom: 50px !important;
    padding: 0 !important;
}

.featured-projects-home .featured-projects-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
}

@media (min-width: 640px) {
    .featured-projects-home .featured-projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (min-width: 1024px) {
    .featured-projects-home .featured-projects-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
    }
    
    .featured-projects-home .section-heading {
        margin-bottom: 70px !important;
    }
}

.featured-projects-home .featured-project-item {
    overflow: hidden !important;
}

.featured-projects-home .project-link {
    display: block !important;
    text-decoration: none !important;
    height: 100% !important;
}

.featured-projects-home .project-image {
    position: relative !important;
    overflow: hidden !important;
    background-color: #999 !important;
    aspect-ratio: 4 / 3 !important;
}

.featured-projects-home .project-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.featured-projects-home .project-content {
    padding: 25px 0 0 0 !important;
}

@media (min-width: 1024px) {
    .featured-projects-home .project-content {
        padding: 30px 0 0 0 !important;
    }
}

.featured-projects-home .project-tags {
    margin-bottom: 15px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.featured-projects-home .project-tag {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #0A1570 !important;
    background-color: #D3E7F0 !important;
    padding: 4px 12px !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.featured-projects-home .project-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #171717 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

@media (min-width: 1024px) {
    .featured-projects-home .project-title {
        font-size: 24px !important;
    }
}

