.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
    padding-bottom: 32px;
}

.project-card {
    border: 1.5px solid #202833;
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.project-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 1;
    z-index: 2;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 3px solid #FF8533;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 4;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 3;
}

.arrow {
    font-size: 28px;
    color: #FF8533;
    line-height: 1;
    flex-shrink: 0;
}

.project-title {
    font-family: 'Neue Montreal', sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.title-dark {
    color: #EAE0C8;
}

.title-outline {
    -webkit-text-stroke: 1.5px #EAE0C8;
    color: transparent;
    letter-spacing: 2px;
}

.project-meta {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #EAE0C8;
    margin-left: 40px;
    position: relative;
    z-index: 3;
}

.coming-soon {
    grid-column: 1;
}

.coming-soon-bar {
    background-color: #2E3F54;
    color: #EAE0C8;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 14px;
    margin: 20px -28px -28px -28px;
    position: relative;
    z-index: 3;
}

.coming-soon:hover {
    transform: none;
}

.coming-soon::after {
    display: none;
}

.cta-button {
  display: inline-block;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

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

    .project-card {
        height: auto;
        min-height: 220px;
    }

    .project-card-img {
        object-fit: cover;
    }

    .project-meta {
        font-size: 10px;
    }
}


