<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Projects Grid */
.section-projects {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.section-footer {
    display: flex;
    justify-content: center;
    margin: 40px;
    font-size: 20px;
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--text-color);
    border-radius: 2px;
}

.view-all {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.project-card {
    background-color: var(--light-gray);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

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

.project-img {
    height: 200px;
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* New styles for the actual image element */
.project-banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-banner-image {
    transform: scale(1.05);
}

/* Placeholder for projects without banner */
.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    font-weight: bold;
    opacity: 0.5;
    background-color: var(--medium-gray);
    color: var(--text-color);
}

.project-details {
    padding: 20px;
}

/* Fixed status badges to ensure consistent display */
.project-status {
    display: inline-block;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
    border-radius: 4px;
    box-sizing: content-box;
}

.status-upcoming {
    background-color: #e2f2ff;
    color: #0066cc;
}

.status-upcoming::before {
    content: "Upcoming";
    white-space: nowrap;
    display: inline-block;
}

.status-current {
    background-color: #fff2e2;
    color: #cc6600;
}

.status-current::before {
    content: "In Progress";
    white-space: nowrap;
    display: inline-block;
}

.status-released {
    background-color: #e2ffe7;
    color: #00994d;
}

.status-released::before {
    content: "Released";
    white-space: nowrap;
    display: inline-block;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.project-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Responsive adjustments for projects grid */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .project-img {
        height: 180px;
    }
}

/* Fix for desktop site mode on mobile */
@media screen and (max-width: 1000px) and (min-resolution: 1.5dppx) {
    .project-status {
        display: inline-block !important;
        width: auto !important;
        min-width: 90px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
}</pre></body></html>