.tiles_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4vh;
    padding: 2vh;
}

.tile_row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--background_overlay_dark);
    border: var(--border_dark);
    border-radius: var(--border_radius_outer);
    box-shadow: var(--shadow_large);
    padding: 2vh;
    gap: 2vw;
}

.tile_text_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}

.tile_tags {
    display: flex;
    justify-content: center;
    gap: 1vh;
    flex-wrap: wrap;
}

.tile_tag {
    background: var(--background_hover);
    color: #fff;
    padding: 1vh 2vh;
    border-radius: var(--border_radius_inner);
    box-shadow: var(--inset_shadow_large);
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
}

.tile_tag p {
    margin-top: 0.2vh;
}

.tile_title {
    text-align: center;
    font-family: var(--header_font);
    font-size: 1.5rem;
    color: var(--text_primary);
    text-shadow: var(--text_shadow_lower);
    text-transform: uppercase;
}

.tile_text {
    text-align: center;
    font-size: 1rem;
    color: var(--text_secondary);
    line-height: 1;
}

.tile_button {
    width: fit-content;
    padding: 1vh 2vh;
    font-size: 0.8rem;
    font-weight: bold;
    font-family: var(--text_font);
    background-color: var(--accent2);
    box-shadow: var(--inset_shadow_large);
    color: black;
    border: none;
    border-radius: var(--border_radius_inner);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1vh;
    text-transform: uppercase;
}

.tile_button p {
    margin-top: 0.2vh;
}

.tile_button:hover {
    background-color: var(--accent);
}

.tile_image_area {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    margin-top: 1vh;
}

.tile_image_area img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tile_icon {
    font-size: 3rem;
    color: var(--accent);
    text-shadow: var(--text_shadow_lower);
    display: block;
}

/* Responsive Brackets */
@media (min-width: 768px) {
    .tile_tag {
        font-size: 1.3rem;
    }

    .tile_title {
        font-size: 2rem;
    }

    .tile_text {
        font-size: 1.5rem;
    }

    .tile_button {
        font-size: 1.3rem;
    }

    .tile_icon {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .tile_row {
        flex-direction: row;
    }

    .tile_text_area {
        align-items: flex-start;
    }

    .tile_text {
        text-align: left;
    }
    
    .tile_tag {
        font-size: 1rem;
    }

    .tile_title {
        font-size: 2rem;
    }

    .tile_text {
        font-size: 1.2rem;
    }

    .tile_button {
        font-size: 1rem;
    }

    .tile_icon {
        font-size: 4rem;
    }

    .tile_image_area {
        width: 20%;
    }
}
