.project-info-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.info-card {
    margin-bottom: 20px;
    padding: 1rem 1.25rem;
    background: #696D7D;
    border: 3px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    align-items: center; /* align everything to the left, change to center if you want centered */
    flex-direction: column; /* stack title and tags vertically */
    display: flex;
    width: 40%
}
.info-card .keywords{
    display: flex;
    flex-wrap: wrap;              /* key line */
    justify-content: center;      /* or flex-start if you prefer */
    gap: clamp(6px, 1vw, 10px);
}

.info-card h1 {
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 800;
    padding-bottom: clamp(10px, 2vw, 20px);
    margin-top: -10px;
    color: #f2f4f4; /* adjust color */
}

.info-card-description {
    font-size: 18px;
    line-height: 1.6;
    color: #f6fafa; /* adjust color */
}
/* Reuse your tag style */
.project-type {
    font-size: clamp(0.65rem, 2.2vw, 0.9rem);
    line-height: 1.2;
    white-space: nowrap;
    background: #a5a8b6;
    color: #1F2A1F;
    font-weight: 700;
    padding: 0.35em 0.8em;
    border-radius: 999px;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.project-type:hover {
    transform: translate(-4px, -4px);
    box-shadow: 2px 2px 0 #e8ed3b, 
    5px 5px 0 #3cbd7d;
}

.store-links {
    display: flex;
    flex-direction: row;      /* side by side */
    gap: 1rem;
    margin-top: 1.25rem;
    align-items: center;
    justify-content: center;
}

.store-links img {
    width: 260px;
    height: auto;
    max-width: 100%;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-links a:hover img {
    transform: scale(1.03);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .project-info-row {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 500px;
    }
}