.inner-content-header {
    display: grid;
    justify-items: stretch;
    align-items: center;
    grid-template-areas: "logo grid-1 grid-2 grid-3";
    background-image: url(../assets/main-bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px;
    gap: 20px;
    width: 100%;
    min-height: 260px;
    box-sizing: border-box;
    font-size: 14px;
}

.inner-header-wrapper {
    background: #000f4440;
    border-radius: 10px;
    padding: 15px 20px;
    
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inner-header-wrapper .title {
    margin-top: 0;
    font-weight: 900;
    /* white-space: nowrap; */
}

.inner-header-wrapper .bottom {
    display: flex;
    gap: 5px;
    font-size: 20px;
}
.inner-header-wrapper a {
    height: 40px;
    box-sizing: border-box;
}
.image-link img {
    height: 100%;
}

.inner-header-wrapper a:not(.image-link) {
    color: white;
    font-weight: bold;
    background: black;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    white-space: nowrap;
}

.inner-header-wrapper a.arcade {
    display: flex;
    align-items: center;
    gap: 5px;
}


.inner-content-header .logo {
    padding: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-content-header .logo img {
    max-height: 100px;
}

@media (max-width: 1300px) {
    .inner-content-header {
        min-height: unset;
        grid-template-areas: 
            "logo grid-1 grid-1"
            "logo grid-2 grid-3";
    }
}

@media (max-width: 900px) {
    .inner-content-header {
        grid-template-areas: 
            "logo logo"
            "grid-1 grid-1"
            "grid-2 grid-3";
    }
}


@media (max-width: 600px) {
    .bottom {
        flex-wrap: wrap;
        justify-content: center;
    }
    .inner-content-header {
        padding: 20px;
        grid-template-areas: 
            "logo"
            "grid-1"
            "grid-2"
            "grid-3";
    }
}