/* ===== Desktop Layout ===== */
.wrapper {
    max-width: 1200px;
    margin: 0 auto; /* centers container */
}

.mobile-break {
    display: inline;
}

/* Game grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 1rem;
}

.game {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.game img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
}

.game-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    text-decoration: none;
    cursor: default;
}

/* Studio Section */
.MaronByteStudio-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    width: 500px;
    height: 500px;
    border-radius: 50%;
}